url stringlengths 55 59 | repository_url stringclasses 1
value | labels_url stringlengths 69 73 | comments_url stringlengths 64 68 | events_url stringlengths 62 66 | html_url stringlengths 44 49 | id int64 338k 1.06B | node_id stringlengths 18 32 | number int64 1 44.6k | title stringlengths 1 590 | user dict | labels listlengths 0 9 | state stringclasses 2
values | locked bool 2
classes | assignee dict | assignees listlengths 0 5 | milestone dict | comments int64 0 477 | created_at timestamp[us, tz=UTC] | updated_at timestamp[us, tz=UTC] | closed_at timestamp[us, tz=UTC] | author_association stringclasses 3
values | active_lock_reason stringclasses 4
values | body stringlengths 0 251k ⌀ | reactions dict | timeline_url stringlengths 64 68 | performed_via_github_app float64 | draft float64 0 1 ⌀ | pull_request dict |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
https://api.github.com/repos/pandas-dev/pandas/issues/28813 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28813/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28813/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28813/events | https://github.com/pandas-dev/pandas/issues/28813 | 503,298,543 | MDU6SXNzdWU1MDMyOTg1NDM= | 28,813 | Diff on sparse dtype | {
"avatar_url": "https://avatars.githubusercontent.com/u/6419212?v=4",
"events_url": "https://api.github.com/users/thedimlebowski/events{/privacy}",
"followers_url": "https://api.github.com/users/thedimlebowski/followers",
"following_url": "https://api.github.com/users/thedimlebowski/following{/other_user}",
"gists_url": "https://api.github.com/users/thedimlebowski/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/thedimlebowski",
"id": 6419212,
"login": "thedimlebowski",
"node_id": "MDQ6VXNlcjY0MTkyMTI=",
"organizations_url": "https://api.github.com/users/thedimlebowski/orgs",
"received_events_url": "https://api.github.com/users/thedimlebowski/received_events",
"repos_url": "https://api.github.com/users/thedimlebowski/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/thedimlebowski/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/thedimlebowski/subscriptions",
"type": "User",
"url": "https://api.github.com/users/thedimlebowski"
} | [
{
"color": "0e8a16",
"default": true,
"description": null,
"id": 717120670,
"name": "good first issue",
"node_id": "MDU6TGFiZWw3MTcxMjA2NzA=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/good%20first%20issue"
},
{
"color": "cdea3c",
"default": false,
"de... | closed | false | null | [] | {
"closed_at": "2020-07-28T18:13:47Z",
"closed_issues": 2378,
"created_at": "2019-12-02T12:52:48Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jreback/followers",
"following_url": "https://api.github.com/users/jreback/following{/other_user}",
"gists_url": "https://api.github.com/users/jreback/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jreback",
"id": 953992,
"login": "jreback",
"node_id": "MDQ6VXNlcjk1Mzk5Mg==",
"organizations_url": "https://api.github.com/users/jreback/orgs",
"received_events_url": "https://api.github.com/users/jreback/received_events",
"repos_url": "https://api.github.com/users/jreback/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jreback/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jreback/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jreback"
},
"description": "",
"due_on": "2020-08-01T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/68",
"id": 4894670,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/68/labels",
"node_id": "MDk6TWlsZXN0b25lNDg5NDY3MA==",
"number": 68,
"open_issues": 0,
"state": "closed",
"title": "1.1",
"updated_at": "2021-07-17T17:25:28Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/68"
} | 2 | 2019-10-07T08:17:59Z | 2020-05-22T09:58:31Z | 2020-05-22T09:58:31Z | NONE | null | Correct behaviour without Sparse[int]:
```python
a = [[0, 1], [1, 0]]
print(pd.DataFrame(a).diff())
```
yields:
```
0 1
0 NaN NaN
1 1.0 -1.0
```
Current behaviour (doesn't work):
```python
a = [[0, 1], [1, 0]]
print(pd.DataFrame(a, dtype='Sparse[int]').diff())
```
yields:
```
---------------------------------------------------------------------------
IndexError Traceback (most recent call last)
<ipython-input-34-3cc99aac7c69> in <module>
3 print(pd.DataFrame(a).diff())
4
----> 5 print(pd.DataFrame(a, dtype='Sparse[int]').diff())
~/.local/lib/python3.6/site-packages/pandas/core/frame.py in diff(self, periods, axis)
6592 """
6593 bm_axis = self._get_block_manager_axis(axis)
-> 6594 new_data = self._data.diff(n=periods, axis=bm_axis)
6595 return self._constructor(new_data)
6596
~/.local/lib/python3.6/site-packages/pandas/core/internals/managers.py in diff(self, **kwargs)
564
565 def diff(self, **kwargs):
--> 566 return self.apply("diff", **kwargs)
567
568 def interpolate(self, **kwargs):
~/.local/lib/python3.6/site-packages/pandas/core/internals/managers.py in apply(self, f, axes, filter, do_integrity_check, consolidate, **kwargs)
436 kwargs[k] = obj.reindex(b_items, axis=axis, copy=align_copy)
437
--> 438 applied = getattr(b, f)(**kwargs)
439 result_blocks = _extend_blocks(applied, result_blocks)
440
~/.local/lib/python3.6/site-packages/pandas/core/internals/blocks.py in diff(self, n, axis)
1328 def diff(self, n, axis=1):
1329 """ return block for the diff of the values """
-> 1330 new_values = algos.diff(self.values, n, axis=axis)
1331 return [self.make_block(values=new_values)]
1332
~/.local/lib/python3.6/site-packages/pandas/core/algorithms.py in diff(arr, n, axis)
1943
1944 na_indexer = [slice(None)] * arr.ndim
-> 1945 na_indexer[axis] = slice(None, n) if n >= 0 else slice(n, None)
1946 out_arr[tuple(na_indexer)] = na
1947
IndexError: list assignment index out of range``` | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28813/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28813/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28814 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28814/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28814/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28814/events | https://github.com/pandas-dev/pandas/issues/28814 | 503,298,832 | MDU6SXNzdWU1MDMyOTg4MzI= | 28,814 | infer_dtype() function slower in latest version | {
"avatar_url": "https://avatars.githubusercontent.com/u/11585453?v=4",
"events_url": "https://api.github.com/users/borisaltanov/events{/privacy}",
"followers_url": "https://api.github.com/users/borisaltanov/followers",
"following_url": "https://api.github.com/users/borisaltanov/following{/other_user}",
"gists_url": "https://api.github.com/users/borisaltanov/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/borisaltanov",
"id": 11585453,
"login": "borisaltanov",
"node_id": "MDQ6VXNlcjExNTg1NDUz",
"organizations_url": "https://api.github.com/users/borisaltanov/orgs",
"received_events_url": "https://api.github.com/users/borisaltanov/received_events",
"repos_url": "https://api.github.com/users/borisaltanov/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/borisaltanov/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/borisaltanov/subscriptions",
"type": "User",
"url": "https://api.github.com/users/borisaltanov"
} | [
{
"color": "a10c02",
"default": false,
"description": "Memory or execution speed performance",
"id": 8935311,
"name": "Performance",
"node_id": "MDU6TGFiZWw4OTM1MzEx",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Performance"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 2 | 2019-10-07T08:18:40Z | 2019-12-23T17:02:23Z | 2019-12-23T17:02:23Z | NONE | null | #### Code Sample
```python
from datetime import datetime
import numpy as np
import pandas as pd
from pandas.api.types import infer_dtype
print(pd.__version__)
RUN_COUNT = 5
df = pd.DataFrame(np.ones((100000, 1000)))
avg_times = []
for _ in range(RUN_COUNT):
start = datetime.now()
for col in df.columns:
infer_dtype(df[col], skipna=True)
avg_times.append(datetime.now() - start)
print('Average time: ', np.mean(avg_times))
```
#### Problem description
When I run the above code on my machine, there is major difference in the performance between different versions. I ran the code using new conda environments created with Python 3.7 and the specific version of Pandas. The table below shows the execution times.
| Pandas Version | Execution time |
| ------------- |:-------------:|
| 0.23.4 | 0:00:00.013999 |
| 0.25.1 | 0:00:15.623905 |
The example code is only an example. In the most cases I need this function to get more specific type of the column than the type returned by the .dtype parameter (usually when working with mixed data).
| {
"+1": 1,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 1,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28814/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28814/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28815 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28815/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28815/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28815/events | https://github.com/pandas-dev/pandas/pull/28815 | 503,310,459 | MDExOlB1bGxSZXF1ZXN0MzI1MTg4OTA0 | 28,815 | DOC: Fixes for SA04 errors in docstrings | {
"avatar_url": "https://avatars.githubusercontent.com/u/15952911?v=4",
"events_url": "https://api.github.com/users/suparnasnair/events{/privacy}",
"followers_url": "https://api.github.com/users/suparnasnair/followers",
"following_url": "https://api.github.com/users/suparnasnair/following{/other_user}",
"gists_url": "https://api.github.com/users/suparnasnair/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/suparnasnair",
"id": 15952911,
"login": "suparnasnair",
"node_id": "MDQ6VXNlcjE1OTUyOTEx",
"organizations_url": "https://api.github.com/users/suparnasnair/orgs",
"received_events_url": "https://api.github.com/users/suparnasnair/received_events",
"repos_url": "https://api.github.com/users/suparnasnair/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/suparnasnair/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/suparnasnair/subscriptions",
"type": "User",
"url": "https://api.github.com/users/suparnasnair"
} | [
{
"color": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
}
] | closed | false | null | [] | null | 23 | 2019-10-07T08:43:32Z | 2019-12-29T13:59:48Z | 2019-12-29T13:59:48Z | NONE | null | - [x] Fixes for #28792
- [x] tested through ./scripts/validate_docstrings.py | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28815/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28815/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28815.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28815",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/28815.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28815"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28816 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28816/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28816/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28816/events | https://github.com/pandas-dev/pandas/issues/28816 | 503,336,665 | MDU6SXNzdWU1MDMzMzY2NjU= | 28,816 | .at not setting value | {
"avatar_url": "https://avatars.githubusercontent.com/u/32194462?v=4",
"events_url": "https://api.github.com/users/ma00/events{/privacy}",
"followers_url": "https://api.github.com/users/ma00/followers",
"following_url": "https://api.github.com/users/ma00/following{/other_user}",
"gists_url": "https://api.github.com/users/ma00/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/ma00",
"id": 32194462,
"login": "ma00",
"node_id": "MDQ6VXNlcjMyMTk0NDYy",
"organizations_url": "https://api.github.com/users/ma00/orgs",
"received_events_url": "https://api.github.com/users/ma00/received_events",
"repos_url": "https://api.github.com/users/ma00/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/ma00/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/ma00/subscriptions",
"type": "User",
"url": "https://api.github.com/users/ma00"
} | [] | closed | false | null | [] | null | 4 | 2019-10-07T09:35:06Z | 2019-10-07T16:03:10Z | 2019-10-07T16:03:10Z | NONE | null | #### Code Sample, a copy-pastable example if possible
```python
# ff= 20
# df['B'] = 0
# df.at[4, 'B'] = -ff/100
# df.at[4, 'B']
#0
```
#### Problem description
the function Dataframe.at is not setting the value if passed as variable, instead if it's passed as number, it works
#### Expected Output
#### Output of ``pd.show_versions()``
<details>
[paste the output of ``pd.show_versions()`` here below this line]
python : 3.5.6.final.0
pandas : 0.25.1
</details>
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28816/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28816/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28817 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28817/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28817/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28817/events | https://github.com/pandas-dev/pandas/issues/28817 | 503,355,943 | MDU6SXNzdWU1MDMzNTU5NDM= | 28,817 | Faster SQL implementation in d6stack library | {
"avatar_url": "https://avatars.githubusercontent.com/u/31596773?v=4",
"events_url": "https://api.github.com/users/JulianWgs/events{/privacy}",
"followers_url": "https://api.github.com/users/JulianWgs/followers",
"following_url": "https://api.github.com/users/JulianWgs/following{/other_user}",
"gists_url": "https://api.github.com/users/JulianWgs/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/JulianWgs",
"id": 31596773,
"login": "JulianWgs",
"node_id": "MDQ6VXNlcjMxNTk2Nzcz",
"organizations_url": "https://api.github.com/users/JulianWgs/orgs",
"received_events_url": "https://api.github.com/users/JulianWgs/received_events",
"repos_url": "https://api.github.com/users/JulianWgs/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/JulianWgs/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/JulianWgs/subscriptions",
"type": "User",
"url": "https://api.github.com/users/JulianWgs"
} | [
{
"color": "a10c02",
"default": false,
"description": "Memory or execution speed performance",
"id": 8935311,
"name": "Performance",
"node_id": "MDU6TGFiZWw4OTM1MzEx",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Performance"
},
{
"color": "5319e7",
"default"... | closed | false | null | [] | null | 7 | 2019-10-07T10:12:30Z | 2021-07-21T05:25:28Z | 2021-07-21T05:25:28Z | NONE | null | #### Code Sample
https://github.com/d6t/d6tstack/blob/master/examples-sql.ipynb
#### Problem description
In the example it currently takes 28s to upload data to an SQL database. With the d6stack implementation it only takes 4.7s with postgres and 7.1s with mysql which is 4 to 6 times faster than standard pandas.
#### Expected Output
Improved speed uploading data to an SQL database right out of the box. | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28817/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28817/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28818 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28818/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28818/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28818/events | https://github.com/pandas-dev/pandas/issues/28818 | 503,405,381 | MDU6SXNzdWU1MDM0MDUzODE= | 28,818 | read_csv improvement | {
"avatar_url": "https://avatars.githubusercontent.com/u/3863744?v=4",
"events_url": "https://api.github.com/users/jeremy-rutman/events{/privacy}",
"followers_url": "https://api.github.com/users/jeremy-rutman/followers",
"following_url": "https://api.github.com/users/jeremy-rutman/following{/other_user}",
"gists_url": "https://api.github.com/users/jeremy-rutman/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jeremy-rutman",
"id": 3863744,
"login": "jeremy-rutman",
"node_id": "MDQ6VXNlcjM4NjM3NDQ=",
"organizations_url": "https://api.github.com/users/jeremy-rutman/orgs",
"received_events_url": "https://api.github.com/users/jeremy-rutman/received_events",
"repos_url": "https://api.github.com/users/jeremy-rutman/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jeremy-rutman/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jeremy-rutman/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jeremy-rutman"
} | [] | closed | false | null | [] | {
"closed_at": null,
"closed_issues": 2361,
"created_at": "2015-02-26T19:29:05Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/1020496?v=4",
"events_url": "https://api.github.com/users/jorisvandenbossche/events{/privacy}",
"followers_url": "https://api.github.com/users/jorisvandenbossche/followers",
"following_url": "https://api.github.com/users/jorisvandenbossche/following{/other_user}",
"gists_url": "https://api.github.com/users/jorisvandenbossche/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jorisvandenbossche",
"id": 1020496,
"login": "jorisvandenbossche",
"node_id": "MDQ6VXNlcjEwMjA0OTY=",
"organizations_url": "https://api.github.com/users/jorisvandenbossche/orgs",
"received_events_url": "https://api.github.com/users/jorisvandenbossche/received_events",
"repos_url": "https://api.github.com/users/jorisvandenbossche/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jorisvandenbossche/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jorisvandenbossche/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jorisvandenbossche"
},
"description": "A milestone for closed or open issues for which there is no action needed (eg not a bug, just a question / discussion, nothing to resolve, wontfix, etc).\r\n\r\n",
"due_on": null,
"html_url": "https://github.com/pandas-dev/pandas/milestone/33",
"id": 997544,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/33/labels",
"node_id": "MDk6TWlsZXN0b25lOTk3NTQ0",
"number": 33,
"open_issues": 11,
"state": "open",
"title": "No action",
"updated_at": "2021-11-19T17:33:16Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/33"
} | 6 | 2019-10-07T11:57:43Z | 2019-10-26T06:50:25Z | 2019-10-07T15:33:45Z | NONE | null | #### Code Sample, a copy-pastable example if possible
```python
df = pd.read_csv(f,sep='\t')
```
#### Problem description
Not so much a problem as a feature possibility - when reading without the encoding= parameter, the default can be made a bit smarter; since utf-16 seems to generally start with unique characters 0xFF 0xFE hex , if those chars start a file then it should be read as utf-16 (either after reading as utf-8 fails or as a first option)
I am not so familiar with the pandas code and will try to implement this if someone can point me to where these changes would go - the [pandas.io.parsers](https://github.com/pandas-dev/pandas/blob/master/pandas/io/parsers.py) is a bit opaque for me.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28818/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28818/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28819 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28819/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28819/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28819/events | https://github.com/pandas-dev/pandas/issues/28819 | 503,441,086 | MDU6SXNzdWU1MDM0NDEwODY= | 28,819 | DOC: fix code-block in the reshaping docs | {
"avatar_url": "https://avatars.githubusercontent.com/u/1020496?v=4",
"events_url": "https://api.github.com/users/jorisvandenbossche/events{/privacy}",
"followers_url": "https://api.github.com/users/jorisvandenbossche/followers",
"following_url": "https://api.github.com/users/jorisvandenbossche/following{/other_user}",
"gists_url": "https://api.github.com/users/jorisvandenbossche/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jorisvandenbossche",
"id": 1020496,
"login": "jorisvandenbossche",
"node_id": "MDQ6VXNlcjEwMjA0OTY=",
"organizations_url": "https://api.github.com/users/jorisvandenbossche/orgs",
"received_events_url": "https://api.github.com/users/jorisvandenbossche/received_events",
"repos_url": "https://api.github.com/users/jorisvandenbossche/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jorisvandenbossche/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jorisvandenbossche/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jorisvandenbossche"
} | [
{
"color": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
},
{
"color": "0e8a16",
"default": true,
"description": null,
"id": 7171206... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 2 | 2019-10-07T13:07:42Z | 2019-10-16T16:24:58Z | 2019-10-16T16:24:58Z | MEMBER | null | The code block at this location:
https://dev.pandas.io/docs/user_guide/reshaping.html#pivoting-with-single-aggregations
is not rendered correctly, as we accidentally try to render it as a note. The `.. note::` should be replaced with `.. code-block::` | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28819/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28819/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28820 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28820/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28820/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28820/events | https://github.com/pandas-dev/pandas/pull/28820 | 503,465,148 | MDExOlB1bGxSZXF1ZXN0MzI1MzExODg4 | 28,820 | DOC: fix code-block in the reshaping docs | {
"avatar_url": "https://avatars.githubusercontent.com/u/9424617?v=4",
"events_url": "https://api.github.com/users/oktaysabak/events{/privacy}",
"followers_url": "https://api.github.com/users/oktaysabak/followers",
"following_url": "https://api.github.com/users/oktaysabak/following{/other_user}",
"gists_url": "https://api.github.com/users/oktaysabak/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/oktaysabak",
"id": 9424617,
"login": "oktaysabak",
"node_id": "MDQ6VXNlcjk0MjQ2MTc=",
"organizations_url": "https://api.github.com/users/oktaysabak/orgs",
"received_events_url": "https://api.github.com/users/oktaysabak/received_events",
"repos_url": "https://api.github.com/users/oktaysabak/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/oktaysabak/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/oktaysabak/subscriptions",
"type": "User",
"url": "https://api.github.com/users/oktaysabak"
} | [
{
"color": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
}
] | closed | false | null | [] | null | 1 | 2019-10-07T13:49:14Z | 2019-10-08T08:42:16Z | 2019-10-08T08:41:36Z | CONTRIBUTOR | null | - [ x] closes #28819
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28820/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28820/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28820.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28820",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/28820.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28820"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28821 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28821/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28821/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28821/events | https://github.com/pandas-dev/pandas/issues/28821 | 503,481,496 | MDU6SXNzdWU1MDM0ODE0OTY= | 28,821 | Call .max method on two timezone datetime columns results in nan | {
"avatar_url": "https://avatars.githubusercontent.com/u/16750831?v=4",
"events_url": "https://api.github.com/users/albb318/events{/privacy}",
"followers_url": "https://api.github.com/users/albb318/followers",
"following_url": "https://api.github.com/users/albb318/following{/other_user}",
"gists_url": "https://api.github.com/users/albb318/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/albb318",
"id": 16750831,
"login": "albb318",
"node_id": "MDQ6VXNlcjE2NzUwODMx",
"organizations_url": "https://api.github.com/users/albb318/orgs",
"received_events_url": "https://api.github.com/users/albb318/received_events",
"repos_url": "https://api.github.com/users/albb318/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/albb318/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/albb318/subscriptions",
"type": "User",
"url": "https://api.github.com/users/albb318"
} | [] | closed | false | null | [] | null | 1 | 2019-10-07T14:16:23Z | 2019-10-07T15:12:31Z | 2019-10-07T15:12:20Z | NONE | null | #### Code Sample, a copy-pastable example if possible
This works when comparing two non-timezone datetime columns
```python
a = pd.DataFrame(
{
"a": [pd.Timestamp("20180101"), np.nan],
"b": [pd.Timestamp("20190101"), pd.Timestamp("20190101")],
}
)
a.max(axis=1)
```
Output:
0 2019-01-01
1 2019-01-01
dtype: datetime64[ns]
But it fails on time-zone datetime columns
```python
a = pd.DataFrame(
{
"a": [pd.Timestamp("20180101", tz="utc"), np.nan],
"b": [pd.Timestamp("20190101", tz="utc"), pd.Timestamp("20190101", tz="utc")],
}
)
a.max(axis=1)
```
Output:
0 NaN
1 NaN
dtype: float64
#### Problem description
I'm expecting the .max function to work consistently on both non-timezone and timezone datetime columns. But as the above results shows, somehow the comparison of timezone datetime is adjusted to float and the results are all nan.
#### Expected Output
#### Output of ``pd.show_versions()``
INSTALLED VERSIONS
------------------
commit : None
python : 3.7.4.final.0
python-bits : 64
OS : Windows
OS-release : 7
machine : AMD64
processor : Intel64 Family 6 Model 62 Stepping 4, GenuineIntel
byteorder : little
LC_ALL : None
LANG : None
LOCALE : None.None
pandas : 0.25.1
numpy : 1.16.5
pytz : 2019.2
dateutil : 2.8.0
pip : 19.2.2
setuptools : 41.0.1
Cython : 0.29.13
pytest : 5.0.1
hypothesis : None
sphinx : None
blosc : None
feather : 0.4.0
xlsxwriter : 1.1.8
lxml.etree : 4.4.1
html5lib : 1.0.1
pymysql : 0.9.3
psycopg2 : None
jinja2 : 2.10.1
IPython : 7.8.0
pandas_datareader: 0.7.4
bs4 : 4.8.0
bottleneck : 1.2.1
fastparquet : None
gcsfs : None
lxml.etree : 4.4.1
matplotlib : 3.1.1
numexpr : 2.7.0
odfpy : None
openpyxl : 2.6.2
pandas_gbq : None
pyarrow : 0.11.1
pytables : None
s3fs : None
scipy : 1.3.1
sqlalchemy : 1.3.7
tables : 3.5.2
xarray : 0.12.1
xlrd : 1.2.0
xlwt : 1.3.0
xlsxwriter : 1.1.8
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28821/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28821/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28822 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28822/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28822/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28822/events | https://github.com/pandas-dev/pandas/issues/28822 | 503,527,135 | MDU6SXNzdWU1MDM1MjcxMzU= | 28,822 | validate_docstrings.py as a separate package? | {
"avatar_url": "https://avatars.githubusercontent.com/u/630936?v=4",
"events_url": "https://api.github.com/users/rth/events{/privacy}",
"followers_url": "https://api.github.com/users/rth/followers",
"following_url": "https://api.github.com/users/rth/following{/other_user}",
"gists_url": "https://api.github.com/users/rth/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/rth",
"id": 630936,
"login": "rth",
"node_id": "MDQ6VXNlcjYzMDkzNg==",
"organizations_url": "https://api.github.com/users/rth/orgs",
"received_events_url": "https://api.github.com/users/rth/received_events",
"repos_url": "https://api.github.com/users/rth/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/rth/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/rth/subscriptions",
"type": "User",
"url": "https://api.github.com/users/rth"
} | [] | closed | false | null | [] | null | 5 | 2019-10-07T15:28:43Z | 2019-10-25T16:39:01Z | 2019-10-25T16:39:01Z | CONTRIBUTOR | null | The docstring validation script is quite nice! I would like to use it for instance to validate docsting in scikit-learn, e.g.
```
python pandas/scripts/validate_docstrings.py sklearn.linear_model.LinearRegression
```
works, but then is a bit more difficult to customize being pandas specific.
In particular it would be nice to have the ability to specify which error to include / exclude in some config file. Also for instance scikit-learn has some default configuration for doctests that is currently ignored in `setup.cfg`,
```
[tool:pytest]
doctest_optionflags = NORMALIZE_WHITESPACE ELLIPSIS
```
Overall, it would be nice if this script was a separate project with a shared core functionality and possibly some config that that projects could personalize a bit if needed (although going with the 'black' approach with one set of rules for all is also a possibility).
Docstring validation is a problem that is relevant for a number of scientific python projects and it would be a shame if each one solves it independently. As far as I can tell, so far this script provides more relevant errors for scientific python projects that say `pydocstyle`. Using the same tool for validation, would also help making docstrings formatting more consistent across projects.
Also this script is bound to grow in scope (e.g. https://github.com/pandas-dev/pandas/issues/28701) and eventually sharing the maintenance with maintainers of other projects might be useful. Although I agree that it might add some overhead with respect to your CI integration. | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28822/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28822/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28823 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28823/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28823/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28823/events | https://github.com/pandas-dev/pandas/issues/28823 | 503,553,839 | MDU6SXNzdWU1MDM1NTM4Mzk= | 28,823 | Feature Request: Population Covariance Calculation with ddof parameter for DataFrame.cov() | {
"avatar_url": "https://avatars.githubusercontent.com/u/7686641?v=4",
"events_url": "https://api.github.com/users/chrisyeh96/events{/privacy}",
"followers_url": "https://api.github.com/users/chrisyeh96/followers",
"following_url": "https://api.github.com/users/chrisyeh96/following{/other_user}",
"gists_url": "https://api.github.com/users/chrisyeh96/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/chrisyeh96",
"id": 7686641,
"login": "chrisyeh96",
"node_id": "MDQ6VXNlcjc2ODY2NDE=",
"organizations_url": "https://api.github.com/users/chrisyeh96/orgs",
"received_events_url": "https://api.github.com/users/chrisyeh96/received_events",
"repos_url": "https://api.github.com/users/chrisyeh96/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/chrisyeh96/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/chrisyeh96/subscriptions",
"type": "User",
"url": "https://api.github.com/users/chrisyeh96"
} | [
{
"color": "4E9A06",
"default": false,
"description": null,
"id": 76812,
"name": "Enhancement",
"node_id": "MDU6TGFiZWw3NjgxMg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Enhancement"
},
{
"color": "370f77",
"default": false,
"description": "DataFram... | closed | false | null | [] | {
"closed_at": "2020-07-28T18:13:47Z",
"closed_issues": 2378,
"created_at": "2019-12-02T12:52:48Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jreback/followers",
"following_url": "https://api.github.com/users/jreback/following{/other_user}",
"gists_url": "https://api.github.com/users/jreback/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jreback",
"id": 953992,
"login": "jreback",
"node_id": "MDQ6VXNlcjk1Mzk5Mg==",
"organizations_url": "https://api.github.com/users/jreback/orgs",
"received_events_url": "https://api.github.com/users/jreback/received_events",
"repos_url": "https://api.github.com/users/jreback/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jreback/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jreback/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jreback"
},
"description": "",
"due_on": "2020-08-01T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/68",
"id": 4894670,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/68/labels",
"node_id": "MDk6TWlsZXN0b25lNDg5NDY3MA==",
"number": 68,
"open_issues": 0,
"state": "closed",
"title": "1.1",
"updated_at": "2021-07-17T17:25:28Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/68"
} | 4 | 2019-10-07T16:16:12Z | 2020-06-23T17:37:58Z | 2020-06-23T17:37:58Z | CONTRIBUTOR | null | I propose adding a `bias` parameter in [`DataFrame.cov()`](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.cov.html). Currently, Pandas v0.25.1 does not have such a parameter.
The default would be `bias=False`, which would compute sample covariance with a `N-1` factor in the denominator. When `bias=True`, this would compute population covariance with `N` in the denominator.
This follows the same semantics as the [`numpy.cov()`](https://docs.scipy.org/doc/numpy/reference/generated/numpy.cov.html) function. Since `DataFrame.cov()` uses `numpy.cov()`, I hope this would not be too hard to implement. | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28823/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28823/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28824 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28824/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28824/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28824/events | https://github.com/pandas-dev/pandas/pull/28824 | 503,609,272 | MDExOlB1bGxSZXF1ZXN0MzI1NDI4MjE1 | 28,824 | TST: Update test in #28798 to use a Categorical | {
"avatar_url": "https://avatars.githubusercontent.com/u/26364415?v=4",
"events_url": "https://api.github.com/users/topper-123/events{/privacy}",
"followers_url": "https://api.github.com/users/topper-123/followers",
"following_url": "https://api.github.com/users/topper-123/following{/other_user}",
"gists_url": "https://api.github.com/users/topper-123/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/topper-123",
"id": 26364415,
"login": "topper-123",
"node_id": "MDQ6VXNlcjI2MzY0NDE1",
"organizations_url": "https://api.github.com/users/topper-123/orgs",
"received_events_url": "https://api.github.com/users/topper-123/received_events",
"repos_url": "https://api.github.com/users/topper-123/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/topper-123/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/topper-123/subscriptions",
"type": "User",
"url": "https://api.github.com/users/topper-123"
} | [
{
"color": "C4A000",
"default": false,
"description": "pandas testing functions or related to the test suite",
"id": 127685,
"name": "Testing",
"node_id": "MDU6TGFiZWwxMjc2ODU=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Testing"
},
{
"color": "729FCF",
"d... | closed | false | null | [] | null | 1 | 2019-10-07T18:13:09Z | 2019-10-08T06:23:15Z | 2019-10-08T06:23:10Z | CONTRIBUTOR | null | - [x] xref #28798
- [x] tests added / passed
- [x] passes `black pandas`
- [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry
I merged #28798 too fast, as the column "Name" wasn't a Categorical, which was to be tested. I've made it a Categorical and for good measure I've added ``ordered_fixture`` to the test. | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28824/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28824/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28824.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28824",
"merged_at": "2019-10-08T06:23:10Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28824.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28824"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28825 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28825/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28825/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28825/events | https://github.com/pandas-dev/pandas/issues/28825 | 503,655,240 | MDU6SXNzdWU1MDM2NTUyNDA= | 28,825 | UnsupportedOperation 'seek' when loading excel files from urllib3.response.HTTPResponse object | {
"avatar_url": "https://avatars.githubusercontent.com/u/4107500?v=4",
"events_url": "https://api.github.com/users/hellbe/events{/privacy}",
"followers_url": "https://api.github.com/users/hellbe/followers",
"following_url": "https://api.github.com/users/hellbe/following{/other_user}",
"gists_url": "https://api.github.com/users/hellbe/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/hellbe",
"id": 4107500,
"login": "hellbe",
"node_id": "MDQ6VXNlcjQxMDc1MDA=",
"organizations_url": "https://api.github.com/users/hellbe/orgs",
"received_events_url": "https://api.github.com/users/hellbe/received_events",
"repos_url": "https://api.github.com/users/hellbe/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/hellbe/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/hellbe/subscriptions",
"type": "User",
"url": "https://api.github.com/users/hellbe"
} | [
{
"color": "e11d21",
"default": false,
"description": "Functionality that used to work in a prior pandas version",
"id": 32815646,
"name": "Regression",
"node_id": "MDU6TGFiZWwzMjgxNTY0Ng==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Regression"
},
{
"color": ... | closed | false | null | [] | null | 1 | 2019-10-07T19:51:03Z | 2019-10-18T09:44:17Z | 2019-10-18T09:44:16Z | NONE | null | 0.25.1 seems to have reintroduced #20434
**Update:** not the case, but the same problem happens when feeding `excel_read()` with an [urllib3.response.HTTPResponse](https://urllib3.readthedocs.io/en/latest/reference/#urllib3.response.HTTPResponse) object. Code sample updated.
#### Code Sample, a copy-pastable example if possible
```
import pandas
import requests
url = "https://raw.github.com/pandas-dev/pandas/master/pandas/tests/io/data/test1.xls"
r = requests.get(url, stream=True)
df = pandas.read_excel(r.raw)
print(df)
```
#### Problem description
Using `0.25.1` I get the same problem and output as described in #20434 with the code above.
#### Expected Output
See #20434
#### Output of ``pd.show_versions()``
<details>
INSTALLED VERSIONS
------------------
commit : None
pandas : 0.25.1
numpy : 1.17.2
pytz : 2019.3
dateutil : 2.8.0
pip : 19.2.3
setuptools : 41.4.0
Cython : None
pytest : None
hypothesis : None
sphinx : None
blosc : None
feather : None
xlsxwriter : None
lxml.etree : None
html5lib : None
pymysql : None
psycopg2 : None
jinja2 : 2.10.3
IPython : None
pandas_datareader: None
bs4 : None
bottleneck : None
fastparquet : None
gcsfs : None
lxml.etree : None
matplotlib : None
numexpr : None
odfpy : None
openpyxl : None
pandas_gbq : None
pyarrow : None
pytables : None
s3fs : None
scipy : None
sqlalchemy : None
tables : None
xarray : None
xlrd : 1.2.0
xlwt : None
xlsxwriter : None
</details>
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28825/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28825/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28826 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28826/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28826/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28826/events | https://github.com/pandas-dev/pandas/pull/28826 | 503,655,638 | MDExOlB1bGxSZXF1ZXN0MzI1NDY1Njc5 | 28,826 | BUG: Patch for skipping seek() when loading Excel files from urllib3.response.HTTPResponse object | {
"avatar_url": "https://avatars.githubusercontent.com/u/4107500?v=4",
"events_url": "https://api.github.com/users/hellbe/events{/privacy}",
"followers_url": "https://api.github.com/users/hellbe/followers",
"following_url": "https://api.github.com/users/hellbe/following{/other_user}",
"gists_url": "https://api.github.com/users/hellbe/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/hellbe",
"id": 4107500,
"login": "hellbe",
"node_id": "MDQ6VXNlcjQxMDc1MDA=",
"organizations_url": "https://api.github.com/users/hellbe/orgs",
"received_events_url": "https://api.github.com/users/hellbe/received_events",
"repos_url": "https://api.github.com/users/hellbe/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/hellbe/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/hellbe/subscriptions",
"type": "User",
"url": "https://api.github.com/users/hellbe"
} | [
{
"color": "e11d21",
"default": false,
"description": "Functionality that used to work in a prior pandas version",
"id": 32815646,
"name": "Regression",
"node_id": "MDU6TGFiZWwzMjgxNTY0Ng==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Regression"
},
{
"color": ... | closed | false | null | [] | {
"closed_at": "2019-10-19T17:01:24Z",
"closed_issues": 52,
"created_at": "2019-08-23T11:48:40Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/1312546?v=4",
"events_url": "https://api.github.com/users/TomAugspurger/events{/privacy}",
"followers_url": "https://api.github.com/users/TomAugspurger/followers",
"following_url": "https://api.github.com/users/TomAugspurger/following{/other_user}",
"gists_url": "https://api.github.com/users/TomAugspurger/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/TomAugspurger",
"id": 1312546,
"login": "TomAugspurger",
"node_id": "MDQ6VXNlcjEzMTI1NDY=",
"organizations_url": "https://api.github.com/users/TomAugspurger/orgs",
"received_events_url": "https://api.github.com/users/TomAugspurger/received_events",
"repos_url": "https://api.github.com/users/TomAugspurger/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/TomAugspurger/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/TomAugspurger/subscriptions",
"type": "User",
"url": "https://api.github.com/users/TomAugspurger"
},
"description": "on-merge: backport to 0.25.x",
"due_on": "2019-10-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/66",
"id": 4597769,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/66/labels",
"node_id": "MDk6TWlsZXN0b25lNDU5Nzc2OQ==",
"number": 66,
"open_issues": 0,
"state": "closed",
"title": "0.25.2",
"updated_at": "2019-10-19T17:01:24Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/66"
} | 12 | 2019-10-07T19:51:44Z | 2019-10-11T14:38:25Z | 2019-10-11T14:38:25Z | NONE | null | - [ x] closes #28825
- [ ] tests added / passed
- [ ] passes `black pandas`
- [ ] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry
Discovered that 0.25.x reintroduces #20437. Proposing the same fix here. | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28826/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28826/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28826.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28826",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/28826.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28826"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28827 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28827/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28827/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28827/events | https://github.com/pandas-dev/pandas/issues/28827 | 503,656,027 | MDU6SXNzdWU1MDM2NTYwMjc= | 28,827 | Docs: Does pandas `.apply()` twice on first row, or not? | {
"avatar_url": "https://avatars.githubusercontent.com/u/11142944?v=4",
"events_url": "https://api.github.com/users/eric-downes/events{/privacy}",
"followers_url": "https://api.github.com/users/eric-downes/followers",
"following_url": "https://api.github.com/users/eric-downes/following{/other_user}",
"gists_url": "https://api.github.com/users/eric-downes/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/eric-downes",
"id": 11142944,
"login": "eric-downes",
"node_id": "MDQ6VXNlcjExMTQyOTQ0",
"organizations_url": "https://api.github.com/users/eric-downes/orgs",
"received_events_url": "https://api.github.com/users/eric-downes/received_events",
"repos_url": "https://api.github.com/users/eric-downes/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/eric-downes/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/eric-downes/subscriptions",
"type": "User",
"url": "https://api.github.com/users/eric-downes"
} | [
{
"color": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
},
{
"color": "fbca04",
"default": false,
"description": "Apply, Aggregate, Tra... | closed | false | null | [] | null | 4 | 2019-10-07T19:52:34Z | 2019-10-08T20:56:32Z | 2019-10-08T20:56:32Z | NONE | null | #### Code Sample
```python
import pandas as pd
df = pd.DataFrame({'a':list('abcdef')})
L = []
def fcn(x):
global L
L.append(x)
df.a.apply(fcn)
print(L)
# ['a', 'b', 'c', 'd', 'e', 'f']
L=[]
df.apply(lambda x: fcn(x.a), axis=1)
print(L)
# ['a', 'b', 'c', 'd', 'e', 'f']
```
#### Problem description
According to the current `pd.DataFrame.apply()` docs: "In the current implementation apply calls func twice on the first column/row to decide whether it can take a fast or slow code path. This can lead to unexpected behavior if func has side-effects, as they will take effect twice for the first column/row."
#### Expected Output
```
['a', 'a', 'b', 'c', 'd', 'e', 'f']
['a', 'a', 'b', 'c', 'd', 'e', 'f']
```
#### Output of ``pd.show_versions()``
<details>
INSTALLED VERSIONS
------------------
commit: None
python: 3.7.3.final.0
python-bits: 64
OS: Darwin
OS-release: 17.7.0
machine: x86_64
processor: i386
byteorder: little
LC_ALL: None
LANG: en_US.UTF-8
LOCALE: en_US.UTF-8
pandas: 0.24.2
pytest: None
pip: 19.0.3
setuptools: 40.8.0
Cython: None
numpy: 1.16.4
scipy: 1.3.0
pyarrow: 0.11.1
xarray: None
IPython: 7.5.0
sphinx: None
patsy: None
dateutil: 2.7.3
pytz: 2018.5
blosc: None
bottleneck: 1.2.1
tables: 3.4.4
numexpr: 2.6.9
feather: None
matplotlib: 3.0.3
openpyxl: None
xlrd: 1.2.0
xlwt: None
xlsxwriter: None
lxml.etree: 4.3.0
bs4: None
html5lib: None
sqlalchemy: 1.2.5
pymysql: None
psycopg2: None
jinja2: None
s3fs: None
fastparquet: None
pandas_gbq: None
pandas_datareader: None
gcsfs: None
</details> | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28827/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28827/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28828 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28828/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28828/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28828/events | https://github.com/pandas-dev/pandas/pull/28828 | 503,718,370 | MDExOlB1bGxSZXF1ZXN0MzI1NTE2OTAx | 28,828 | CLN: core.generic.NDFrame.astype | {
"avatar_url": "https://avatars.githubusercontent.com/u/13159005?v=4",
"events_url": "https://api.github.com/users/simonjayhawkins/events{/privacy}",
"followers_url": "https://api.github.com/users/simonjayhawkins/followers",
"following_url": "https://api.github.com/users/simonjayhawkins/following{/other_user}",
"gists_url": "https://api.github.com/users/simonjayhawkins/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/simonjayhawkins",
"id": 13159005,
"login": "simonjayhawkins",
"node_id": "MDQ6VXNlcjEzMTU5MDA1",
"organizations_url": "https://api.github.com/users/simonjayhawkins/orgs",
"received_events_url": "https://api.github.com/users/simonjayhawkins/received_events",
"repos_url": "https://api.github.com/users/simonjayhawkins/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/simonjayhawkins/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/simonjayhawkins/subscriptions",
"type": "User",
"url": "https://api.github.com/users/simonjayhawkins"
} | [
{
"color": "e102d8",
"default": false,
"description": "Unexpected or buggy dtype conversions",
"id": 31404521,
"name": "Dtype Conversions",
"node_id": "MDU6TGFiZWwzMTQwNDUyMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Dtype%20Conversions"
},
{
"color": "207... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 2 | 2019-10-07T22:12:23Z | 2019-10-08T12:58:09Z | 2019-10-08T12:44:05Z | MEMBER | null | mypy error: `pandas\core\generic.py:5902: error: "append" of "list" does not return a value`
This does not actually manifest as a bug with the current implementation since `pd.concat` ignores `None`.
```python
>>> import pandas as pd
>>>
>>> pd.__version__
'0.26.0.dev0+498.gaf498fe8f'
>>>
>>> d = {'col1': [1, 2], 'col2': [3, 4]}
>>>
>>> df = pd.DataFrame(data=d)
>>>
>>> df
col1 col2
0 1 3
1 2 4
>>>
>>> df.astype({'col1': 'int32'}).dtypes
col1 int32
col2 int64
dtype: object
>>>
>>> results = []
>>> results.append(df['col1'].astype('int32'))
>>> results.append(results.append(df['col2']))
>>> results
[0 1
1 2
Name: col1, dtype: int32, 0 3
1 4
Name: col2, dtype: int64, None]
>>>
>>> pd.concat(results, axis=1)
col1 col2
0 1 3
1 2 4
>>>
```
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28828/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28828/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28828.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28828",
"merged_at": "2019-10-08T12:44:05Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28828.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28828"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28829 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28829/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28829/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28829/events | https://github.com/pandas-dev/pandas/issues/28829 | 503,730,763 | MDU6SXNzdWU1MDM3MzA3NjM= | 28,829 | CI failing Linux py36_32bit | {
"avatar_url": "https://avatars.githubusercontent.com/u/13159005?v=4",
"events_url": "https://api.github.com/users/simonjayhawkins/events{/privacy}",
"followers_url": "https://api.github.com/users/simonjayhawkins/followers",
"following_url": "https://api.github.com/users/simonjayhawkins/following{/other_user}",
"gists_url": "https://api.github.com/users/simonjayhawkins/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/simonjayhawkins",
"id": 13159005,
"login": "simonjayhawkins",
"node_id": "MDQ6VXNlcjEzMTU5MDA1",
"organizations_url": "https://api.github.com/users/simonjayhawkins/orgs",
"received_events_url": "https://api.github.com/users/simonjayhawkins/received_events",
"repos_url": "https://api.github.com/users/simonjayhawkins/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/simonjayhawkins/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/simonjayhawkins/subscriptions",
"type": "User",
"url": "https://api.github.com/users/simonjayhawkins"
} | [
{
"color": "a2bca7",
"default": false,
"description": "Continuous Integration",
"id": 48070600,
"name": "CI",
"node_id": "MDU6TGFiZWw0ODA3MDYwMA==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/CI"
},
{
"color": "d93f0b",
"default": false,
"description": ... | closed | false | null | [] | null | 0 | 2019-10-07T22:48:36Z | 2019-10-07T23:58:20Z | 2019-10-07T23:58:20Z | MEMBER | null | https://dev.azure.com/pandas-dev/pandas/_build/results?buildId=18548
attrs 19.1 -> 19.2
https://github.com/pytest-dev/pytest/issues/5903
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28829/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28829/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28830 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28830/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28830/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28830/events | https://github.com/pandas-dev/pandas/pull/28830 | 503,734,558 | MDExOlB1bGxSZXF1ZXN0MzI1NTI5Njk5 | 28,830 | troubleshoot CI failing Linux py36_32bit | {
"avatar_url": "https://avatars.githubusercontent.com/u/13159005?v=4",
"events_url": "https://api.github.com/users/simonjayhawkins/events{/privacy}",
"followers_url": "https://api.github.com/users/simonjayhawkins/followers",
"following_url": "https://api.github.com/users/simonjayhawkins/following{/other_user}",
"gists_url": "https://api.github.com/users/simonjayhawkins/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/simonjayhawkins",
"id": 13159005,
"login": "simonjayhawkins",
"node_id": "MDQ6VXNlcjEzMTU5MDA1",
"organizations_url": "https://api.github.com/users/simonjayhawkins/orgs",
"received_events_url": "https://api.github.com/users/simonjayhawkins/received_events",
"repos_url": "https://api.github.com/users/simonjayhawkins/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/simonjayhawkins/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/simonjayhawkins/subscriptions",
"type": "User",
"url": "https://api.github.com/users/simonjayhawkins"
} | [
{
"color": "a2bca7",
"default": false,
"description": "Continuous Integration",
"id": 48070600,
"name": "CI",
"node_id": "MDU6TGFiZWw0ODA3MDYwMA==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/CI"
},
{
"color": "d93f0b",
"default": false,
"description": ... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 5 | 2019-10-07T23:00:15Z | 2019-10-15T12:39:52Z | 2019-10-07T23:58:20Z | MEMBER | null | closes #28829 | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28830/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28830/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28830.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28830",
"merged_at": "2019-10-07T23:58:20Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28830.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28830"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28831 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28831/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28831/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28831/events | https://github.com/pandas-dev/pandas/pull/28831 | 503,744,090 | MDExOlB1bGxSZXF1ZXN0MzI1NTM3NTU4 | 28,831 | Make package PEP 561 compatible | {
"avatar_url": "https://avatars.githubusercontent.com/u/30480807?v=4",
"events_url": "https://api.github.com/users/c4f3a0ce/events{/privacy}",
"followers_url": "https://api.github.com/users/c4f3a0ce/followers",
"following_url": "https://api.github.com/users/c4f3a0ce/following{/other_user}",
"gists_url": "https://api.github.com/users/c4f3a0ce/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/c4f3a0ce",
"id": 30480807,
"login": "c4f3a0ce",
"node_id": "MDQ6VXNlcjMwNDgwODA3",
"organizations_url": "https://api.github.com/users/c4f3a0ce/orgs",
"received_events_url": "https://api.github.com/users/c4f3a0ce/received_events",
"repos_url": "https://api.github.com/users/c4f3a0ce/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/c4f3a0ce/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/c4f3a0ce/subscriptions",
"type": "User",
"url": "https://api.github.com/users/c4f3a0ce"
} | [
{
"color": "ea91a4",
"default": false,
"description": "type annotations, mypy/pyright type checking",
"id": 1280988427,
"name": "Typing",
"node_id": "MDU6TGFiZWwxMjgwOTg4NDI3",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Typing"
}
] | closed | false | null | [] | null | 10 | 2019-10-07T23:31:53Z | 2019-10-08T23:31:32Z | 2019-10-08T23:31:32Z | NONE | null | Pandas has growing number of type annotations but these are not properly advertised to type checking tools. According to [PEP 561](https://www.python.org/dev/peps/pep-0561/) packages providing annotations should contain `py.typed` files in corresponding packages.
`py.typed` is applied recursively, if placed in the root, and can accept missing annotations, if contains `partial\n`.
This PR adds such file and includes it in `package_data`.
- [x] closes #28142
- [ ] tests added / passed
- [ ] passes `black pandas`
- [ ] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry
| {
"+1": 1,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 1,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28831/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28831/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28831.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28831",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/28831.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28831"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28832 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28832/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28832/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28832/events | https://github.com/pandas-dev/pandas/pull/28832 | 503,783,212 | MDExOlB1bGxSZXF1ZXN0MzI1NTY4MjIz | 28,832 | TST: port tests from #23982 | {
"avatar_url": "https://avatars.githubusercontent.com/u/8078968?v=4",
"events_url": "https://api.github.com/users/jbrockmendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jbrockmendel/followers",
"following_url": "https://api.github.com/users/jbrockmendel/following{/other_user}",
"gists_url": "https://api.github.com/users/jbrockmendel/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jbrockmendel",
"id": 8078968,
"login": "jbrockmendel",
"node_id": "MDQ6VXNlcjgwNzg5Njg=",
"organizations_url": "https://api.github.com/users/jbrockmendel/orgs",
"received_events_url": "https://api.github.com/users/jbrockmendel/received_events",
"repos_url": "https://api.github.com/users/jbrockmendel/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jbrockmendel/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jbrockmendel/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jbrockmendel"
} | [
{
"color": "C4A000",
"default": false,
"description": "pandas testing functions or related to the test suite",
"id": 127685,
"name": "Testing",
"node_id": "MDU6TGFiZWwxMjc2ODU=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Testing"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 1 | 2019-10-08T02:10:39Z | 2019-10-08T14:25:48Z | 2019-10-08T12:11:04Z | MEMBER | null | I think this finishes the porting of the tests commented "placeholder due to too many xfails". going to plow through existing (and newly added) xfails in separate branch(es) | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28832/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28832/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28832.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28832",
"merged_at": "2019-10-08T12:11:03Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28832.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28832"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28833 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28833/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28833/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28833/events | https://github.com/pandas-dev/pandas/pull/28833 | 503,796,122 | MDExOlB1bGxSZXF1ZXN0MzI1NTc3NzU2 | 28,833 | TST: fix 24 xfails in maybe_promote | {
"avatar_url": "https://avatars.githubusercontent.com/u/8078968?v=4",
"events_url": "https://api.github.com/users/jbrockmendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jbrockmendel/followers",
"following_url": "https://api.github.com/users/jbrockmendel/following{/other_user}",
"gists_url": "https://api.github.com/users/jbrockmendel/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jbrockmendel",
"id": 8078968,
"login": "jbrockmendel",
"node_id": "MDQ6VXNlcjgwNzg5Njg=",
"organizations_url": "https://api.github.com/users/jbrockmendel/orgs",
"received_events_url": "https://api.github.com/users/jbrockmendel/received_events",
"repos_url": "https://api.github.com/users/jbrockmendel/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jbrockmendel/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jbrockmendel/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jbrockmendel"
} | [
{
"color": "C4A000",
"default": false,
"description": "pandas testing functions or related to the test suite",
"id": 127685,
"name": "Testing",
"node_id": "MDU6TGFiZWwxMjc2ODU=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Testing"
},
{
"color": "e102d8",
"d... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 3 | 2019-10-08T03:01:42Z | 2019-10-08T21:24:12Z | 2019-10-08T21:21:50Z | MEMBER | null | Vague gameplan: I think I've got a handle on the `if not boxed` xfail tests that are left, will incrementally fix them over a few more steps. Then the `if boxed` cases all correspond to passing `ndarray` for `fill_value`, which never happens in the tests except for dedicated tests designed to do exactly that. If we can rule that case out, we can remove most of the remaining xfails (and a lot of complexity in the test code) in one swoop. | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28833/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28833/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28833.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28833",
"merged_at": "2019-10-08T21:21:50Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28833.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28833"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28834 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28834/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28834/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28834/events | https://github.com/pandas-dev/pandas/pull/28834 | 503,834,119 | MDExOlB1bGxSZXF1ZXN0MzI1NjA2Mjcz | 28,834 | BUG: Appending empty list to DataFrame #28769 | {
"avatar_url": "https://avatars.githubusercontent.com/u/1978117?v=4",
"events_url": "https://api.github.com/users/asishm/events{/privacy}",
"followers_url": "https://api.github.com/users/asishm/followers",
"following_url": "https://api.github.com/users/asishm/following{/other_user}",
"gists_url": "https://api.github.com/users/asishm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/asishm",
"id": 1978117,
"login": "asishm",
"node_id": "MDQ6VXNlcjE5NzgxMTc=",
"organizations_url": "https://api.github.com/users/asishm/orgs",
"received_events_url": "https://api.github.com/users/asishm/received_events",
"repos_url": "https://api.github.com/users/asishm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/asishm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/asishm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/asishm"
} | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "02d7e1",
"default": false,
"description": "Concat, Merge/Join, Stac... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 8 | 2019-10-08T05:26:25Z | 2019-11-19T15:53:23Z | 2019-11-16T21:35:56Z | CONTRIBUTOR | null | - [x] closes #28769
- [x] tests added / passed
- [x] passes `black pandas`
- [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [x] whatsnew entry
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28834/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28834/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28834.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28834",
"merged_at": "2019-11-16T21:35:55Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28834.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28834"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28835 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28835/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28835/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28835/events | https://github.com/pandas-dev/pandas/pull/28835 | 503,836,888 | MDExOlB1bGxSZXF1ZXN0MzI1NjA4NDIx | 28,835 | Remove NDFrameGroupBy Class | {
"avatar_url": "https://avatars.githubusercontent.com/u/609873?v=4",
"events_url": "https://api.github.com/users/WillAyd/events{/privacy}",
"followers_url": "https://api.github.com/users/WillAyd/followers",
"following_url": "https://api.github.com/users/WillAyd/following{/other_user}",
"gists_url": "https://api.github.com/users/WillAyd/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/WillAyd",
"id": 609873,
"login": "WillAyd",
"node_id": "MDQ6VXNlcjYwOTg3Mw==",
"organizations_url": "https://api.github.com/users/WillAyd/orgs",
"received_events_url": "https://api.github.com/users/WillAyd/received_events",
"repos_url": "https://api.github.com/users/WillAyd/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/WillAyd/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/WillAyd/subscriptions",
"type": "User",
"url": "https://api.github.com/users/WillAyd"
} | [
{
"color": "FCE94F",
"default": false,
"description": "Internal refactoring of code",
"id": 127681,
"name": "Refactor",
"node_id": "MDU6TGFiZWwxMjc2ODE=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Refactor"
},
{
"color": "729FCF",
"default": false,
"de... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 5 | 2019-10-08T05:35:22Z | 2020-01-16T00:33:51Z | 2019-10-08T12:33:47Z | MEMBER | null | Was going to do a larger refactor but this diff looks more confusing than it actually is, so figured I'd stop here for readability. All I've done in this PR is:
- Remove NDFrameGroupBy, consolidating it's methods into DataFrameGroupBy
- Merge NDFrameGroupBy.aggregate into DataFrameGroupBy.aggregate (the latter previously called the former)
After this I am looking to find a more logical home for the functions, as the current hierarchy isn't super clear. For example, `_iterate_slices()` should probably be abstract in the base `GroupBy` class, but right now the Series implementation is in the superclass while DataFrameGroupBy overrides that for itself. Series.pct_change is practically the same as GroupBy.pct_change, so is probably unnecessary. Will be a few more follow ups mixed in | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28835/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28835/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28835.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28835",
"merged_at": "2019-10-08T12:33:47Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28835.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28835"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28836 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28836/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28836/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28836/events | https://github.com/pandas-dev/pandas/issues/28836 | 503,856,881 | MDU6SXNzdWU1MDM4NTY4ODE= | 28,836 | NameError: name 'tempita' is not defined when building extensions with old cython | {
"avatar_url": "https://avatars.githubusercontent.com/u/1224492?v=4",
"events_url": "https://api.github.com/users/toobaz/events{/privacy}",
"followers_url": "https://api.github.com/users/toobaz/followers",
"following_url": "https://api.github.com/users/toobaz/following{/other_user}",
"gists_url": "https://api.github.com/users/toobaz/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/toobaz",
"id": 1224492,
"login": "toobaz",
"node_id": "MDQ6VXNlcjEyMjQ0OTI=",
"organizations_url": "https://api.github.com/users/toobaz/orgs",
"received_events_url": "https://api.github.com/users/toobaz/received_events",
"repos_url": "https://api.github.com/users/toobaz/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/toobaz/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/toobaz/subscriptions",
"type": "User",
"url": "https://api.github.com/users/toobaz"
} | [
{
"color": "75507B",
"default": false,
"description": "Library building on various platforms",
"id": 129350,
"name": "Build",
"node_id": "MDU6TGFiZWwxMjkzNTA=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Build"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 10 | 2019-10-08T06:35:39Z | 2019-12-27T14:41:16Z | 2019-12-27T14:41:05Z | MEMBER | null | #### Code Sample, a copy-pastable example if possible
```python
pietro@debiousci:~/nobackup/repo/pandas_temp$ python3 setup.py build_ext --inplace
Traceback (most recent call last):
File "setup.py", line 813, in <module>
ext_modules=maybe_cythonize(extensions, compiler_directives=directives),
File "setup.py", line 541, in maybe_cythonize
build_ext.render_templates(_pxifiles)
File "setup.py", line 127, in render_templates
pyxcontent = tempita.sub(tmpl)
NameError: name 'tempita' is not defined
```
#### Problem description
If cython is too old/missing, the nice error reporting of the setup.py do not work.
Until few minutes ago I had never heard about ``tempita``, but my understanding is that it is required (used in ``build_ext.render_templates``) while ``cython`` is not:
https://github.com/pandas-dev/pandas/blob/bee17d5f4c99e6d1e451cf9a7b6a1780aa25988d/setup.py#L74
Hence, whether the check for ``tempita`` is made should not depend on whether ``cython`` is found: instead, this is what currently happens, given that ``tempita`` is checked in the ``else`` clause of the ``try...except`` check of ``cython``:
https://github.com/pandas-dev/pandas/blob/bee17d5f4c99e6d1e451cf9a7b6a1780aa25988d/setup.py#L76
Notice that this means the above error pops out despite ``tempita`` being installed in my system.
#### Expected Output
None
#### Output of ``pd.show_versions()``
<details>
Commit: bee17d5f4c99e6d1e451cf9a7b6a1780aa25988d
</details>
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28836/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28836/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28837 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28837/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28837/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28837/events | https://github.com/pandas-dev/pandas/issues/28837 | 503,897,082 | MDU6SXNzdWU1MDM4OTcwODI= | 28,837 | df.loc modifies datetime columns | {
"avatar_url": "https://avatars.githubusercontent.com/u/1709305?v=4",
"events_url": "https://api.github.com/users/bdepardo/events{/privacy}",
"followers_url": "https://api.github.com/users/bdepardo/followers",
"following_url": "https://api.github.com/users/bdepardo/following{/other_user}",
"gists_url": "https://api.github.com/users/bdepardo/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/bdepardo",
"id": 1709305,
"login": "bdepardo",
"node_id": "MDQ6VXNlcjE3MDkzMDU=",
"organizations_url": "https://api.github.com/users/bdepardo/orgs",
"received_events_url": "https://api.github.com/users/bdepardo/received_events",
"repos_url": "https://api.github.com/users/bdepardo/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/bdepardo/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/bdepardo/subscriptions",
"type": "User",
"url": "https://api.github.com/users/bdepardo"
} | [
{
"color": "0e8a16",
"default": true,
"description": null,
"id": 717120670,
"name": "good first issue",
"node_id": "MDU6TGFiZWw3MTcxMjA2NzA=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/good%20first%20issue"
},
{
"color": "cdea3c",
"default": false,
"de... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 5 | 2019-10-08T08:18:09Z | 2019-10-29T06:02:28Z | 2019-10-29T06:02:28Z | NONE | null | #### Code Sample, a copy-pastable example if possible
```python
# Your code here
>>> df = pd.DataFrame.from_dict({"date": [1485264372711, 1485265925110, 1540215845888, 1540282121025]})
>>> df["date_dt"] = pd.to_datetime(df["date"], unit='ms', cache=True)
>>> df
date date_dt
0 1485264372711 2017-01-24 13:26:12.711
1 1485265925110 2017-01-24 13:52:05.110
2 1540215845888 2018-10-22 13:44:05.888
3 1540282121025 2018-10-23 08:08:41.025
>>> df.loc[:, "date_dt_cp"] = df.loc[:, "date_dt"]
>>> df
date date_dt date_dt_cp
0 1485264372711 2017-01-24 13:26:12.711 2017-01-24 13:26:12.711
1 1485265925110 2017-01-24 13:52:05.110 2017-01-24 13:52:05.110
2 1540215845888 2018-10-22 13:44:05.888 2018-10-22 13:44:05.888
3 1540282121025 2018-10-23 08:08:41.025 2018-10-23 08:08:41.025
>>> df.loc[[2,3], "date_dt_cp"] = df.loc[[2,3], "date_dt"]
>>> df
date date_dt date_dt_cp
0 1485264372711 2017-01-24 13:26:12.711 2017-01-24 13:26:12.711000064
1 1485265925110 2017-01-24 13:52:05.110 2017-01-24 13:52:05.110000128
2 1540215845888 2018-10-22 13:44:05.888 2018-10-22 13:44:05.888000000
3 1540282121025 2018-10-23 08:08:41.025 2018-10-23 08:08:41.024999936
```
#### Problem description
Using `.loc[]` on datetime columns to assign values modifies the dates.
When `.loc[]` is used on all the lines (`df.loc[:, "date_dt_cp"] = df.loc[:, "date_dt"]`) the dates are unchanged
```python
>>> df
date date_dt date_dt_cp
0 1485264372711 2017-01-24 13:26:12.711 2017-01-24 13:26:12.711
1 1485265925110 2017-01-24 13:52:05.110 2017-01-24 13:52:05.110
2 1540215845888 2018-10-22 13:44:05.888 2018-10-22 13:44:05.888
3 1540282121025 2018-10-23 08:08:41.025 2018-10-23 08:08:41.025
```
but when selecting only a subset of lines (`df.loc[[2,3], "date_dt_cp"] = df.loc[[2,3], "date_dt"]`), the values of the dates are changed:
```python
>>> df
date date_dt date_dt_cp
0 1485264372711 2017-01-24 13:26:12.711 2017-01-24 13:26:12.711000064
1 1485265925110 2017-01-24 13:52:05.110 2017-01-24 13:52:05.110000128
2 1540215845888 2018-10-22 13:44:05.888 2018-10-22 13:44:05.888000000
3 1540282121025 2018-10-23 08:08:41.025 2018-10-23 08:08:41.024999936
```
#### Expected Output
The last assignment in the example above shouldn't update the values:
```python
date date_dt date_dt_cp
0 1485264372711 2017-01-24 13:26:12.711 2017-01-24 13:26:12.711
1 1485265925110 2017-01-24 13:52:05.110 2017-01-24 13:52:05.110
2 1540215845888 2018-10-22 13:44:05.888 2018-10-22 13:44:05.888
3 1540282121025 2018-10-23 08:08:41.025 2018-10-23 08:08:41.025
```
#### Output of ``pd.show_versions()``
<details>
INSTALLED VERSIONS
------------------
commit : None
python : 3.7.3.final.0
python-bits : 64
OS : Darwin
OS-release : 18.7.0
machine : x86_64
processor : i386
byteorder : little
LC_ALL : None
LANG : fr_FR.UTF-8
LOCALE : fr_FR.UTF-8
pandas : 0.25.1
numpy : 1.17.2
pytz : 2019.2
dateutil : 2.8.0
pip : 19.1.1
setuptools : 41.0.1
Cython : 0.29.10
pytest : 3.7.4
hypothesis : None
sphinx : None
blosc : None
feather : None
xlsxwriter : None
lxml.etree : None
html5lib : None
pymysql : None
psycopg2 : 2.8.3 (dt dec pq3 ext lo64)
jinja2 : 2.10.1
IPython : 7.3.0
pandas_datareader: None
bs4 : None
bottleneck : 1.2.1
fastparquet : None
gcsfs : None
lxml.etree : None
matplotlib : 3.0.0
numexpr : 2.7.0
odfpy : None
openpyxl : None
pandas_gbq : None
pyarrow : None
pytables : None
s3fs : None
scipy : 1.3.0
sqlalchemy : None
tables : None
xarray : None
xlrd : None
xlwt : 1.3.0
xlsxwriter : None
</details>
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28837/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28837/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28838 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28838/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28838/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28838/events | https://github.com/pandas-dev/pandas/pull/28838 | 503,906,945 | MDExOlB1bGxSZXF1ZXN0MzI1NjYxNTc4 | 28,838 | DOC: fix code-block in the reshaping docs | {
"avatar_url": "https://avatars.githubusercontent.com/u/9424617?v=4",
"events_url": "https://api.github.com/users/oktaysabak/events{/privacy}",
"followers_url": "https://api.github.com/users/oktaysabak/followers",
"following_url": "https://api.github.com/users/oktaysabak/following{/other_user}",
"gists_url": "https://api.github.com/users/oktaysabak/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/oktaysabak",
"id": 9424617,
"login": "oktaysabak",
"node_id": "MDQ6VXNlcjk0MjQ2MTc=",
"organizations_url": "https://api.github.com/users/oktaysabak/orgs",
"received_events_url": "https://api.github.com/users/oktaysabak/received_events",
"repos_url": "https://api.github.com/users/oktaysabak/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/oktaysabak/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/oktaysabak/subscriptions",
"type": "User",
"url": "https://api.github.com/users/oktaysabak"
} | [
{
"color": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 9 | 2019-10-08T08:38:48Z | 2020-01-31T07:39:17Z | 2019-10-16T16:24:58Z | CONTRIBUTOR | null | - [x] closes #28819
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28838/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28838/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28838.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28838",
"merged_at": "2019-10-16T16:24:58Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28838.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28838"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28839 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28839/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28839/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28839/events | https://github.com/pandas-dev/pandas/issues/28839 | 503,956,960 | MDU6SXNzdWU1MDM5NTY5NjA= | 28,839 | BUG: DataFrame.equals() wrongly returns True in case of identical blocks with different locations | {
"avatar_url": "https://avatars.githubusercontent.com/u/20040007?v=4",
"events_url": "https://api.github.com/users/SadanLucifer/events{/privacy}",
"followers_url": "https://api.github.com/users/SadanLucifer/followers",
"following_url": "https://api.github.com/users/SadanLucifer/following{/other_user}",
"gists_url": "https://api.github.com/users/SadanLucifer/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/SadanLucifer",
"id": 20040007,
"login": "SadanLucifer",
"node_id": "MDQ6VXNlcjIwMDQwMDA3",
"organizations_url": "https://api.github.com/users/SadanLucifer/orgs",
"received_events_url": "https://api.github.com/users/SadanLucifer/received_events",
"repos_url": "https://api.github.com/users/SadanLucifer/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/SadanLucifer/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/SadanLucifer/subscriptions",
"type": "User",
"url": "https://api.github.com/users/SadanLucifer"
} | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 8 | 2019-10-08T10:18:37Z | 2019-11-19T13:31:13Z | 2019-11-19T13:31:13Z | NONE | null | #### Code Sample, a copy-pastable example if possible
```python
version: 3.6.8
# Your code here
df3 = pd.DataFrame({'a': [1, 2], 'b': ['s', 'd']})
df4 = pd.DataFrame({'a': ['s', 'd'], 'b': [1, 2]})
df3.equals(df4)
```
#### Problem description

When I read the source code, I did a simple test on it, and then failed.
#### Expected Output
I expected it return False
#### Output of ``pd.show_versions()``
<details>
INSTALLED VERSIONS
------------------
commit : None
python : 3.6.8.final.0
python-bits : 64
OS : Windows
OS-release : 10
machine : AMD64
processor : Intel64 Family 6 Model 60 Stepping 3, GenuineIntel
byteorder : little
LC_ALL : None
LANG : None
LOCALE : None.None
pandas : 0.25.0
numpy : 1.16.4
pytz : 2019.1
dateutil : 2.8.0
pip : 19.2.2
setuptools : 40.6.2
Cython : None
pytest : None
hypothesis : None
sphinx : None
blosc : None
feather : None
xlsxwriter : None
lxml.etree : 4.3.3
html5lib : None
pymysql : 0.9.3
psycopg2 : 2.8.3 (dt dec pq3 ext lo64)
jinja2 : 2.10.1
IPython : 7.5.0
pandas_datareader: None
bs4 : None
bottleneck : None
fastparquet : None
gcsfs : None
lxml.etree : 4.3.3
matplotlib : 3.1.0
numexpr : None
odfpy : None
openpyxl : None
pandas_gbq : None
pyarrow : None
pytables : None
s3fs : None
scipy : None
sqlalchemy : 1.3.4
tables : None
xarray : None
xlrd : 1.2.0
xlwt : None
xlsxwriter : None
</details>
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28839/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28839/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28840 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28840/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28840/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28840/events | https://github.com/pandas-dev/pandas/issues/28840 | 504,056,494 | MDU6SXNzdWU1MDQwNTY0OTQ= | 28,840 | BUG: EAs with list-like values fail in to_csv (due to to_native_types) | {
"avatar_url": "https://avatars.githubusercontent.com/u/1020496?v=4",
"events_url": "https://api.github.com/users/jorisvandenbossche/events{/privacy}",
"followers_url": "https://api.github.com/users/jorisvandenbossche/followers",
"following_url": "https://api.github.com/users/jorisvandenbossche/following{/other_user}",
"gists_url": "https://api.github.com/users/jorisvandenbossche/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jorisvandenbossche",
"id": 1020496,
"login": "jorisvandenbossche",
"node_id": "MDQ6VXNlcjEwMjA0OTY=",
"organizations_url": "https://api.github.com/users/jorisvandenbossche/orgs",
"received_events_url": "https://api.github.com/users/jorisvandenbossche/received_events",
"repos_url": "https://api.github.com/users/jorisvandenbossche/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jorisvandenbossche/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jorisvandenbossche/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jorisvandenbossche"
} | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "6138b5",
"default": false,
"description": "Extending pandas with cu... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 0 | 2019-10-08T13:49:35Z | 2019-10-14T23:33:48Z | 2019-10-14T23:33:48Z | MEMBER | null | From a report at GeoPandas: https://github.com/geopandas/geopandas/issues/1145
Explanation: assume you have an ExtensionArray with list-like values (eg with an object numpy array with lists under the hood). When calling, `to_csv`, which goes through `Block.to_native_types`, we convert this to a numpy array and call `astype(str)`:
https://github.com/pandas-dev/pandas/blob/39602e7d7c5b663696f5a6eca9e66e65483bc868/pandas/core/internals/blocks.py#L699
But, in numpy, if you have a numpy array with list like values, doing `astype(str)` does not work:
```
In [2]: a = np.array([[1, 2], [3]], dtype=object)
In [3]: a.astype(str)
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
<ipython-input-3-db38302b5f9a> in <module>
----> 1 a.astype(str)
ValueError: setting an array element with a sequence
```
This could be considered a numpy issue, but, we should also avoid converting to a numpy array while we can directly call `astype` on the ExtensionArray. | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28840/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28840/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28841 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28841/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28841/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28841/events | https://github.com/pandas-dev/pandas/pull/28841 | 504,060,393 | MDExOlB1bGxSZXF1ZXN0MzI1Nzg1MDc2 | 28,841 | BUG: use EA.astype in ExtensionBlock.to_native_types | {
"avatar_url": "https://avatars.githubusercontent.com/u/1020496?v=4",
"events_url": "https://api.github.com/users/jorisvandenbossche/events{/privacy}",
"followers_url": "https://api.github.com/users/jorisvandenbossche/followers",
"following_url": "https://api.github.com/users/jorisvandenbossche/following{/other_user}",
"gists_url": "https://api.github.com/users/jorisvandenbossche/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jorisvandenbossche",
"id": 1020496,
"login": "jorisvandenbossche",
"node_id": "MDQ6VXNlcjEwMjA0OTY=",
"organizations_url": "https://api.github.com/users/jorisvandenbossche/orgs",
"received_events_url": "https://api.github.com/users/jorisvandenbossche/received_events",
"repos_url": "https://api.github.com/users/jorisvandenbossche/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jorisvandenbossche/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jorisvandenbossche/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jorisvandenbossche"
} | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "6138b5",
"default": false,
"description": "Extending pandas with cu... | closed | false | null | [] | {
"closed_at": "2019-10-19T17:01:24Z",
"closed_issues": 52,
"created_at": "2019-08-23T11:48:40Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/1312546?v=4",
"events_url": "https://api.github.com/users/TomAugspurger/events{/privacy}",
"followers_url": "https://api.github.com/users/TomAugspurger/followers",
"following_url": "https://api.github.com/users/TomAugspurger/following{/other_user}",
"gists_url": "https://api.github.com/users/TomAugspurger/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/TomAugspurger",
"id": 1312546,
"login": "TomAugspurger",
"node_id": "MDQ6VXNlcjEzMTI1NDY=",
"organizations_url": "https://api.github.com/users/TomAugspurger/orgs",
"received_events_url": "https://api.github.com/users/TomAugspurger/received_events",
"repos_url": "https://api.github.com/users/TomAugspurger/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/TomAugspurger/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/TomAugspurger/subscriptions",
"type": "User",
"url": "https://api.github.com/users/TomAugspurger"
},
"description": "on-merge: backport to 0.25.x",
"due_on": "2019-10-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/66",
"id": 4597769,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/66/labels",
"node_id": "MDk6TWlsZXN0b25lNDU5Nzc2OQ==",
"number": 66,
"open_issues": 0,
"state": "closed",
"title": "0.25.2",
"updated_at": "2019-10-19T17:01:24Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/66"
} | 17 | 2019-10-08T13:56:19Z | 2019-10-15T02:38:40Z | 2019-10-14T23:33:48Z | MEMBER | null | Closes https://github.com/pandas-dev/pandas/issues/28840
This implements a `ExtensionBlock.to_native_types` to override the base class which converts to a numpy array.
To test this is a bit tricky. The current JSONArray we have in the extension tests does not have this issue. I would need to implement and add tests for a new ListArray to check this (I can ensure that this fixes the geopandas issue) | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28841/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28841/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28841.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28841",
"merged_at": "2019-10-14T23:33:47Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28841.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28841"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28842 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28842/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28842/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28842/events | https://github.com/pandas-dev/pandas/issues/28842 | 504,064,421 | MDU6SXNzdWU1MDQwNjQ0MjE= | 28,842 | Migrate 32-bit linux build | {
"avatar_url": "https://avatars.githubusercontent.com/u/1312546?v=4",
"events_url": "https://api.github.com/users/TomAugspurger/events{/privacy}",
"followers_url": "https://api.github.com/users/TomAugspurger/followers",
"following_url": "https://api.github.com/users/TomAugspurger/following{/other_user}",
"gists_url": "https://api.github.com/users/TomAugspurger/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/TomAugspurger",
"id": 1312546,
"login": "TomAugspurger",
"node_id": "MDQ6VXNlcjEzMTI1NDY=",
"organizations_url": "https://api.github.com/users/TomAugspurger/orgs",
"received_events_url": "https://api.github.com/users/TomAugspurger/received_events",
"repos_url": "https://api.github.com/users/TomAugspurger/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/TomAugspurger/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/TomAugspurger/subscriptions",
"type": "User",
"url": "https://api.github.com/users/TomAugspurger"
} | [
{
"color": "a2bca7",
"default": false,
"description": "Continuous Integration",
"id": 48070600,
"name": "CI",
"node_id": "MDU6TGFiZWw0ODA3MDYwMA==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/CI"
}
] | open | false | null | [] | {
"closed_at": null,
"closed_issues": 278,
"created_at": "2013-01-06T03:02:01Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "Milestone for filing things away that may be reached someday (at which point such issues should be moved to the appropriate release milestone)",
"due_on": "2022-12-31T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/20",
"id": 239227,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/20/labels",
"node_id": "MDk6TWlsZXN0b25lMjM5MjI3",
"number": 20,
"open_issues": 108,
"state": "open",
"title": "Someday",
"updated_at": "2021-08-08T01:48:22Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/20"
} | 1 | 2019-10-08T14:02:46Z | 2019-10-08T15:13:24Z | null | CONTRIBUTOR | null | Right now our 32-bit build only happens on a Linux VM in azure pipelines. Anaconda no longer builds 32-bit linux packages, and conda-forge never built 32-bit packages. So that build is likely to cause problems over time.
We should migrate to either
1. Use a 32-bit windows build, which Anaconda still builds packages for.
2. Use a non-conda environment on 32-bit linux VM.
1 is probably preferable since it aligns with the rest of our CI infra. I don't know if Azure provides 32-bit images (last I checked the didn't). IIRC, you can trick conda into installing 32-bit packages on a 64-bit machine, but I'm not sure how robust that is. | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28842/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28842/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28843 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28843/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28843/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28843/events | https://github.com/pandas-dev/pandas/issues/28843 | 504,074,780 | MDU6SXNzdWU1MDQwNzQ3ODA= | 28,843 | [TYPING] pandas.io.formats.format._binify annotation is inconsistent with DataFrameFormatter.__init__ | {
"avatar_url": "https://avatars.githubusercontent.com/u/1554276?v=4",
"events_url": "https://api.github.com/users/zero323/events{/privacy}",
"followers_url": "https://api.github.com/users/zero323/followers",
"following_url": "https://api.github.com/users/zero323/following{/other_user}",
"gists_url": "https://api.github.com/users/zero323/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/zero323",
"id": 1554276,
"login": "zero323",
"node_id": "MDQ6VXNlcjE1NTQyNzY=",
"organizations_url": "https://api.github.com/users/zero323/orgs",
"received_events_url": "https://api.github.com/users/zero323/received_events",
"repos_url": "https://api.github.com/users/zero323/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/zero323/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/zero323/subscriptions",
"type": "User",
"url": "https://api.github.com/users/zero323"
} | [
{
"color": "ea91a4",
"default": false,
"description": "type annotations, mypy/pyright type checking",
"id": 1280988427,
"name": "Typing",
"node_id": "MDU6TGFiZWwxMjgwOTg4NDI3",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Typing"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 13 | 2019-10-08T14:20:16Z | 2019-10-11T12:41:20Z | 2019-10-11T12:41:20Z | NONE | null | #### Problem description
`pd.io.formats.format._binify` defines `line_width` as `Union[np.int32, int]`:
https://github.com/pandas-dev/pandas/blob/39602e7d7c5b663696f5a6eca9e66e65483bc868/pandas/io/formats/format.py#L1893
however it is inconsistent with `DataFrameFormatter.__init__`
https://github.com/pandas-dev/pandas/blob/39602e7d7c5b663696f5a6eca9e66e65483bc868/pandas/io/formats/format.py#L518
and `DataFrameFormatter._join_multiline`
https://github.com/pandas-dev/pandas/blob/39602e7d7c5b663696f5a6eca9e66e65483bc868/pandas/io/formats/format.py#L871
which take and pass as-is `Optional[int]`.
This leads to Mypy error:
```
pandas/io/formats/format.py:871: error: Argument 2 to "_binify" has incompatible type "Optional[int]"; expected "Union[int32, int]"
```
Providing default in [`_join_multiline`](https://github.com/pandas-dev/pandas/blob/39602e7d7c5b663696f5a6eca9e66e65483bc868/pandas/io/formats/format.py#L860), i.e.
```python
lwidth = self.line_width or DEFAULT_LINE_WIDTH
```
could be reasonable fix. One could also ignore [the call](https://github.com/pandas-dev/pandas/blob/39602e7d7c5b663696f5a6eca9e66e65483bc868/pandas/io/formats/format.py#L871):
```python
col_bins = _binify(col_widths, lwidth) # type: ignore
```
but that leaves possible correctness problem.
#### Expected Output
Passing Mypy type check
#### Output of ``pd.show_versions()``
```
INSTALLED VERSIONS
------------------
commit : bee17d5f4c99e6d1e451cf9a7b6a1780aa25988d
python : 3.7.3.final.0
...
```
Additionally
```
mypy==0.730
```
CC @WillAyd | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28843/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28843/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28844 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28844/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28844/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28844/events | https://github.com/pandas-dev/pandas/pull/28844 | 504,095,409 | MDExOlB1bGxSZXF1ZXN0MzI1ODEzNDcw | 28,844 | TST: Improve compatibility with pypy error messages | {
"avatar_url": "https://avatars.githubusercontent.com/u/142362?v=4",
"events_url": "https://api.github.com/users/rlamy/events{/privacy}",
"followers_url": "https://api.github.com/users/rlamy/followers",
"following_url": "https://api.github.com/users/rlamy/following{/other_user}",
"gists_url": "https://api.github.com/users/rlamy/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/rlamy",
"id": 142362,
"login": "rlamy",
"node_id": "MDQ6VXNlcjE0MjM2Mg==",
"organizations_url": "https://api.github.com/users/rlamy/orgs",
"received_events_url": "https://api.github.com/users/rlamy/received_events",
"repos_url": "https://api.github.com/users/rlamy/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/rlamy/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/rlamy/subscriptions",
"type": "User",
"url": "https://api.github.com/users/rlamy"
} | [
{
"color": "C4A000",
"default": false,
"description": "pandas testing functions or related to the test suite",
"id": 127685,
"name": "Testing",
"node_id": "MDU6TGFiZWwxMjc2ODU=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Testing"
},
{
"color": "ffa0ff",
"d... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 7 | 2019-10-08T14:54:12Z | 2019-10-08T21:00:23Z | 2019-10-08T21:00:23Z | CONTRIBUTOR | null | This fixes a bunch of spurious errors when running the test suite on pypy3.
- [ ] closes #xxxx
- [ ] tests added / passed
- [x] passes `black pandas`
- [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28844/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28844/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28844.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28844",
"merged_at": "2019-10-08T21:00:23Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28844.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28844"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28845 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28845/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28845/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28845/events | https://github.com/pandas-dev/pandas/pull/28845 | 504,101,021 | MDExOlB1bGxSZXF1ZXN0MzI1ODE4MDky | 28,845 | DOC: Fixed PR08 and PR09 docstring errors in pandas.Series | {
"avatar_url": "https://avatars.githubusercontent.com/u/36764552?v=4",
"events_url": "https://api.github.com/users/jackbicknell14/events{/privacy}",
"followers_url": "https://api.github.com/users/jackbicknell14/followers",
"following_url": "https://api.github.com/users/jackbicknell14/following{/other_user}",
"gists_url": "https://api.github.com/users/jackbicknell14/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jackbicknell14",
"id": 36764552,
"login": "jackbicknell14",
"node_id": "MDQ6VXNlcjM2NzY0NTUy",
"organizations_url": "https://api.github.com/users/jackbicknell14/orgs",
"received_events_url": "https://api.github.com/users/jackbicknell14/received_events",
"repos_url": "https://api.github.com/users/jackbicknell14/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jackbicknell14/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jackbicknell14/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jackbicknell14"
} | [
{
"color": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
}
] | closed | false | null | [] | null | 1 | 2019-10-08T15:03:03Z | 2019-10-14T02:39:12Z | 2019-10-14T02:39:00Z | CONTRIBUTOR | null | Fixed all PR08 and PR09 issues in pandas.Series.
- [x] closes [#28738](https://github.com/pandas-dev/pandas/issues/28738)
- [x] passes `black pandas`
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28845/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28845/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28845.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28845",
"merged_at": "2019-10-14T02:39:00Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28845.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28845"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28846 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28846/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28846/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28846/events | https://github.com/pandas-dev/pandas/issues/28846 | 504,103,657 | MDU6SXNzdWU1MDQxMDM2NTc= | 28,846 | STY: # TODO, # FIXME, # XXX, others? | {
"avatar_url": "https://avatars.githubusercontent.com/u/8078968?v=4",
"events_url": "https://api.github.com/users/jbrockmendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jbrockmendel/followers",
"following_url": "https://api.github.com/users/jbrockmendel/following{/other_user}",
"gists_url": "https://api.github.com/users/jbrockmendel/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jbrockmendel",
"id": 8078968,
"login": "jbrockmendel",
"node_id": "MDQ6VXNlcjgwNzg5Njg=",
"organizations_url": "https://api.github.com/users/jbrockmendel/orgs",
"received_events_url": "https://api.github.com/users/jbrockmendel/received_events",
"repos_url": "https://api.github.com/users/jbrockmendel/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jbrockmendel/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jbrockmendel/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jbrockmendel"
} | [
{
"color": "eb6420",
"default": false,
"description": "Code style, linting, code_checks",
"id": 106935113,
"name": "Code Style",
"node_id": "MDU6TGFiZWwxMDY5MzUxMTM=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Code%20Style"
},
{
"color": "207de5",
"default... | closed | false | null | [] | null | 2 | 2019-10-08T15:07:28Z | 2019-11-05T22:02:11Z | 2019-11-05T22:02:11Z | MEMBER | null | When looking for things that need attention, I usually grep for `# FIXME:` followed by `# TODO`. But every so often I see a `# XXX: ` which will be missed by this heuristic. This raises two questions:
1) Are there other common usages besides "XXX" that I'm not aware of?
2) Should we standardize on some usage patterns?
<b>Update</b> Also: comments with "?" but no TODO/FIXME label that might merit TODO | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28846/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28846/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28847 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28847/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28847/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28847/events | https://github.com/pandas-dev/pandas/pull/28847 | 504,136,144 | MDExOlB1bGxSZXF1ZXN0MzI1ODQ2ODg1 | 28,847 | Clean up Abstract and Naming Definitions for GroupBy | {
"avatar_url": "https://avatars.githubusercontent.com/u/609873?v=4",
"events_url": "https://api.github.com/users/WillAyd/events{/privacy}",
"followers_url": "https://api.github.com/users/WillAyd/followers",
"following_url": "https://api.github.com/users/WillAyd/following{/other_user}",
"gists_url": "https://api.github.com/users/WillAyd/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/WillAyd",
"id": 609873,
"login": "WillAyd",
"node_id": "MDQ6VXNlcjYwOTg3Mw==",
"organizations_url": "https://api.github.com/users/WillAyd/orgs",
"received_events_url": "https://api.github.com/users/WillAyd/received_events",
"repos_url": "https://api.github.com/users/WillAyd/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/WillAyd/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/WillAyd/subscriptions",
"type": "User",
"url": "https://api.github.com/users/WillAyd"
} | [
{
"color": "FCE94F",
"default": false,
"description": "Internal refactoring of code",
"id": 127681,
"name": "Refactor",
"node_id": "MDU6TGFiZWwxMjc2ODE=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Refactor"
},
{
"color": "729FCF",
"default": false,
"de... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 4 | 2019-10-08T16:03:25Z | 2019-10-08T21:25:18Z | 2019-10-08T21:24:17Z | MEMBER | null | Summary of changes:
- Made `_iterate_slices` abstract in base class, moved pre-existing definition from Base -> Series where it was actually being called (DataFrame already overrides)
- Made `_wrap_transformed_output` Abstract in base class, as both Series and DataFrame override this
- Redefined `_wrap_applied_output`; this was Abstract in base class before but its definition was not in sync with how the subclasses actually defined
- Renamed `_wrap_output` to `_wrap_series_output` as it is only valid for SeriesGroupBy
- Renamed `_wrap_generic_output` to `_wrap_frame_output` as it is only valid for DataFrameGroupBy
- Renamed `_aggregate_generic` to `_aggregate_frame` as it is only valid for DataFrameGroupBy
More to come in separate PRs
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28847/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28847/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28847.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28847",
"merged_at": "2019-10-08T21:24:17Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28847.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28847"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28848 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28848/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28848/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28848/events | https://github.com/pandas-dev/pandas/pull/28848 | 504,147,713 | MDExOlB1bGxSZXF1ZXN0MzI1ODU2NDY3 | 28,848 | CLN: Assorted cleanups | {
"avatar_url": "https://avatars.githubusercontent.com/u/8078968?v=4",
"events_url": "https://api.github.com/users/jbrockmendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jbrockmendel/followers",
"following_url": "https://api.github.com/users/jbrockmendel/following{/other_user}",
"gists_url": "https://api.github.com/users/jbrockmendel/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jbrockmendel",
"id": 8078968,
"login": "jbrockmendel",
"node_id": "MDQ6VXNlcjgwNzg5Njg=",
"organizations_url": "https://api.github.com/users/jbrockmendel/orgs",
"received_events_url": "https://api.github.com/users/jbrockmendel/received_events",
"repos_url": "https://api.github.com/users/jbrockmendel/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jbrockmendel/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jbrockmendel/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jbrockmendel"
} | [
{
"color": "207de5",
"default": false,
"description": null,
"id": 211029535,
"name": "Clean",
"node_id": "MDU6TGFiZWwyMTEwMjk1MzU=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Clean"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 2 | 2019-10-08T16:26:03Z | 2019-10-08T21:26:05Z | 2019-10-08T21:23:31Z | MEMBER | null | By far the largest component of the diff is removing `from numpy import nan` imports and enabling the corresponding code-check.
Other than that there are a handful of cleanups, typings, docstring, and error message improvements collected from orphan branches locally. | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28848/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28848/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28848.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28848",
"merged_at": "2019-10-08T21:23:31Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28848.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28848"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28849 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28849/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28849/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28849/events | https://github.com/pandas-dev/pandas/pull/28849 | 504,155,210 | MDExOlB1bGxSZXF1ZXN0MzI1ODYyNTA2 | 28,849 | [MINOR] Fix formatting string in _ODFReader.get_sheet_by_name | {
"avatar_url": "https://avatars.githubusercontent.com/u/1554276?v=4",
"events_url": "https://api.github.com/users/zero323/events{/privacy}",
"followers_url": "https://api.github.com/users/zero323/followers",
"following_url": "https://api.github.com/users/zero323/following{/other_user}",
"gists_url": "https://api.github.com/users/zero323/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/zero323",
"id": 1554276,
"login": "zero323",
"node_id": "MDQ6VXNlcjE1NTQyNzY=",
"organizations_url": "https://api.github.com/users/zero323/orgs",
"received_events_url": "https://api.github.com/users/zero323/received_events",
"repos_url": "https://api.github.com/users/zero323/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/zero323/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/zero323/subscriptions",
"type": "User",
"url": "https://api.github.com/users/zero323"
} | [] | closed | false | null | [] | null | 5 | 2019-10-08T16:41:00Z | 2019-10-08T17:51:40Z | 2019-10-08T16:49:33Z | NONE | null | This PR fixes minor problem with `_ODFReader.get_sheet_by_name` method.
If `name` is not found, it attempts to raise a `ValueError` with formatted string that expects keyword argument `name`, however `names` is passed as a positional argument. In effect it will throw unexpected `KeyError`.
Steps to reproduce the problem:
```python
from odf.opendocument import OpenDocumentSpreadsheet
import tempfile
path = tempfile.mktemp()
OpenDocumentSpreadsheet().save(path)
pd.read_excel(path, engine="odf", sheet_name="foo")
# Traceback (most recent call last):
...
# KeyError: 'name'
```
Expected behavior
```python
# Traceback (most recent call last):
# ...
# ValueError: sheet foo not found
```
- [ ] closes #xxxx
- [ ] tests added / passed
- [ ] passes `black pandas`
- [ ] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28849/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28849/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28849.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28849",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/28849.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28849"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28850 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28850/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28850/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28850/events | https://github.com/pandas-dev/pandas/pull/28850 | 504,166,556 | MDExOlB1bGxSZXF1ZXN0MzI1ODcxNzYx | 28,850 | TST: un-xfail 1 passing maybe_promote test | {
"avatar_url": "https://avatars.githubusercontent.com/u/8078968?v=4",
"events_url": "https://api.github.com/users/jbrockmendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jbrockmendel/followers",
"following_url": "https://api.github.com/users/jbrockmendel/following{/other_user}",
"gists_url": "https://api.github.com/users/jbrockmendel/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jbrockmendel",
"id": 8078968,
"login": "jbrockmendel",
"node_id": "MDQ6VXNlcjgwNzg5Njg=",
"organizations_url": "https://api.github.com/users/jbrockmendel/orgs",
"received_events_url": "https://api.github.com/users/jbrockmendel/received_events",
"repos_url": "https://api.github.com/users/jbrockmendel/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jbrockmendel/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jbrockmendel/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jbrockmendel"
} | [
{
"color": "C4A000",
"default": false,
"description": "pandas testing functions or related to the test suite",
"id": 127685,
"name": "Testing",
"node_id": "MDU6TGFiZWwxMjc2ODU=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Testing"
},
{
"color": "207de5",
"d... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 0 | 2019-10-08T17:05:03Z | 2019-10-08T21:06:02Z | 2019-10-08T20:55:02Z | MEMBER | null | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28850/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28850/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28850.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28850",
"merged_at": "2019-10-08T20:55:02Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28850.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28850"
} | |
https://api.github.com/repos/pandas-dev/pandas/issues/28851 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28851/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28851/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28851/events | https://github.com/pandas-dev/pandas/issues/28851 | 504,170,410 | MDU6SXNzdWU1MDQxNzA0MTA= | 28,851 | Support for Nested HTML Tables? | {
"avatar_url": "https://avatars.githubusercontent.com/u/2942215?v=4",
"events_url": "https://api.github.com/users/smsaladi/events{/privacy}",
"followers_url": "https://api.github.com/users/smsaladi/followers",
"following_url": "https://api.github.com/users/smsaladi/following{/other_user}",
"gists_url": "https://api.github.com/users/smsaladi/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/smsaladi",
"id": 2942215,
"login": "smsaladi",
"node_id": "MDQ6VXNlcjI5NDIyMTU=",
"organizations_url": "https://api.github.com/users/smsaladi/orgs",
"received_events_url": "https://api.github.com/users/smsaladi/received_events",
"repos_url": "https://api.github.com/users/smsaladi/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/smsaladi/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/smsaladi/subscriptions",
"type": "User",
"url": "https://api.github.com/users/smsaladi"
} | [
{
"color": "4E9A06",
"default": false,
"description": null,
"id": 76812,
"name": "Enhancement",
"node_id": "MDU6TGFiZWw3NjgxMg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Enhancement"
},
{
"color": "006b75",
"default": false,
"description": "read_htm... | closed | false | null | [] | {
"closed_at": null,
"closed_issues": 2361,
"created_at": "2015-02-26T19:29:05Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/1020496?v=4",
"events_url": "https://api.github.com/users/jorisvandenbossche/events{/privacy}",
"followers_url": "https://api.github.com/users/jorisvandenbossche/followers",
"following_url": "https://api.github.com/users/jorisvandenbossche/following{/other_user}",
"gists_url": "https://api.github.com/users/jorisvandenbossche/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jorisvandenbossche",
"id": 1020496,
"login": "jorisvandenbossche",
"node_id": "MDQ6VXNlcjEwMjA0OTY=",
"organizations_url": "https://api.github.com/users/jorisvandenbossche/orgs",
"received_events_url": "https://api.github.com/users/jorisvandenbossche/received_events",
"repos_url": "https://api.github.com/users/jorisvandenbossche/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jorisvandenbossche/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jorisvandenbossche/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jorisvandenbossche"
},
"description": "A milestone for closed or open issues for which there is no action needed (eg not a bug, just a question / discussion, nothing to resolve, wontfix, etc).\r\n\r\n",
"due_on": null,
"html_url": "https://github.com/pandas-dev/pandas/milestone/33",
"id": 997544,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/33/labels",
"node_id": "MDk6TWlsZXN0b25lOTk3NTQ0",
"number": 33,
"open_issues": 11,
"state": "open",
"title": "No action",
"updated_at": "2021-11-19T17:33:16Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/33"
} | 4 | 2019-10-08T17:13:40Z | 2020-01-01T16:02:32Z | 2020-01-01T15:59:36Z | CONTRIBUTOR | null | #### Problem description
Sometimes I encounter html tables that I need to parse where cells contain full-tables themselves. When using `pd.read_html` itself, this does not work quite that well. With a simple call to pd.read_html, each of these nested tables are parsed and then "inserted"/"concatenated" as rows.
```python
import pandas as pd
df_up = pd.read_html("up_pf00344.test.html", attrs = {'id': 'results'})
```
Screenshot of output as parsed:

#### Expected Output
I think a more natural parsing would be to parse each nested tables into their own pd.DataFrames and be inserted as objects as the value of the corresponding column.
Screenshot of table as rendered in html:

Link to file: https://gist.github.com/smsaladi/6adb30efbe70f9fed0306b226e8ad0d8
#### Output of ``pd.show_versions()``
<details>
INSTALLED VERSIONS
------------------
commit : None
python : 3.7.4.final.0
python-bits : 64
OS : Linux
OS-release : 3.10.0-862.14.4.el7.x86_64
machine : x86_64
processor : x86_64
byteorder : little
LC_ALL : en_US.utf8
LANG : en_US.utf8
LOCALE : en_US.UTF-8
pandas : 0.25.1
numpy : 1.17.2
pytz : 2019.2
dateutil : 2.8.0
pip : 19.2.3
setuptools : 41.2.0
Cython : None
pytest : None
hypothesis : None
sphinx : None
blosc : None
feather : None
xlsxwriter : None
lxml.etree : 4.4.1
html5lib : None
pymysql : None
psycopg2 : None
jinja2 : 2.10.1
IPython : 7.8.0
pandas_datareader: None
bs4 : 4.8.1
bottleneck : None
fastparquet : None
gcsfs : None
lxml.etree : 4.4.1
matplotlib : None
numexpr : None
odfpy : None
openpyxl : None
pandas_gbq : None
pyarrow : None
pytables : None
s3fs : None
scipy : 1.3.1
sqlalchemy : None
tables : None
xarray : None
xlrd : None
xlwt : None
xlsxwriter : None
</details>
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28851/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28851/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28852 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28852/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28852/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28852/events | https://github.com/pandas-dev/pandas/pull/28852 | 504,189,823 | MDExOlB1bGxSZXF1ZXN0MzI1ODkwNTYx | 28,852 | TST: Fix not-boxed maybe_promote test | {
"avatar_url": "https://avatars.githubusercontent.com/u/8078968?v=4",
"events_url": "https://api.github.com/users/jbrockmendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jbrockmendel/followers",
"following_url": "https://api.github.com/users/jbrockmendel/following{/other_user}",
"gists_url": "https://api.github.com/users/jbrockmendel/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jbrockmendel",
"id": 8078968,
"login": "jbrockmendel",
"node_id": "MDQ6VXNlcjgwNzg5Njg=",
"organizations_url": "https://api.github.com/users/jbrockmendel/orgs",
"received_events_url": "https://api.github.com/users/jbrockmendel/received_events",
"repos_url": "https://api.github.com/users/jbrockmendel/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jbrockmendel/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jbrockmendel/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jbrockmendel"
} | [
{
"color": "e102d8",
"default": false,
"description": "Unexpected or buggy dtype conversions",
"id": 31404521,
"name": "Dtype Conversions",
"node_id": "MDU6TGFiZWwzMTQwNDUyMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Dtype%20Conversions"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 2 | 2019-10-08T17:56:04Z | 2019-10-08T21:33:31Z | 2019-10-08T21:21:13Z | MEMBER | null | Along with #28833 this gets close to finishing off the not-boxed cases | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28852/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28852/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28852.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28852",
"merged_at": "2019-10-08T21:21:13Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28852.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28852"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28853 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28853/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28853/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28853/events | https://github.com/pandas-dev/pandas/pull/28853 | 504,201,036 | MDExOlB1bGxSZXF1ZXN0MzI1ODk5NzM4 | 28,853 | CLN: dont catch Exception on reindex_multi | {
"avatar_url": "https://avatars.githubusercontent.com/u/8078968?v=4",
"events_url": "https://api.github.com/users/jbrockmendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jbrockmendel/followers",
"following_url": "https://api.github.com/users/jbrockmendel/following{/other_user}",
"gists_url": "https://api.github.com/users/jbrockmendel/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jbrockmendel",
"id": 8078968,
"login": "jbrockmendel",
"node_id": "MDQ6VXNlcjgwNzg5Njg=",
"organizations_url": "https://api.github.com/users/jbrockmendel/orgs",
"received_events_url": "https://api.github.com/users/jbrockmendel/received_events",
"repos_url": "https://api.github.com/users/jbrockmendel/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jbrockmendel/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jbrockmendel/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jbrockmendel"
} | [
{
"color": "207de5",
"default": false,
"description": null,
"id": 71268330,
"name": "MultiIndex",
"node_id": "MDU6TGFiZWw3MTI2ODMzMA==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/MultiIndex"
},
{
"color": "207de5",
"default": false,
"description": null... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 2 | 2019-10-08T18:20:00Z | 2019-10-11T15:54:38Z | 2019-10-11T15:50:18Z | MEMBER | null | @toobaz any guesses what this might have been intended to catch? | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28853/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28853/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28853.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28853",
"merged_at": "2019-10-11T15:50:18Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28853.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28853"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28854 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28854/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28854/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28854/events | https://github.com/pandas-dev/pandas/pull/28854 | 504,208,358 | MDExOlB1bGxSZXF1ZXN0MzI1OTA1Nzcy | 28,854 | remove doc note about apply applying a function to the first element … | {
"avatar_url": "https://avatars.githubusercontent.com/u/22876178?v=4",
"events_url": "https://api.github.com/users/tlynch1315/events{/privacy}",
"followers_url": "https://api.github.com/users/tlynch1315/followers",
"following_url": "https://api.github.com/users/tlynch1315/following{/other_user}",
"gists_url": "https://api.github.com/users/tlynch1315/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/tlynch1315",
"id": 22876178,
"login": "tlynch1315",
"node_id": "MDQ6VXNlcjIyODc2MTc4",
"organizations_url": "https://api.github.com/users/tlynch1315/orgs",
"received_events_url": "https://api.github.com/users/tlynch1315/received_events",
"repos_url": "https://api.github.com/users/tlynch1315/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/tlynch1315/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/tlynch1315/subscriptions",
"type": "User",
"url": "https://api.github.com/users/tlynch1315"
} | [
{
"color": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 1 | 2019-10-08T18:35:16Z | 2019-10-08T20:56:40Z | 2019-10-08T20:56:32Z | CONTRIBUTOR | null | …twice
- [x] closes #28827
- [ ] tests added / passed
- [ ] passes `black pandas`
- [ ] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28854/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28854/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28854.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28854",
"merged_at": "2019-10-08T20:56:32Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28854.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28854"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28855 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28855/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28855/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28855/events | https://github.com/pandas-dev/pandas/issues/28855 | 504,210,716 | MDU6SXNzdWU1MDQyMTA3MTY= | 28,855 | Pandas Documentation: PDF formatting/organization | {
"avatar_url": "https://avatars.githubusercontent.com/u/12225696?v=4",
"events_url": "https://api.github.com/users/aefferent/events{/privacy}",
"followers_url": "https://api.github.com/users/aefferent/followers",
"following_url": "https://api.github.com/users/aefferent/following{/other_user}",
"gists_url": "https://api.github.com/users/aefferent/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/aefferent",
"id": 12225696,
"login": "aefferent",
"node_id": "MDQ6VXNlcjEyMjI1Njk2",
"organizations_url": "https://api.github.com/users/aefferent/orgs",
"received_events_url": "https://api.github.com/users/aefferent/received_events",
"repos_url": "https://api.github.com/users/aefferent/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/aefferent/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/aefferent/subscriptions",
"type": "User",
"url": "https://api.github.com/users/aefferent"
} | [
{
"color": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
}
] | closed | false | null | [] | null | 2 | 2019-10-08T18:40:19Z | 2019-10-11T09:58:11Z | 2019-10-10T20:26:34Z | NONE | null | Would it be possible to have a proper table of contents and index added to the pdf version of the documentation? The pdf doc for verion 0.25.1 has a section labeled contents; however, the TOC is missing. Also, consider relagating the previous version documentation to an appendix this would allow a inclusion of an index for the current version documentation only.
The reason this change is requested is because I do not have full access to a computer system and/or its environment. The only documentation I have access to must be physical. Having such a large document necessitates being able to navigate it efficiently.
Thank you.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28855/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28855/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28856 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28856/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28856/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28856/events | https://github.com/pandas-dev/pandas/pull/28856 | 504,214,388 | MDExOlB1bGxSZXF1ZXN0MzI1OTEwNjQ4 | 28,856 | TST: un-xfail 22 maybe_promote tests | {
"avatar_url": "https://avatars.githubusercontent.com/u/8078968?v=4",
"events_url": "https://api.github.com/users/jbrockmendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jbrockmendel/followers",
"following_url": "https://api.github.com/users/jbrockmendel/following{/other_user}",
"gists_url": "https://api.github.com/users/jbrockmendel/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jbrockmendel",
"id": 8078968,
"login": "jbrockmendel",
"node_id": "MDQ6VXNlcjgwNzg5Njg=",
"organizations_url": "https://api.github.com/users/jbrockmendel/orgs",
"received_events_url": "https://api.github.com/users/jbrockmendel/received_events",
"repos_url": "https://api.github.com/users/jbrockmendel/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jbrockmendel/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jbrockmendel/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jbrockmendel"
} | [
{
"color": "e102d8",
"default": false,
"description": "Unexpected or buggy dtype conversions",
"id": 31404521,
"name": "Dtype Conversions",
"node_id": "MDU6TGFiZWwzMTQwNDUyMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Dtype%20Conversions"
},
{
"color": "207... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 1 | 2019-10-08T18:48:11Z | 2019-10-08T21:07:44Z | 2019-10-08T20:58:00Z | MEMBER | null | orthogonal to other outstanding PRs in this file | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28856/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28856/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28856.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28856",
"merged_at": "2019-10-08T20:58:00Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28856.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28856"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28857 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28857/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28857/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28857/events | https://github.com/pandas-dev/pandas/pull/28857 | 504,267,658 | MDExOlB1bGxSZXF1ZXN0MzI1OTUzOTUz | 28,857 | CLN: assorted cleanups, mostly post-black fixups | {
"avatar_url": "https://avatars.githubusercontent.com/u/8078968?v=4",
"events_url": "https://api.github.com/users/jbrockmendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jbrockmendel/followers",
"following_url": "https://api.github.com/users/jbrockmendel/following{/other_user}",
"gists_url": "https://api.github.com/users/jbrockmendel/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jbrockmendel",
"id": 8078968,
"login": "jbrockmendel",
"node_id": "MDQ6VXNlcjgwNzg5Njg=",
"organizations_url": "https://api.github.com/users/jbrockmendel/orgs",
"received_events_url": "https://api.github.com/users/jbrockmendel/received_events",
"repos_url": "https://api.github.com/users/jbrockmendel/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jbrockmendel/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jbrockmendel/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jbrockmendel"
} | [
{
"color": "207de5",
"default": false,
"description": null,
"id": 211029535,
"name": "Clean",
"node_id": "MDU6TGFiZWwyMTEwMjk1MzU=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Clean"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 3 | 2019-10-08T20:40:03Z | 2019-10-11T18:35:24Z | 2019-10-11T18:15:35Z | MEMBER | null | Mostly fixing extra " " introduced by black (will take a look at the issue tracker there to see if that can be fixed once and for all).
Also change `except Foo as e:` to `except Foo as err` and remove one `except Exception` in a docs file. Clarified a whatsnew note that @jorisvandenbossche asked for a while back. | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28857/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28857/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28857.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28857",
"merged_at": "2019-10-11T18:15:35Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28857.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28857"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28858 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28858/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28858/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28858/events | https://github.com/pandas-dev/pandas/pull/28858 | 504,288,187 | MDExOlB1bGxSZXF1ZXN0MzI1OTcwODcz | 28,858 | DOC: Fix missing periods and non capitalized summary beginnings (#27977) | {
"avatar_url": "https://avatars.githubusercontent.com/u/11663234?v=4",
"events_url": "https://api.github.com/users/DanBenHa/events{/privacy}",
"followers_url": "https://api.github.com/users/DanBenHa/followers",
"following_url": "https://api.github.com/users/DanBenHa/following{/other_user}",
"gists_url": "https://api.github.com/users/DanBenHa/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/DanBenHa",
"id": 11663234,
"login": "DanBenHa",
"node_id": "MDQ6VXNlcjExNjYzMjM0",
"organizations_url": "https://api.github.com/users/DanBenHa/orgs",
"received_events_url": "https://api.github.com/users/DanBenHa/received_events",
"repos_url": "https://api.github.com/users/DanBenHa/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/DanBenHa/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/DanBenHa/subscriptions",
"type": "User",
"url": "https://api.github.com/users/DanBenHa"
} | [
{
"color": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 2 | 2019-10-08T21:26:02Z | 2019-10-09T07:38:05Z | 2019-10-09T07:37:50Z | CONTRIBUTOR | null | - [ ] closes #27977
- [ ] tests added / passed
- [x] passes `black pandas`
- [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry
Fixed for the following functions
`pandas.io.formats.style.Styler.set_caption
pandas.plotting.table
pandas.plotting.register_matplotlib_converters
pandas.plotting.deregister_matplotlib_converters
pandas.arrays.IntervalArray.mid
pandas.Timedelta.ceil
pandas.Timedelta.floor
pandas.Period
pandas.Period.asfreq
pandas.Period.to_timestamp`
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28858/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28858/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28858.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28858",
"merged_at": "2019-10-09T07:37:50Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28858.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28858"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28859 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28859/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28859/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28859/events | https://github.com/pandas-dev/pandas/pull/28859 | 504,295,127 | MDExOlB1bGxSZXF1ZXN0MzI1OTc2Mzg0 | 28,859 | ENH: Add optional argument keep_index to dataframe melt method (merged master onto old PR) | {
"avatar_url": "https://avatars.githubusercontent.com/u/2942215?v=4",
"events_url": "https://api.github.com/users/smsaladi/events{/privacy}",
"followers_url": "https://api.github.com/users/smsaladi/followers",
"following_url": "https://api.github.com/users/smsaladi/following{/other_user}",
"gists_url": "https://api.github.com/users/smsaladi/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/smsaladi",
"id": 2942215,
"login": "smsaladi",
"node_id": "MDQ6VXNlcjI5NDIyMTU=",
"organizations_url": "https://api.github.com/users/smsaladi/orgs",
"received_events_url": "https://api.github.com/users/smsaladi/received_events",
"repos_url": "https://api.github.com/users/smsaladi/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/smsaladi/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/smsaladi/subscriptions",
"type": "User",
"url": "https://api.github.com/users/smsaladi"
} | [
{
"color": "02d7e1",
"default": false,
"description": "Concat, Merge/Join, Stack/Unstack, Explode",
"id": 13098779,
"name": "Reshaping",
"node_id": "MDU6TGFiZWwxMzA5ODc3OQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Reshaping"
}
] | closed | false | null | [] | null | 4 | 2019-10-08T21:42:43Z | 2019-12-09T18:05:32Z | 2019-12-09T18:05:32Z | CONTRIBUTOR | null | This PR merges master onto @NiklasKeck's PR branch (#17440) to add an optional argument to keep_index to `pd.melt`. There is quite a bit of discussion between the following 2 PRs and issues:
Index gets lost when DataFrame melt method is used #17440
ENH: Add optional argument keep_index to dataframe melt method #17459
Melt enhance #17677
Please let me know if additional things need to be done to complete this PR
----
Setting keep_index to True will reuse the original DataFrame index +
names of melted columns as additional level. closes issue #17440
(cherry picked from commit 0c64bf0e5f145781c0f74fb93ffcd63a6d964bd9)
- [x] closes #xxxx
- [ ] tests added / passed
- [x] passes `black pandas`
- [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28859/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28859/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28859.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28859",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/28859.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28859"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28860 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28860/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28860/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28860/events | https://github.com/pandas-dev/pandas/issues/28860 | 504,316,065 | MDU6SXNzdWU1MDQzMTYwNjU= | 28,860 | Suffixes not applied to join columns in pd.merge | {
"avatar_url": "https://avatars.githubusercontent.com/u/2658661?v=4",
"events_url": "https://api.github.com/users/dsaxton/events{/privacy}",
"followers_url": "https://api.github.com/users/dsaxton/followers",
"following_url": "https://api.github.com/users/dsaxton/following{/other_user}",
"gists_url": "https://api.github.com/users/dsaxton/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/dsaxton",
"id": 2658661,
"login": "dsaxton",
"node_id": "MDQ6VXNlcjI2NTg2NjE=",
"organizations_url": "https://api.github.com/users/dsaxton/orgs",
"received_events_url": "https://api.github.com/users/dsaxton/received_events",
"repos_url": "https://api.github.com/users/dsaxton/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/dsaxton/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dsaxton/subscriptions",
"type": "User",
"url": "https://api.github.com/users/dsaxton"
} | [
{
"color": "0052cc",
"default": false,
"description": null,
"id": 34444536,
"name": "Usage Question",
"node_id": "MDU6TGFiZWwzNDQ0NDUzNg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Usage%20Question"
}
] | closed | false | null | [] | null | 8 | 2019-10-08T22:42:56Z | 2019-10-09T15:24:20Z | 2019-10-09T04:31:19Z | MEMBER | null | ```python
import pandas as pd
left = pd.DataFrame({"a": [1.0, 2.0]})
right = pd.DataFrame({"a": [1.0]})
pd.merge(left, right, how="left", on="a", suffixes=("_left", "_right"))
# a
# 0 1.0
# 1 2.0
```
#### Problem description
The documentation for `suffixes` in `pd.merge` reads:
```
suffixes : tuple of (str, str), default (‘_x’, ‘_y’)
Suffix to apply to overlapping column names in the left and right side, respectively. To raise an exception on overlapping columns use (False, False).
```
but it seems that the join columns themselves are ignored. I'm guessing this is by design, but if so should the docstring be updated to reflect this?
#### Expected Output
```python
# a_left a_right
# 0 1.0 1.0
# 1 2.0 NaN
``` | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28860/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28860/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28861 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28861/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28861/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28861/events | https://github.com/pandas-dev/pandas/pull/28861 | 504,320,402 | MDExOlB1bGxSZXF1ZXN0MzI1OTk3MzQ1 | 28,861 | TST: Fix 36 maybe_promote xfails wanting np.bytes_ instead of np.object_ | {
"avatar_url": "https://avatars.githubusercontent.com/u/8078968?v=4",
"events_url": "https://api.github.com/users/jbrockmendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jbrockmendel/followers",
"following_url": "https://api.github.com/users/jbrockmendel/following{/other_user}",
"gists_url": "https://api.github.com/users/jbrockmendel/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jbrockmendel",
"id": 8078968,
"login": "jbrockmendel",
"node_id": "MDQ6VXNlcjgwNzg5Njg=",
"organizations_url": "https://api.github.com/users/jbrockmendel/orgs",
"received_events_url": "https://api.github.com/users/jbrockmendel/received_events",
"repos_url": "https://api.github.com/users/jbrockmendel/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jbrockmendel/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jbrockmendel/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jbrockmendel"
} | [
{
"color": "e102d8",
"default": false,
"description": "Unexpected or buggy dtype conversions",
"id": 31404521,
"name": "Dtype Conversions",
"node_id": "MDU6TGFiZWwzMTQwNDUyMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Dtype%20Conversions"
},
{
"color": "207... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 3 | 2019-10-08T22:57:01Z | 2019-10-11T15:30:07Z | 2019-10-11T12:24:27Z | MEMBER | null | @jreback less trivial than some of the others. These changes are based on my understanding that maybe_promote should _never_ be returning np.bytes_ dtype; those cases all become np.object_. That is what maybe_promote currently does, and this updates the tests to expect that behavior. | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28861/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28861/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28861.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28861",
"merged_at": "2019-10-11T12:24:27Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28861.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28861"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28862 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28862/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28862/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28862/events | https://github.com/pandas-dev/pandas/pull/28862 | 504,327,870 | MDExOlB1bGxSZXF1ZXN0MzI2MDAzMTgy | 28,862 | CLN: catch less in pd.io | {
"avatar_url": "https://avatars.githubusercontent.com/u/8078968?v=4",
"events_url": "https://api.github.com/users/jbrockmendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jbrockmendel/followers",
"following_url": "https://api.github.com/users/jbrockmendel/following{/other_user}",
"gists_url": "https://api.github.com/users/jbrockmendel/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jbrockmendel",
"id": 8078968,
"login": "jbrockmendel",
"node_id": "MDQ6VXNlcjgwNzg5Njg=",
"organizations_url": "https://api.github.com/users/jbrockmendel/orgs",
"received_events_url": "https://api.github.com/users/jbrockmendel/received_events",
"repos_url": "https://api.github.com/users/jbrockmendel/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jbrockmendel/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jbrockmendel/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jbrockmendel"
} | [
{
"color": "207de5",
"default": false,
"description": null,
"id": 211029535,
"name": "Clean",
"node_id": "MDU6TGFiZWwyMTEwMjk1MzU=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Clean"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 2 | 2019-10-08T23:22:12Z | 2019-11-21T23:07:48Z | 2019-11-12T18:00:24Z | MEMBER | null | @bashtage (only tangentially related to this PR) there is an `except Exception` in pandas.io.stata that I'd like to make more specific. Any suggestions? | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28862/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28862/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28862.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28862",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/28862.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28862"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28863 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28863/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28863/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28863/events | https://github.com/pandas-dev/pandas/pull/28863 | 504,337,526 | MDExOlB1bGxSZXF1ZXN0MzI2MDExMTA3 | 28,863 | Vectorized ISO Format | {
"avatar_url": "https://avatars.githubusercontent.com/u/609873?v=4",
"events_url": "https://api.github.com/users/WillAyd/events{/privacy}",
"followers_url": "https://api.github.com/users/WillAyd/followers",
"following_url": "https://api.github.com/users/WillAyd/following{/other_user}",
"gists_url": "https://api.github.com/users/WillAyd/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/WillAyd",
"id": 609873,
"login": "WillAyd",
"node_id": "MDQ6VXNlcjYwOTg3Mw==",
"organizations_url": "https://api.github.com/users/WillAyd/orgs",
"received_events_url": "https://api.github.com/users/WillAyd/received_events",
"repos_url": "https://api.github.com/users/WillAyd/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/WillAyd/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/WillAyd/subscriptions",
"type": "User",
"url": "https://api.github.com/users/WillAyd"
} | [
{
"color": "AFEEEE",
"default": false,
"description": null,
"id": 211840,
"name": "Timeseries",
"node_id": "MDU6TGFiZWwyMTE4NDA=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Timeseries"
},
{
"color": "a10c02",
"default": false,
"description": "Memory or... | closed | false | null | [] | null | 4 | 2019-10-09T00:00:43Z | 2020-01-16T00:33:48Z | 2019-10-11T12:53:48Z | MEMBER | null | - [ ] closes #28180
- [ ] tests added / passed
- [ ] passes `black pandas`
- [ ] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry
Needs work but could certainly use some guidance from @jbrockmendel
This uses the dt -> ISO string formatting that is deeply nested in the JSON code. It doesn't handle time zones properly (see #12997), doesn't match what you would get by default from `Timestamp.isoformat` (different precision) and doesn't support Timedeltas yet. When Timedeltas are supported this could ease some of the performance issues @cbertinato is seeing in #28595
In any case looking for guidance and thoughts on how to properly implement this, if this is even in the right direction
Here's a rough benchmark on performance:
```ipython
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28863/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28863/timeline | null | 1 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28863.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28863",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/28863.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28863"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28864 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28864/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28864/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28864/events | https://github.com/pandas-dev/pandas/pull/28864 | 504,391,436 | MDExOlB1bGxSZXF1ZXN0MzI2MDUwNDc4 | 28,864 | TST: Fix xfails for non-box maybe_promote on integer dtypes | {
"avatar_url": "https://avatars.githubusercontent.com/u/8078968?v=4",
"events_url": "https://api.github.com/users/jbrockmendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jbrockmendel/followers",
"following_url": "https://api.github.com/users/jbrockmendel/following{/other_user}",
"gists_url": "https://api.github.com/users/jbrockmendel/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jbrockmendel",
"id": 8078968,
"login": "jbrockmendel",
"node_id": "MDQ6VXNlcjgwNzg5Njg=",
"organizations_url": "https://api.github.com/users/jbrockmendel/orgs",
"received_events_url": "https://api.github.com/users/jbrockmendel/received_events",
"repos_url": "https://api.github.com/users/jbrockmendel/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jbrockmendel/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jbrockmendel/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jbrockmendel"
} | [
{
"color": "e102d8",
"default": false,
"description": "Unexpected or buggy dtype conversions",
"id": 31404521,
"name": "Dtype Conversions",
"node_id": "MDU6TGFiZWwzMTQwNDUyMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Dtype%20Conversions"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 2 | 2019-10-09T03:35:04Z | 2019-10-10T13:34:20Z | 2019-10-10T12:51:18Z | MEMBER | null | Orthogonal to other outstanding maybe_promote PRs.
This one required pretty significant changes to the code. Using `np.min_scalar_type` and `np.can_cast` cleans this up a bit, but it is still pretty verbose. AFAICT there is no clear way to make it shorter without significantly sacrificing clarity.
In a follow-up I think L410-459 can be refactored out to a helper function. Waiting on that until I figure out the boxed=True cases, which are still troublesome. | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28864/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28864/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28864.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28864",
"merged_at": "2019-10-10T12:51:18Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28864.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28864"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28865 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28865/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28865/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28865/events | https://github.com/pandas-dev/pandas/pull/28865 | 504,413,491 | MDExOlB1bGxSZXF1ZXN0MzI2MDY2MzYw | 28,865 | TST: Use fixtures instead of setup_method for index tests | {
"avatar_url": "https://avatars.githubusercontent.com/u/5332445?v=4",
"events_url": "https://api.github.com/users/jschendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jschendel/followers",
"following_url": "https://api.github.com/users/jschendel/following{/other_user}",
"gists_url": "https://api.github.com/users/jschendel/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jschendel",
"id": 5332445,
"login": "jschendel",
"node_id": "MDQ6VXNlcjUzMzI0NDU=",
"organizations_url": "https://api.github.com/users/jschendel/orgs",
"received_events_url": "https://api.github.com/users/jschendel/received_events",
"repos_url": "https://api.github.com/users/jschendel/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jschendel/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jschendel/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jschendel"
} | [
{
"color": "FCE94F",
"default": false,
"description": "Internal refactoring of code",
"id": 127681,
"name": "Refactor",
"node_id": "MDU6TGFiZWwxMjc2ODE=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Refactor"
},
{
"color": "C4A000",
"default": false,
"de... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 3 | 2019-10-09T04:50:28Z | 2019-12-20T01:03:29Z | 2019-10-11T15:14:07Z | MEMBER | null | The common index tests use `setup_method` to create a `dict` of indexes to test against:
https://github.com/pandas-dev/pandas/blob/df2e0813e053cc5bc924b2292ea8918a6b27f0e2/pandas/tests/indexes/test_range.py#L25-L30
This `dict` of indexes is then iterated over within the tests:
https://github.com/pandas-dev/pandas/blob/df2e0813e053cc5bc924b2292ea8918a6b27f0e2/pandas/tests/indexes/common.py#L359-L363
The bulk of this PR involves converting `self.indices` into a parametrized fixture of indexes, and adjusting the tests to support this (largely just unindenting). I had to do this conversion for all indexes at once since common test code for all index classes utilizes this pattern, so the diff is fairly large, but it should be relatively simple changes.
I also had to make some changes to references to specific indexes as well (e.g. `self.index`, `self.strIndex`, etc.) since the `setup_method` code also directly set each index in the `dict` as a class attribute. | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28865/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28865/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28865.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28865",
"merged_at": "2019-10-11T15:14:07Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28865.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28865"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28866 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28866/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28866/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28866/events | https://github.com/pandas-dev/pandas/issues/28866 | 504,419,926 | MDU6SXNzdWU1MDQ0MTk5MjY= | 28,866 | DataFrame.replace with dict does not work with Duplicate Column Labels | {
"avatar_url": "https://avatars.githubusercontent.com/u/36034954?v=4",
"events_url": "https://api.github.com/users/CrystalWindSnake/events{/privacy}",
"followers_url": "https://api.github.com/users/CrystalWindSnake/followers",
"following_url": "https://api.github.com/users/CrystalWindSnake/following{/other_user}",
"gists_url": "https://api.github.com/users/CrystalWindSnake/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/CrystalWindSnake",
"id": 36034954,
"login": "CrystalWindSnake",
"node_id": "MDQ6VXNlcjM2MDM0OTU0",
"organizations_url": "https://api.github.com/users/CrystalWindSnake/orgs",
"received_events_url": "https://api.github.com/users/CrystalWindSnake/received_events",
"repos_url": "https://api.github.com/users/CrystalWindSnake/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/CrystalWindSnake/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/CrystalWindSnake/subscriptions",
"type": "User",
"url": "https://api.github.com/users/CrystalWindSnake"
} | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "01a886",
"default": false,
"description": "replace method",
"id... | open | false | null | [] | null | 1 | 2019-10-09T05:14:35Z | 2020-09-17T19:46:48Z | null | NONE | null | #### Code Sample, a copy-pastable example if possible
```python
df = pd.DataFrame({
'name':'a a b b c d'.split(),
'value1':[1,None,2,None,3,4],
'value2':[1,None,2,None,3,4]
})
df.columns='name v v'.split()
df.fillna({'v':0})
```
#### Problem description
display the Warning message:
```
D:\Program Files\Anaconda3\lib\site-packages\pandas\core\frame.py:4239: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
**kwargs
```
and Data has not been modified
#### Output of ``pd.show_versions()``
<details>
pandas : 0.25.0
numpy : 1.16.2
pytz : 2018.9
dateutil : 2.8.0
</details>
| {
"+1": 1,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 1,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28866/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28866/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28867 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28867/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28867/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28867/events | https://github.com/pandas-dev/pandas/issues/28867 | 504,489,086 | MDU6SXNzdWU1MDQ0ODkwODY= | 28,867 | DEPR: deprecate Index.to_native_types() ? | {
"avatar_url": "https://avatars.githubusercontent.com/u/1020496?v=4",
"events_url": "https://api.github.com/users/jorisvandenbossche/events{/privacy}",
"followers_url": "https://api.github.com/users/jorisvandenbossche/followers",
"following_url": "https://api.github.com/users/jorisvandenbossche/following{/other_user}",
"gists_url": "https://api.github.com/users/jorisvandenbossche/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jorisvandenbossche",
"id": 1020496,
"login": "jorisvandenbossche",
"node_id": "MDQ6VXNlcjEwMjA0OTY=",
"organizations_url": "https://api.github.com/users/jorisvandenbossche/orgs",
"received_events_url": "https://api.github.com/users/jorisvandenbossche/received_events",
"repos_url": "https://api.github.com/users/jorisvandenbossche/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jorisvandenbossche/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jorisvandenbossche/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jorisvandenbossche"
} | [
{
"color": "AD7FA8",
"default": false,
"description": null,
"id": 35818298,
"name": "API Design",
"node_id": "MDU6TGFiZWwzNTgxODI5OA==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/API%20Design"
},
{
"color": "5319e7",
"default": false,
"description": "F... | closed | false | null | [] | {
"closed_at": "2020-12-26T13:57:50Z",
"closed_issues": 1768,
"created_at": "2020-05-29T23:47:32Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jreback/followers",
"following_url": "https://api.github.com/users/jreback/following{/other_user}",
"gists_url": "https://api.github.com/users/jreback/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jreback",
"id": 953992,
"login": "jreback",
"node_id": "MDQ6VXNlcjk1Mzk5Mg==",
"organizations_url": "https://api.github.com/users/jreback/orgs",
"received_events_url": "https://api.github.com/users/jreback/received_events",
"repos_url": "https://api.github.com/users/jreback/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jreback/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jreback/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jreback"
},
"description": "on-merge: backport to 1.2.x",
"due_on": "2020-12-15T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/73",
"id": 5479819,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/73/labels",
"node_id": "MDk6TWlsZXN0b25lNTQ3OTgxOQ==",
"number": 73,
"open_issues": 0,
"state": "closed",
"title": "1.2",
"updated_at": "2021-04-13T15:46:43Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/73"
} | 2 | 2019-10-09T08:17:19Z | 2020-09-19T02:13:31Z | 2020-09-19T02:13:31Z | MEMBER | null | We currently have a public `Index.to_native_types()` method (https://dev.pandas.io/docs/reference/api/pandas.Index.to_native_types.html) that somehow formats the values of the index.
Example:
```
In [3]: pd.date_range("2012", periods=3).to_native_types()
Out[3]: array(['2012-01-01', '2012-01-02', '2012-01-03'], dtype=object)
```
I don't think this needs to be in the public API? | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28867/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28867/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28868 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28868/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28868/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28868/events | https://github.com/pandas-dev/pandas/issues/28868 | 504,524,284 | MDU6SXNzdWU1MDQ1MjQyODQ= | 28,868 | Maximum of time series with NaT returns a dtype float64 with only NaN's | {
"avatar_url": "https://avatars.githubusercontent.com/u/31591159?v=4",
"events_url": "https://api.github.com/users/MaximeWeyl/events{/privacy}",
"followers_url": "https://api.github.com/users/MaximeWeyl/followers",
"following_url": "https://api.github.com/users/MaximeWeyl/following{/other_user}",
"gists_url": "https://api.github.com/users/MaximeWeyl/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/MaximeWeyl",
"id": 31591159,
"login": "MaximeWeyl",
"node_id": "MDQ6VXNlcjMxNTkxMTU5",
"organizations_url": "https://api.github.com/users/MaximeWeyl/orgs",
"received_events_url": "https://api.github.com/users/MaximeWeyl/received_events",
"repos_url": "https://api.github.com/users/MaximeWeyl/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/MaximeWeyl/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/MaximeWeyl/subscriptions",
"type": "User",
"url": "https://api.github.com/users/MaximeWeyl"
} | [] | closed | false | null | [] | null | 2 | 2019-10-09T09:24:30Z | 2019-10-09T15:57:15Z | 2019-10-09T15:57:15Z | NONE | null | #### Code Sample, a copy-pastable example if possible
```python
import pandas as pd
show_bug = True
a = pd.date_range("2019-1-1", periods=10, freq="1D", tz="Europe/Paris")
b = pd.date_range("2019-1-3", periods=10, freq="1H", tz="Europe/Paris")
if show_bug:
a = pd.Index([pd.NaT] + a.to_list()[1:])
multi = pd.MultiIndex.from_arrays([a, b])
m = multi.to_frame(index=False).max(axis=1)
print(m)
```
#### Problem description
When show_bug is False, no NaT's are present. This gives this output :
```
0 2019-01-03 00:00:00+01:00
1 2019-01-03 01:00:00+01:00
2 2019-01-03 02:00:00+01:00
3 2019-01-04 00:00:00+01:00
4 2019-01-05 00:00:00+01:00
5 2019-01-06 00:00:00+01:00
6 2019-01-07 00:00:00+01:00
7 2019-01-08 00:00:00+01:00
8 2019-01-09 00:00:00+01:00
9 2019-01-10 00:00:00+01:00
dtype: datetime64[ns, Europe/Paris]
```
When show_bug is True, all it does is replacing the first value in a with a NaT.
I expect the output to be the same, except for the first row being a NaT.
Here is what I get for show_bug=True :
```
0 NaN
1 NaN
2 NaN
3 NaN
4 NaN
5 NaN
6 NaN
7 NaN
8 NaN
9 NaN
dtype: float64
```
#### Expected Output
```
0 NaT
1 2019-01-03 01:00:00+01:00
2 2019-01-03 02:00:00+01:00
3 2019-01-04 00:00:00+01:00
4 2019-01-05 00:00:00+01:00
5 2019-01-06 00:00:00+01:00
6 2019-01-07 00:00:00+01:00
7 2019-01-08 00:00:00+01:00
8 2019-01-09 00:00:00+01:00
9 2019-01-10 00:00:00+01:00
dtype: datetime64[ns, Europe/Paris]
```
#### Output of ``pd.show_versions()``
<details>
INSTALLED VERSIONS
------------------
commit : None
python : 3.7.3.final.0
python-bits : 64
OS : Windows
OS-release : 10
machine : AMD64
processor : Intel64 Family 6 Model 142 Stepping 9, GenuineIntel
byteorder : little
LC_ALL : None
LANG : None
LOCALE : None.None
pandas : 0.25.1
numpy : 1.17.0
pytz : 2019.2
dateutil : 2.8.0
pip : 19.0.3
setuptools : 40.8.0
Cython : None
pytest : 4.6.5
hypothesis : 4.33.1
sphinx : 2.2.0
blosc : None
feather : None
xlsxwriter : None
lxml.etree : 4.4.1
html5lib : None
pymysql : None
psycopg2 : None
jinja2 : 2.10.1
IPython : 7.7.0
pandas_datareader: None
bs4 : 4.8.0
bottleneck : None
fastparquet : None
gcsfs : None
lxml.etree : 4.4.1
matplotlib : 3.1.1
numexpr : None
odfpy : None
openpyxl : 2.6.3
pandas_gbq : None
pyarrow : None
pytables : None
s3fs : None
scipy : 1.3.1
sqlalchemy : None
tables : None
xarray : None
xlrd : 1.2.0
xlwt : None
xlsxwriter : None
</details>
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28868/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28868/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28869 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28869/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28869/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28869/events | https://github.com/pandas-dev/pandas/issues/28869 | 504,582,681 | MDU6SXNzdWU1MDQ1ODI2ODE= | 28,869 | Cannot `style.background_gradient` on an `Int64` column | {
"avatar_url": "https://avatars.githubusercontent.com/u/2772505?v=4",
"events_url": "https://api.github.com/users/eddy-geek/events{/privacy}",
"followers_url": "https://api.github.com/users/eddy-geek/followers",
"following_url": "https://api.github.com/users/eddy-geek/following{/other_user}",
"gists_url": "https://api.github.com/users/eddy-geek/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/eddy-geek",
"id": 2772505,
"login": "eddy-geek",
"node_id": "MDQ6VXNlcjI3NzI1MDU=",
"organizations_url": "https://api.github.com/users/eddy-geek/orgs",
"received_events_url": "https://api.github.com/users/eddy-geek/received_events",
"repos_url": "https://api.github.com/users/eddy-geek/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/eddy-geek/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/eddy-geek/subscriptions",
"type": "User",
"url": "https://api.github.com/users/eddy-geek"
} | [
{
"color": "0e8a16",
"default": true,
"description": null,
"id": 717120670,
"name": "good first issue",
"node_id": "MDU6TGFiZWw3MTcxMjA2NzA=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/good%20first%20issue"
},
{
"color": "6138b5",
"default": false,
"de... | closed | false | null | [] | null | 5 | 2019-10-09T11:16:33Z | 2021-02-11T10:04:04Z | 2021-02-11T10:04:04Z | NONE | null | ```python
old = pd.Series(range(9))
new = pd.Series(range(9), dtype='Int64')
print(old.min(), old.values.min(), new.min()) # =0 OK
print(new.values.min()) # KO
old.to_frame().style.background_gradient() # OK
new.to_frame().style.background_gradient() # KO
```
#### Problem description
Similarly to https://github.com/pandas-dev/pandas/issues/25580, the newer Int64 backend is missing some basic functionality.
Expected: values.min() is available, gradients are displayed
Actual:
```python
----> 1 print(new.values.min())
AttributeError: 'IntegerArray' object has no attribute 'min'
```
and full stack of the `background_gradient` error:
<details>
```
AttributeError Traceback (most recent call last)
~/virtualenvs/jupyter/lib/python3.6/site-packages/IPython/core/formatters.py in __call__(self, obj)
343 method = get_real_method(obj, self.print_method)
344 if method is not None:
--> 345 return method()
346 return None
347 else:
~/virtualenvs/jupyter/lib/python3.6/site-packages/pandas/io/formats/style.py in _repr_html_(self)
161 Hooks into Jupyter notebook rich display system.
162 """
--> 163 return self.render()
164
165 @Appender(_shared_docs['to_excel'] % dict(
~/virtualenvs/jupyter/lib/python3.6/site-packages/pandas/io/formats/style.py in render(self, **kwargs)
457 * table_attributes
458 """
--> 459 self._compute()
460 # TODO: namespace all the pandas keys
461 d = self._translate()
~/virtualenvs/jupyter/lib/python3.6/site-packages/pandas/io/formats/style.py in _compute(self)
527 r = self
528 for func, args, kwargs in self._todo:
--> 529 r = func(self)(*args, **kwargs)
530 return r
531
~/virtualenvs/jupyter/lib/python3.6/site-packages/pandas/io/formats/style.py in _apply(self, func, axis, subset, **kwargs)
536 if axis is not None:
537 result = data.apply(func, axis=axis,
--> 538 result_type='expand', **kwargs)
539 result.columns = data.columns
540 else:
~/virtualenvs/jupyter/lib/python3.6/site-packages/pandas/core/frame.py in apply(self, func, axis, broadcast, raw, reduce, result_type, args, **kwds)
6485 args=args,
6486 kwds=kwds)
-> 6487 return op.get_result()
6488
6489 def applymap(self, func):
~/virtualenvs/jupyter/lib/python3.6/site-packages/pandas/core/apply.py in get_result(self)
149 return self.apply_raw()
150
--> 151 return self.apply_standard()
152
153 def apply_empty_result(self):
~/virtualenvs/jupyter/lib/python3.6/site-packages/pandas/core/apply.py in apply_standard(self)
255
256 # compute the result using the series generator
--> 257 self.apply_series_generator()
258
259 # wrap results
~/virtualenvs/jupyter/lib/python3.6/site-packages/pandas/core/apply.py in apply_series_generator(self)
284 try:
285 for i, v in enumerate(series_gen):
--> 286 results[i] = self.f(v)
287 keys.append(v.name)
288 except Exception as e:
~/virtualenvs/jupyter/lib/python3.6/site-packages/pandas/core/apply.py in f(x)
76
77 def f(x):
---> 78 return func(x, *args, **kwds)
79 else:
80 f = func
~/virtualenvs/jupyter/lib/python3.6/site-packages/pandas/io/formats/style.py in _background_gradient(s, cmap, low, high, text_color_threshold)
939
940 with _mpl(Styler.background_gradient) as (plt, colors):
--> 941 smin = s.values.min()
942 smax = s.values.max()
943 rng = smax - smin
AttributeError: ("'IntegerArray' object has no attribute 'min'", 'occurred at index 0')
```
</details>
#### Output of ``pd.show_versions()``
<details>
INSTALLED VERSIONS
commit: None
python: 3.6.8.final.0
python-bits: 64
OS: Linux
OS-release: 3.10.0-1062.1.1.el7.x86_64
machine: x86_64
processor: x86_64
byteorder: little
LC_ALL: None
LANG: en_US.UTF-8
LOCALE: en_US.UTF-8
pandas: 0.24.2
pytest: 5.0.1
pip: 19.2.3
setuptools: 41.0.1
Cython: None
numpy: 1.16.3
scipy: 1.3.0
pyarrow: None
xarray: None
IPython: 7.5.0
sphinx: None
patsy: None
dateutil: 2.8.0
pytz: 2019.1
blosc: None
bottleneck: None
tables: None
numexpr: None
feather: None
matplotlib: 3.1.0
openpyxl: None
xlrd: 1.2.0
xlwt: None
xlsxwriter: None
lxml.etree: 4.3.3
bs4: None
html5lib: None
sqlalchemy: 1.3.3
pymysql: None
psycopg2: None
jinja2: 2.10.1
s3fs: None
fastparquet: None
pandas_gbq: None
pandas_datareader: None
gcsfs: None
</details>
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28869/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28869/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28870 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28870/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28870/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28870/events | https://github.com/pandas-dev/pandas/issues/28870 | 504,589,018 | MDU6SXNzdWU1MDQ1ODkwMTg= | 28,870 | Merge_asof() Requires specific int type, not reflected in error or documentation | {
"avatar_url": "https://avatars.githubusercontent.com/u/45035434?v=4",
"events_url": "https://api.github.com/users/jjlkant/events{/privacy}",
"followers_url": "https://api.github.com/users/jjlkant/followers",
"following_url": "https://api.github.com/users/jjlkant/following{/other_user}",
"gists_url": "https://api.github.com/users/jjlkant/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jjlkant",
"id": 45035434,
"login": "jjlkant",
"node_id": "MDQ6VXNlcjQ1MDM1NDM0",
"organizations_url": "https://api.github.com/users/jjlkant/orgs",
"received_events_url": "https://api.github.com/users/jjlkant/received_events",
"repos_url": "https://api.github.com/users/jjlkant/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jjlkant/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jjlkant/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jjlkant"
} | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "02d7e1",
"default": false,
"description": "Concat, Merge/Join, Stac... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 4 | 2019-10-09T11:29:18Z | 2019-10-11T12:09:34Z | 2019-10-11T12:09:34Z | CONTRIBUTOR | null | #### Code Sample, a copy-pastable example if possible
```python
import pandas as pd
left = pd.DataFrame({'ts_int': [0, 100, 200], 'left_val': [1, 2, 3]})
right = pd.DataFrame({'ts_int': [50, 150, 250], 'right_val': [1, 2, 3]})
left['ts_int'] = left['ts_int'].astype(int)
right['ts_int'] = right['ts_int'].astype(int)
pd.merge_asof(left, right, on='ts_int', tolerance=100)
> pandas.errors.MergeError: key must be integer, timestamp or float
print(left['ts_int'].dtype)
>>> int32
print(right['ts_int'].dtype)
>>> int32
```
#### Problem description
merge_asof() throws the MergeError `key must be integer, timestamp or float` even when the data used to merge on is a valid integer type.
This happens with all types of int with the exception of int64, as a result of the check performed when a tolerance is passed _(pandas/core/reshape/merge.py:1641)_. This check uses the `is_int64_dtype(lt)`, which will ofcourse return `False` for every type of int that isn't `int64`. This requirement of the `on` key being int64 is however not documented in the docs, nor is it reflected from the raised error.
#### Expected Output
The expected output can go either of two ways. If it should be possible to perform the merge on every integer type, the expected output would be:
```
ts_int left_val right_val
0 0 1 NaN
1 100 2 1.0
2 200 3 2.0
```
If it shouldn't be possible, I'd expect the returned MergeError and/or the docs to reflect that the integer type that should be used as key to merge on has to be of int64 type.
#### Output of ``pd.show_versions()``
<details>
INSTALLED VERSIONS
------------------
commit : None
python : 3.7.4.final.0
python-bits : 64
OS : Windows
OS-release : 10
machine : AMD64
processor : Intel64 Family 6 Model 158 Stepping 10, GenuineIntel
byteorder : little
LC_ALL : None
LANG : en_US.UTF-8
LOCALE : None.None
pandas : 0.25.1
numpy : 1.17.2
pytz : 2019.2
dateutil : 2.8.0
pip : 19.2.3
setuptools : 41.2.0
Cython : None
pytest : None
hypothesis : None
sphinx : None
blosc : None
feather : None
xlsxwriter : None
lxml.etree : None
html5lib : None
pymysql : None
psycopg2 : None
jinja2 : None
IPython : None
pandas_datareader: None
bs4 : None
bottleneck : None
fastparquet : None
gcsfs : None
lxml.etree : None
matplotlib : 3.1.1
numexpr : None
odfpy : None
openpyxl : None
pandas_gbq : None
pyarrow : None
pytables : None
s3fs : None
scipy : 1.3.1
sqlalchemy : None
tables : None
xarray : None
xlrd : None
xlwt : None
xlsxwriter : None
</details>
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28870/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28870/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28871 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28871/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28871/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28871/events | https://github.com/pandas-dev/pandas/issues/28871 | 504,705,227 | MDU6SXNzdWU1MDQ3MDUyMjc= | 28,871 | columns sometimes not added to empty dataframe | {
"avatar_url": "https://avatars.githubusercontent.com/u/1129177?v=4",
"events_url": "https://api.github.com/users/innominate227/events{/privacy}",
"followers_url": "https://api.github.com/users/innominate227/followers",
"following_url": "https://api.github.com/users/innominate227/following{/other_user}",
"gists_url": "https://api.github.com/users/innominate227/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/innominate227",
"id": 1129177,
"login": "innominate227",
"node_id": "MDQ6VXNlcjExMjkxNzc=",
"organizations_url": "https://api.github.com/users/innominate227/orgs",
"received_events_url": "https://api.github.com/users/innominate227/received_events",
"repos_url": "https://api.github.com/users/innominate227/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/innominate227/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/innominate227/subscriptions",
"type": "User",
"url": "https://api.github.com/users/innominate227"
} | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "0b02e1",
"default": false,
"description": "Related to indexing on s... | open | false | null | [] | null | 4 | 2019-10-09T14:53:06Z | 2019-10-10T04:05:35Z | null | NONE | null | #### Code Sample, a copy-pastable example if possible
```python
import datetime
import pandas as pd
test = pd.DataFrame({'date':[datetime.datetime(2000,1,1)]}).set_index('date')
test = test[0:0].copy()
test['3010'] = None
test['2010'] = None
print(test)
```
#### Problem description
The column '3010' is added to the dataframe as expected, but column 2010 does not get added.
#### Expected Output
Empty DataFrame
Columns: [3010, 2010]
Index: []
#### Output of ``pd.show_versions()``
<details>
INSTALLED VERSIONS
------------------
commit : None
python : 3.5.4.final.0
python-bits : 64
OS : Windows
OS-release : 10
machine : AMD64
processor : Intel64 Family 6 Model 85 Stepping 4, GenuineIntel
byteorder : little
LC_ALL : None
LANG : None
LOCALE : None.None
pandas : 0.25.1
numpy : 1.17.2
pytz : 2019.3
dateutil : 2.8.0
pip : 9.0.1
setuptools : 36.4.0
Cython : None
pytest : None
hypothesis : None
sphinx : None
blosc : None
feather : None
xlsxwriter : None
lxml.etree : None
html5lib : None
pymysql : None
psycopg2 : None
jinja2 : None
IPython : None
pandas_datareader: None
openpyxl : None
odfpy : None
gcsfs : None
bottleneck : None
pandas_gbq : None
xarray : None
tables : None
scipy : None
pyarrow : None
xlsxwriter : None
matplotlib : None
sqlalchemy : None
pytables : None
xlwt : None
lxml.etree : None
s3fs : None
xlrd : None
numexpr : None
bs4 : None
fastparquet : None
</details>
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28871/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28871/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28872 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28872/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28872/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28872/events | https://github.com/pandas-dev/pandas/issues/28872 | 504,726,591 | MDU6SXNzdWU1MDQ3MjY1OTE= | 28,872 | IntervalIndex: outer intervals closed 'both' should be possible | {
"avatar_url": "https://avatars.githubusercontent.com/u/5902745?v=4",
"events_url": "https://api.github.com/users/johannes-mueller/events{/privacy}",
"followers_url": "https://api.github.com/users/johannes-mueller/followers",
"following_url": "https://api.github.com/users/johannes-mueller/following{/other_user}",
"gists_url": "https://api.github.com/users/johannes-mueller/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/johannes-mueller",
"id": 5902745,
"login": "johannes-mueller",
"node_id": "MDQ6VXNlcjU5MDI3NDU=",
"organizations_url": "https://api.github.com/users/johannes-mueller/orgs",
"received_events_url": "https://api.github.com/users/johannes-mueller/received_events",
"repos_url": "https://api.github.com/users/johannes-mueller/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/johannes-mueller/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/johannes-mueller/subscriptions",
"type": "User",
"url": "https://api.github.com/users/johannes-mueller"
} | [
{
"color": "4E9A06",
"default": false,
"description": null,
"id": 76812,
"name": "Enhancement",
"node_id": "MDU6TGFiZWw3NjgxMg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Enhancement"
},
{
"color": "009800",
"default": false,
"description": "Interval... | open | false | null | [] | null | 0 | 2019-10-09T15:27:25Z | 2020-04-27T00:19:08Z | null | CONTRIBUTOR | null | #### The following ipython session demonstrates the issue
```python
import numpy as np
import pandas as pd
# a simple population of integer events
population = np.array([1, 2, 2, 3, 3, 3])
# let's make a histogram of the population
hist, edges = np.histogram(population, 4)
# lets turn the histogram into a dataframe using the edges as IntervalIndex
df = pd.DataFrame(data=hist, index=pd.IntervalIndex.from_breaks(edges))
# The 3 events are indexable properly
print(df.loc[3]) # Works
# To see the event at 1 you need to apply some offset
print(df.loc[1+1e-6]) # Works but ugly
print(df.loc[1]) # fails
```
#### Problem description
The current behavior of `IntervalIndex` is that all the intervals have the same closing. It is however desireable to have an `IntervalIndex` like `[[0, 1], (1, 2], (2, 3]]` including the lower and the upper limit.
`cut()` solves this by adding an arbitrary offset to the lower limit to make it loo like `[(-0.002, 1], (1, 2], (2, 3]]`. Then the lower interval is left open but the value 0.0 is still contained by the interval.
This however results in the fact that the intervals contains also values like -0.001 which might be undesired as due to semantics negative values might be impossible. Histograms that allow events in the closed range `[0,1]`, forbidding negative values are impossible to model with a `pandas.IntervalIndex`.
#### Expected behavior.
I'd like to be able to do something like
```
idx = pd.IntervalIndex.from_breaks(np.arange(10))
idx[0].set_closed('both')
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28872/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28872/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28873 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28873/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28873/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28873/events | https://github.com/pandas-dev/pandas/pull/28873 | 504,774,552 | MDExOlB1bGxSZXF1ZXN0MzI2MzUzNjg0 | 28,873 | CLN: No catching needed for groupby median | {
"avatar_url": "https://avatars.githubusercontent.com/u/8078968?v=4",
"events_url": "https://api.github.com/users/jbrockmendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jbrockmendel/followers",
"following_url": "https://api.github.com/users/jbrockmendel/following{/other_user}",
"gists_url": "https://api.github.com/users/jbrockmendel/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jbrockmendel",
"id": 8078968,
"login": "jbrockmendel",
"node_id": "MDQ6VXNlcjgwNzg5Njg=",
"organizations_url": "https://api.github.com/users/jbrockmendel/orgs",
"received_events_url": "https://api.github.com/users/jbrockmendel/received_events",
"repos_url": "https://api.github.com/users/jbrockmendel/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jbrockmendel/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jbrockmendel/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jbrockmendel"
} | [
{
"color": "729FCF",
"default": false,
"description": null,
"id": 233160,
"name": "Groupby",
"node_id": "MDU6TGFiZWwyMzMxNjA=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Groupby"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 3 | 2019-10-09T16:57:29Z | 2019-10-10T04:39:24Z | 2019-10-10T01:50:32Z | MEMBER | null | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28873/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28873/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28873.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28873",
"merged_at": "2019-10-10T01:50:32Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28873.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28873"
} | |
https://api.github.com/repos/pandas-dev/pandas/issues/28874 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28874/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28874/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28874/events | https://github.com/pandas-dev/pandas/pull/28874 | 504,820,310 | MDExOlB1bGxSZXF1ZXN0MzI2Mzg5MTI0 | 28,874 | use requests when it is installed | {
"avatar_url": "https://avatars.githubusercontent.com/u/950575?v=4",
"events_url": "https://api.github.com/users/ocefpaf/events{/privacy}",
"followers_url": "https://api.github.com/users/ocefpaf/followers",
"following_url": "https://api.github.com/users/ocefpaf/following{/other_user}",
"gists_url": "https://api.github.com/users/ocefpaf/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/ocefpaf",
"id": 950575,
"login": "ocefpaf",
"node_id": "MDQ6VXNlcjk1MDU3NQ==",
"organizations_url": "https://api.github.com/users/ocefpaf/orgs",
"received_events_url": "https://api.github.com/users/ocefpaf/received_events",
"repos_url": "https://api.github.com/users/ocefpaf/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/ocefpaf/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/ocefpaf/subscriptions",
"type": "User",
"url": "https://api.github.com/users/ocefpaf"
} | [
{
"color": "4E9A06",
"default": false,
"description": null,
"id": 76812,
"name": "Enhancement",
"node_id": "MDU6TGFiZWw3NjgxMg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Enhancement"
},
{
"color": "AD7FA8",
"default": false,
"description": null,
... | closed | false | null | [] | null | 10 | 2019-10-09T18:31:52Z | 2020-02-06T23:59:52Z | 2020-02-06T23:59:52Z | NONE | null | closes #16716
closes #28825
closes #28826
solves https://github.com/pandas-dev/pandas/pull/16910
- [ ] tests added / passed
- [X] passes `black pandas`
- [X] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry
Continuation of https://github.com/pandas-dev/pandas/pull/21504 and https://github.com/pandas-dev/pandas/pull/17087
This PR is not ready but I'd appreciate any early comment/feedback. | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28874/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28874/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28874.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28874",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/28874.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28874"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28875 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28875/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28875/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28875/events | https://github.com/pandas-dev/pandas/pull/28875 | 504,833,148 | MDExOlB1bGxSZXF1ZXN0MzI2Mzk5NTU0 | 28,875 | BUG: Allow all int types for merge (GH28870) | {
"avatar_url": "https://avatars.githubusercontent.com/u/45035434?v=4",
"events_url": "https://api.github.com/users/jjlkant/events{/privacy}",
"followers_url": "https://api.github.com/users/jjlkant/followers",
"following_url": "https://api.github.com/users/jjlkant/following{/other_user}",
"gists_url": "https://api.github.com/users/jjlkant/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jjlkant",
"id": 45035434,
"login": "jjlkant",
"node_id": "MDQ6VXNlcjQ1MDM1NDM0",
"organizations_url": "https://api.github.com/users/jjlkant/orgs",
"received_events_url": "https://api.github.com/users/jjlkant/received_events",
"repos_url": "https://api.github.com/users/jjlkant/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jjlkant/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jjlkant/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jjlkant"
} | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "02d7e1",
"default": false,
"description": "Concat, Merge/Join, Stac... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 2 | 2019-10-09T18:58:32Z | 2019-10-12T15:49:35Z | 2019-10-11T12:09:34Z | CONTRIBUTOR | null | - [x] closes #28870
- [x] tests added / passed
- [x] passes `black pandas`
- [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [x] whatsnew entry | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28875/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28875/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28875.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28875",
"merged_at": "2019-10-11T12:09:34Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28875.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28875"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28876 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28876/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28876/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28876/events | https://github.com/pandas-dev/pandas/pull/28876 | 504,852,025 | MDExOlB1bGxSZXF1ZXN0MzI2NDE0NjQ0 | 28,876 | ENH: show numbers on .info() with verbose flag | {
"avatar_url": "https://avatars.githubusercontent.com/u/4035367?v=4",
"events_url": "https://api.github.com/users/Roymprog/events{/privacy}",
"followers_url": "https://api.github.com/users/Roymprog/followers",
"following_url": "https://api.github.com/users/Roymprog/following{/other_user}",
"gists_url": "https://api.github.com/users/Roymprog/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/Roymprog",
"id": 4035367,
"login": "Roymprog",
"node_id": "MDQ6VXNlcjQwMzUzNjc=",
"organizations_url": "https://api.github.com/users/Roymprog/orgs",
"received_events_url": "https://api.github.com/users/Roymprog/received_events",
"repos_url": "https://api.github.com/users/Roymprog/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/Roymprog/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Roymprog/subscriptions",
"type": "User",
"url": "https://api.github.com/users/Roymprog"
} | [
{
"color": "370f77",
"default": false,
"description": "DataFrame data structure",
"id": 1049312478,
"name": "DataFrame",
"node_id": "MDU6TGFiZWwxMDQ5MzEyNDc4",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/DataFrame"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 18 | 2019-10-09T19:38:52Z | 2020-01-03T08:54:26Z | 2020-01-03T01:18:53Z | CONTRIBUTOR | null | - [x] closes #17304
- [x] tests added / passed
- [x] passes `black pandas`
- [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [x] whatsnew entry
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28876/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28876/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28876.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28876",
"merged_at": "2020-01-03T01:18:53Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28876.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28876"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28877 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28877/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28877/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28877/events | https://github.com/pandas-dev/pandas/issues/28877 | 504,853,415 | MDU6SXNzdWU1MDQ4NTM0MTU= | 28,877 | read_json should support json pagination | {
"avatar_url": "https://avatars.githubusercontent.com/u/36037291?v=4",
"events_url": "https://api.github.com/users/BartlomiejBartnicki/events{/privacy}",
"followers_url": "https://api.github.com/users/BartlomiejBartnicki/followers",
"following_url": "https://api.github.com/users/BartlomiejBartnicki/following{/other_user}",
"gists_url": "https://api.github.com/users/BartlomiejBartnicki/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/BartlomiejBartnicki",
"id": 36037291,
"login": "BartlomiejBartnicki",
"node_id": "MDQ6VXNlcjM2MDM3Mjkx",
"organizations_url": "https://api.github.com/users/BartlomiejBartnicki/orgs",
"received_events_url": "https://api.github.com/users/BartlomiejBartnicki/received_events",
"repos_url": "https://api.github.com/users/BartlomiejBartnicki/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/BartlomiejBartnicki/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/BartlomiejBartnicki/subscriptions",
"type": "User",
"url": "https://api.github.com/users/BartlomiejBartnicki"
} | [
{
"color": "207de5",
"default": false,
"description": "read_json, to_json, json_normalize",
"id": 49379259,
"name": "IO JSON",
"node_id": "MDU6TGFiZWw0OTM3OTI1OQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20JSON"
}
] | closed | false | null | [] | null | 2 | 2019-10-09T19:41:53Z | 2019-10-10T15:48:29Z | 2019-10-10T15:48:29Z | NONE | null | #### Problem description
Many web service return data divided in subsets. Common conventrion is return data as dict:
```
{"count":78,
"next":"link to next part of data or null",
"previous":null,
"results":[
{"name":"John"surname":"Smith"},
{"name":"Bob"surname":"Black"},
]}
```
Could you consider to add to read_json flag paggination=False, if flag is set to True then json shoulde be compose by sum of results:
```
url = "..."
results = []
while url is not None:
_json = json.load(requests.get(url).content)
results += _json['results']
url = _json['next']
```
There is same question on StackOverflow about this, so I think this feature will be helpfull for many users. | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28877/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28877/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28878 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28878/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28878/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28878/events | https://github.com/pandas-dev/pandas/pull/28878 | 504,861,248 | MDExOlB1bGxSZXF1ZXN0MzI2NDIyMTUz | 28,878 | CLN: dont catch on groupby.mean | {
"avatar_url": "https://avatars.githubusercontent.com/u/8078968?v=4",
"events_url": "https://api.github.com/users/jbrockmendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jbrockmendel/followers",
"following_url": "https://api.github.com/users/jbrockmendel/following{/other_user}",
"gists_url": "https://api.github.com/users/jbrockmendel/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jbrockmendel",
"id": 8078968,
"login": "jbrockmendel",
"node_id": "MDQ6VXNlcjgwNzg5Njg=",
"organizations_url": "https://api.github.com/users/jbrockmendel/orgs",
"received_events_url": "https://api.github.com/users/jbrockmendel/received_events",
"repos_url": "https://api.github.com/users/jbrockmendel/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jbrockmendel/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jbrockmendel/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jbrockmendel"
} | [
{
"color": "729FCF",
"default": false,
"description": null,
"id": 233160,
"name": "Groupby",
"node_id": "MDU6TGFiZWwyMzMxNjA=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Groupby"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 1 | 2019-10-09T19:58:12Z | 2019-10-10T01:51:09Z | 2019-10-10T01:27:38Z | MEMBER | null | The new casting in cython_agg_blocks is specific to a single IntegerArray test case. We could pretty reasonably move that into maybe_downcast_numeric. For the moment id rather hold off since I expect other EA cases to show up here.
cc @WillAyd | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28878/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28878/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28878.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28878",
"merged_at": "2019-10-10T01:27:38Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28878.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28878"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28879 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28879/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28879/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28879/events | https://github.com/pandas-dev/pandas/pull/28879 | 504,867,392 | MDExOlB1bGxSZXF1ZXN0MzI2NDI2OTAw | 28,879 | CLN: assorted cleanups, remove unicode checks in cython | {
"avatar_url": "https://avatars.githubusercontent.com/u/8078968?v=4",
"events_url": "https://api.github.com/users/jbrockmendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jbrockmendel/followers",
"following_url": "https://api.github.com/users/jbrockmendel/following{/other_user}",
"gists_url": "https://api.github.com/users/jbrockmendel/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jbrockmendel",
"id": 8078968,
"login": "jbrockmendel",
"node_id": "MDQ6VXNlcjgwNzg5Njg=",
"organizations_url": "https://api.github.com/users/jbrockmendel/orgs",
"received_events_url": "https://api.github.com/users/jbrockmendel/received_events",
"repos_url": "https://api.github.com/users/jbrockmendel/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jbrockmendel/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jbrockmendel/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jbrockmendel"
} | [
{
"color": "207de5",
"default": false,
"description": null,
"id": 211029535,
"name": "Clean",
"node_id": "MDU6TGFiZWwyMTEwMjk1MzU=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Clean"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 0 | 2019-10-09T20:10:44Z | 2019-10-10T01:43:10Z | 2019-10-10T01:30:55Z | MEMBER | null | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28879/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28879/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28879.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28879",
"merged_at": "2019-10-10T01:30:55Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28879.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28879"
} | |
https://api.github.com/repos/pandas-dev/pandas/issues/28880 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28880/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28880/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28880/events | https://github.com/pandas-dev/pandas/pull/28880 | 504,884,404 | MDExOlB1bGxSZXF1ZXN0MzI2NDQwMDMx | 28,880 | TST: Fix maybe_promote floating non-boxed tests | {
"avatar_url": "https://avatars.githubusercontent.com/u/8078968?v=4",
"events_url": "https://api.github.com/users/jbrockmendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jbrockmendel/followers",
"following_url": "https://api.github.com/users/jbrockmendel/following{/other_user}",
"gists_url": "https://api.github.com/users/jbrockmendel/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jbrockmendel",
"id": 8078968,
"login": "jbrockmendel",
"node_id": "MDQ6VXNlcjgwNzg5Njg=",
"organizations_url": "https://api.github.com/users/jbrockmendel/orgs",
"received_events_url": "https://api.github.com/users/jbrockmendel/received_events",
"repos_url": "https://api.github.com/users/jbrockmendel/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jbrockmendel/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jbrockmendel/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jbrockmendel"
} | [
{
"color": "e102d8",
"default": false,
"description": "Unexpected or buggy dtype conversions",
"id": 31404521,
"name": "Dtype Conversions",
"node_id": "MDU6TGFiZWwzMTQwNDUyMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Dtype%20Conversions"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 1 | 2019-10-09T20:43:50Z | 2019-10-10T13:33:32Z | 2019-10-10T12:50:18Z | MEMBER | null | Like #28864, this involves changing the underlying function. Some of this can be de-duplicated once these are in.
I think that this is the last of the xfails for non-boxed test cases. Really looking forward to having this done with,. | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28880/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28880/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28880.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28880",
"merged_at": "2019-10-10T12:50:18Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28880.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28880"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28881 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28881/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28881/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28881/events | https://github.com/pandas-dev/pandas/issues/28881 | 504,921,359 | MDU6SXNzdWU1MDQ5MjEzNTk= | 28,881 | Type check on dataframe aggregation functions | {
"avatar_url": "https://avatars.githubusercontent.com/u/20330794?v=4",
"events_url": "https://api.github.com/users/insightfulquery/events{/privacy}",
"followers_url": "https://api.github.com/users/insightfulquery/followers",
"following_url": "https://api.github.com/users/insightfulquery/following{/other_user}",
"gists_url": "https://api.github.com/users/insightfulquery/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/insightfulquery",
"id": 20330794,
"login": "insightfulquery",
"node_id": "MDQ6VXNlcjIwMzMwNzk0",
"organizations_url": "https://api.github.com/users/insightfulquery/orgs",
"received_events_url": "https://api.github.com/users/insightfulquery/received_events",
"repos_url": "https://api.github.com/users/insightfulquery/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/insightfulquery/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/insightfulquery/subscriptions",
"type": "User",
"url": "https://api.github.com/users/insightfulquery"
} | [
{
"color": "a10c02",
"default": false,
"description": "Memory or execution speed performance",
"id": 8935311,
"name": "Performance",
"node_id": "MDU6TGFiZWw4OTM1MzEx",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Performance"
},
{
"color": "547c03",
"default"... | open | false | null | [] | null | 2 | 2019-10-09T22:07:16Z | 2021-07-21T05:35:23Z | null | NONE | null | OS: Windows 10
Python: 3.7.3
Pandas: 0.25.1
The DataFrame object has functions such as mean() and sum() which return a Series that contains the appropriate aggregation for each column of the DataFrame. Not all data types are appropriate for all aggregations. For example, strings are not suitable for mean or sum.
Current Behavior:
When mean, sum, or other numerical aggregation is called on a DataFrame that has both numeric and string columns, it attempts to perform the aggregation on all of the columns. When it tries to perform the numeric aggregation on the string column it encounters an exception (TypeError). That exception is silenced and the affected column is excluded from the results.
Why this is a bug:
As the number of rows in the DataFrame increases, the time it takes to attempt and fail to perform a numerical aggregation on the string column increases at (at least) an exponential rate. I doubled the number of rows and saw a x80 increase in runtime. Better detection of this issue could allow these aggregation functions to scale linearly.
Proposed Solution:
Before attempting to perform an aggregation on a column, the function should first check the defined data type. If that data type is not compatible then the column should be skipped immediately without attempting the aggregation.
Alternative Solution:
Some might argue that if a column contains all numeric data it should still be allowed to have the aggregation performed regardless of how that column is defined. I disagree, I believe clean code dictates that a column should behave according to the declared data type. Still, if you wanted to support this kind of implicit type cast, it should be done one row at a time, failing at the first non-numeric value. In my test dataset, all values were non-numeric, so the function could have failed after examining only one value, but instead the number of values available bloats the runtime before the error is encountered.
Note on fix implementation:
It appears to me that the DataFrame aggregations are actually looping over the Series in the DataFrame and calling the Series aggregations in turn, then silencing any exceptions. An elegant solution would be to make the change to the Series aggregation functions. The Series should check its own type when the aggregation function is called, and throw an exception if the defined type is not compatible with the aggregation. The DataFrame aggregation function could then silence the exception as usual. This would increase performance without altering functionality in any way. | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28881/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28881/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28882 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28882/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28882/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28882/events | https://github.com/pandas-dev/pandas/issues/28882 | 504,930,304 | MDU6SXNzdWU1MDQ5MzAzMDQ= | 28,882 | Crash during groupby quantile | {
"avatar_url": "https://avatars.githubusercontent.com/u/8209940?v=4",
"events_url": "https://api.github.com/users/VelizarVESSELINOV/events{/privacy}",
"followers_url": "https://api.github.com/users/VelizarVESSELINOV/followers",
"following_url": "https://api.github.com/users/VelizarVESSELINOV/following{/other_user}",
"gists_url": "https://api.github.com/users/VelizarVESSELINOV/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/VelizarVESSELINOV",
"id": 8209940,
"login": "VelizarVESSELINOV",
"node_id": "MDQ6VXNlcjgyMDk5NDA=",
"organizations_url": "https://api.github.com/users/VelizarVESSELINOV/orgs",
"received_events_url": "https://api.github.com/users/VelizarVESSELINOV/received_events",
"repos_url": "https://api.github.com/users/VelizarVESSELINOV/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/VelizarVESSELINOV/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/VelizarVESSELINOV/subscriptions",
"type": "User",
"url": "https://api.github.com/users/VelizarVESSELINOV"
} | [
{
"color": "729FCF",
"default": false,
"description": null,
"id": 233160,
"name": "Groupby",
"node_id": "MDU6TGFiZWwyMzMxNjA=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Groupby"
},
{
"color": "36ede0",
"default": false,
"description": "Non-Recoverable... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 11 | 2019-10-09T22:31:43Z | 2019-10-30T18:29:08Z | 2019-10-30T18:29:08Z | NONE | null | #### Code Sample, a copy-pastable example if possible
```python
dtf = dtf.groupby(cut(dtf[X], rng)).quantile(.5)
```
#### Problem description
Process: Python [24642]
Path: /Library/Frameworks/Python.framework/Versions/3.7/Resources/Python.app/Contents/MacOS/Python
Identifier: Python
Version: 3.7.4 (3.7.4)
Code Type: X86-64 (Native)
Parent Process: Python [24593]
Responsible: iTerm2 [1703]
User ID: 501
Date/Time: 2019-10-09 17:11:04.949 -0500
OS Version: Mac OS X 10.15 (19A583)
Report Version: 12
Bridge OS Version: 3.0 (14Y904)
Anonymous UUID: F986CCB3-5DD1-9587-8492-6D8B8A43979D
Sleep/Wake UUID: 42F77302-9822-4979-89CB-7C39F3C0556A
Time Awake Since Boot: 67000 seconds
Time Since Wake: 1900 seconds
System Integrity Protection: enabled
Crashed Thread: 7
Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0x000000013a6dcff8
Exception Note: EXC_CORPSE_NOTIFY
Termination Signal: Segmentation fault: 11
Termination Reason: Namespace SIGNAL, Code 0xb
Terminating Process: exc handler [24642]
VM Regions Near 0x13a6dcff8:
MALLOC_LARGE 000000013a5ee000-000000013a633000 [ 276K] rw-/rwx SM=PRV
-->
MALLOC_LARGE 000000013a6dd000-000000013a74d000 [ 448K] rw-/rwx SM=PRV
0 groupby.cpython-37m-darwin.so 0x000000011b1596cf **__pyx_fuse_9__pyx_pw_6pandas_5_libs_7groupby_125group_quantile** + 6719
1 algos.cpython-37m-darwin.so 0x0000000119e8937c __pyx_FusedFunction_call + 812
<details>
Thread 0:: Dispatch queue: com.apple.main-thread
0 org.python.python 0x000000010d924bbf _PyEval_EvalFrameDefault + 1423
1 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
2 org.python.python 0x000000010d92d8c2 call_function + 738
3 org.python.python 0x000000010d92a92e _PyEval_EvalFrameDefault + 25342
4 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
5 org.python.python 0x000000010d92d8c2 call_function + 738
6 org.python.python 0x000000010d92a88d _PyEval_EvalFrameDefault + 25181
7 org.python.python 0x000000010d92e413 _PyEval_EvalCodeWithName + 2467
8 org.python.python 0x000000010d86e5a1 _PyFunction_FastCallKeywords + 257
9 org.python.python 0x000000010d92d8c2 call_function + 738
10 org.python.python 0x000000010d92a92e _PyEval_EvalFrameDefault + 25342
11 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
12 org.python.python 0x000000010d92d8c2 call_function + 738
13 org.python.python 0x000000010d92a873 _PyEval_EvalFrameDefault + 25155
14 org.python.python 0x000000010d92e413 _PyEval_EvalCodeWithName + 2467
15 org.python.python 0x000000010d86e5a1 _PyFunction_FastCallKeywords + 257
16 org.python.python 0x000000010d92d8c2 call_function + 738
17 org.python.python 0x000000010d92a92e _PyEval_EvalFrameDefault + 25342
18 org.python.python 0x000000010d92e413 _PyEval_EvalCodeWithName + 2467
19 org.python.python 0x000000010d86e17b _PyFunction_FastCallDict + 523
20 org.python.python 0x000000010d92ab9e _PyEval_EvalFrameDefault + 25966
21 org.python.python 0x000000010d92e413 _PyEval_EvalCodeWithName + 2467
22 org.python.python 0x000000010d86e5a1 _PyFunction_FastCallKeywords + 257
23 org.python.python 0x000000010d92d8c2 call_function + 738
24 org.python.python 0x000000010d92a9d4 _PyEval_EvalFrameDefault + 25508
25 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
26 org.python.python 0x000000010d92d8c2 call_function + 738
27 org.python.python 0x000000010d92a92e _PyEval_EvalFrameDefault + 25342
28 org.python.python 0x000000010d92e413 _PyEval_EvalCodeWithName + 2467
29 org.python.python 0x000000010d924554 PyEval_EvalCode + 100
30 org.python.python 0x000000010d961c31 PyRun_FileExFlags + 209
31 org.python.python 0x000000010d9614aa PyRun_SimpleFileExFlags + 890
32 org.python.python 0x000000010d980903 pymain_main + 6915
33 org.python.python 0x000000010d980e6a _Py_UnixMain + 58
34 libdyld.dylib 0x00007fff731e2405 start + 1
Thread 1:
0 libsystem_pthread.dylib 0x00007fff733eb5b4 start_wqthread + 0
Thread 2:
0 libsystem_kernel.dylib 0x00007fff7333359e poll + 10
1 select.cpython-37m-darwin.so 0x000000010e0c1982 poll_poll + 466
2 org.python.python 0x000000010d86f1cc _PyMethodDef_RawFastCallKeywords + 668
3 org.python.python 0x000000010d874d42 _PyMethodDescr_FastCallKeywords + 82
4 org.python.python 0x000000010d92d8ec call_function + 780
5 org.python.python 0x000000010d92a873 _PyEval_EvalFrameDefault + 25155
6 org.python.python 0x000000010d92e413 _PyEval_EvalCodeWithName + 2467
7 org.python.python 0x000000010d86e5a1 _PyFunction_FastCallKeywords + 257
8 org.python.python 0x000000010d92d8c2 call_function + 738
9 org.python.python 0x000000010d92a873 _PyEval_EvalFrameDefault + 25155
10 org.python.python 0x000000010d92e413 _PyEval_EvalCodeWithName + 2467
11 org.python.python 0x000000010d86e5a1 _PyFunction_FastCallKeywords + 257
12 org.python.python 0x000000010d92d8c2 call_function + 738
13 org.python.python 0x000000010d92a88d _PyEval_EvalFrameDefault + 25181
14 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
15 org.python.python 0x000000010d92d8c2 call_function + 738
16 org.python.python 0x000000010d92a873 _PyEval_EvalFrameDefault + 25155
17 org.python.python 0x000000010d92e413 _PyEval_EvalCodeWithName + 2467
18 org.python.python 0x000000010d86e17b _PyFunction_FastCallDict + 523
19 org.python.python 0x000000010d92ab9e _PyEval_EvalFrameDefault + 25966
20 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
21 org.python.python 0x000000010d92d8c2 call_function + 738
22 org.python.python 0x000000010d92a873 _PyEval_EvalFrameDefault + 25155
23 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
24 org.python.python 0x000000010d92d8c2 call_function + 738
25 org.python.python 0x000000010d92a873 _PyEval_EvalFrameDefault + 25155
26 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
27 org.python.python 0x000000010d86e004 _PyFunction_FastCallDict + 148
28 org.python.python 0x000000010d86f4bf _PyObject_Call_Prepend + 143
29 org.python.python 0x000000010d86e707 PyObject_Call + 135
30 org.python.python 0x000000010d9b5b77 t_bootstrap + 71
31 org.python.python 0x000000010d96c939 pythread_wrapper + 25
32 libsystem_pthread.dylib 0x00007fff733eed76 _pthread_start + 125
33 libsystem_pthread.dylib 0x00007fff733eb5d7 thread_start + 15
Thread 3:
0 libsystem_kernel.dylib 0x00007fff7332e8f6 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff733ef082 _pthread_cond_wait + 701
2 org.python.python 0x000000010d96ce01 PyThread_acquire_lock_timed + 673
3 org.python.python 0x000000010d9b620f acquire_timed + 111
4 org.python.python 0x000000010d9b6320 lock_PyThread_acquire_lock + 48
5 org.python.python 0x000000010d86f1dd _PyMethodDef_RawFastCallKeywords + 685
6 org.python.python 0x000000010d874d42 _PyMethodDescr_FastCallKeywords + 82
7 org.python.python 0x000000010d92d8ec call_function + 780
8 org.python.python 0x000000010d92a873 _PyEval_EvalFrameDefault + 25155
9 org.python.python 0x000000010d92e413 _PyEval_EvalCodeWithName + 2467
10 org.python.python 0x000000010d86e5a1 _PyFunction_FastCallKeywords + 257
11 org.python.python 0x000000010d92d8c2 call_function + 738
12 org.python.python 0x000000010d92a873 _PyEval_EvalFrameDefault + 25155
13 org.python.python 0x000000010d92e413 _PyEval_EvalCodeWithName + 2467
14 org.python.python 0x000000010d86e5a1 _PyFunction_FastCallKeywords + 257
15 org.python.python 0x000000010d92d8c2 call_function + 738
16 org.python.python 0x000000010d92a9d4 _PyEval_EvalFrameDefault + 25508
17 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
18 org.python.python 0x000000010d92d8c2 call_function + 738
19 org.python.python 0x000000010d92a873 _PyEval_EvalFrameDefault + 25155
20 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
21 org.python.python 0x000000010d92d8c2 call_function + 738
22 org.python.python 0x000000010d92a873 _PyEval_EvalFrameDefault + 25155
23 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
24 org.python.python 0x000000010d92d8c2 call_function + 738
25 org.python.python 0x000000010d92a873 _PyEval_EvalFrameDefault + 25155
26 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
27 org.python.python 0x000000010d86e004 _PyFunction_FastCallDict + 148
28 org.python.python 0x000000010d86f4bf _PyObject_Call_Prepend + 143
29 org.python.python 0x000000010d86e707 PyObject_Call + 135
30 org.python.python 0x000000010d9b5b77 t_bootstrap + 71
31 org.python.python 0x000000010d96c939 pythread_wrapper + 25
32 libsystem_pthread.dylib 0x00007fff733eed76 _pthread_start + 125
33 libsystem_pthread.dylib 0x00007fff733eb5d7 thread_start + 15
Thread 4:
0 libsystem_kernel.dylib 0x00007fff7332b146 mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff7332b6ac mach_msg + 60
2 com.apple.CoreFoundation 0x00007fff3bee419b __CFRunLoopServiceMachPort + 322
3 com.apple.CoreFoundation 0x00007fff3bee3737 __CFRunLoopRun + 1695
4 com.apple.CoreFoundation 0x00007fff3bee2e13 CFRunLoopRunSpecific + 499
5 com.apple.CoreFoundation 0x00007fff3bee2bea CFRunLoopRun + 40
6 _watchdog_fsevents.cpython-37m-darwin.so 0x00000001323a5915 watchdog_read_events + 149
7 org.python.python 0x000000010d86f1cc _PyMethodDef_RawFastCallKeywords + 668
8 org.python.python 0x000000010d86e5da _PyCFunction_FastCallKeywords + 42
9 org.python.python 0x000000010d92d8b4 call_function + 724
10 org.python.python 0x000000010d92a88d _PyEval_EvalFrameDefault + 25181
11 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
12 org.python.python 0x000000010d92d8c2 call_function + 738
13 org.python.python 0x000000010d92a873 _PyEval_EvalFrameDefault + 25155
14 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
15 org.python.python 0x000000010d92d8c2 call_function + 738
16 org.python.python 0x000000010d92a873 _PyEval_EvalFrameDefault + 25155
17 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
18 org.python.python 0x000000010d86e004 _PyFunction_FastCallDict + 148
19 org.python.python 0x000000010d86f4bf _PyObject_Call_Prepend + 143
20 org.python.python 0x000000010d86e707 PyObject_Call + 135
21 org.python.python 0x000000010d9b5b77 t_bootstrap + 71
22 org.python.python 0x000000010d96c939 pythread_wrapper + 25
23 libsystem_pthread.dylib 0x00007fff733eed76 _pthread_start + 125
24 libsystem_pthread.dylib 0x00007fff733eb5d7 thread_start + 15
Thread 5:
0 libsystem_kernel.dylib 0x00007fff7332b146 mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff7332b6ac mach_msg + 60
2 com.apple.CoreFoundation 0x00007fff3bee419b __CFRunLoopServiceMachPort + 322
3 com.apple.CoreFoundation 0x00007fff3bee3737 __CFRunLoopRun + 1695
4 com.apple.CoreFoundation 0x00007fff3bee2e13 CFRunLoopRunSpecific + 499
5 com.apple.CoreFoundation 0x00007fff3bee2bea CFRunLoopRun + 40
6 _watchdog_fsevents.cpython-37m-darwin.so 0x00000001323a5915 watchdog_read_events + 149
7 org.python.python 0x000000010d86f1cc _PyMethodDef_RawFastCallKeywords + 668
8 org.python.python 0x000000010d86e5da _PyCFunction_FastCallKeywords + 42
9 org.python.python 0x000000010d92d8b4 call_function + 724
10 org.python.python 0x000000010d92a88d _PyEval_EvalFrameDefault + 25181
11 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
12 org.python.python 0x000000010d92d8c2 call_function + 738
13 org.python.python 0x000000010d92a873 _PyEval_EvalFrameDefault + 25155
14 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
15 org.python.python 0x000000010d92d8c2 call_function + 738
16 org.python.python 0x000000010d92a873 _PyEval_EvalFrameDefault + 25155
17 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
18 org.python.python 0x000000010d86e004 _PyFunction_FastCallDict + 148
19 org.python.python 0x000000010d86f4bf _PyObject_Call_Prepend + 143
20 org.python.python 0x000000010d86e707 PyObject_Call + 135
21 org.python.python 0x000000010d9b5b77 t_bootstrap + 71
22 org.python.python 0x000000010d96c939 pythread_wrapper + 25
23 libsystem_pthread.dylib 0x00007fff733eed76 _pthread_start + 125
24 libsystem_pthread.dylib 0x00007fff733eb5d7 thread_start + 15
Thread 6:
0 libsystem_kernel.dylib 0x00007fff7332b146 mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff7332b6ac mach_msg + 60
2 com.apple.CoreFoundation 0x00007fff3bee419b __CFRunLoopServiceMachPort + 322
3 com.apple.CoreFoundation 0x00007fff3bee3737 __CFRunLoopRun + 1695
4 com.apple.CoreFoundation 0x00007fff3bee2e13 CFRunLoopRunSpecific + 499
5 com.apple.CoreFoundation 0x00007fff3bee2bea CFRunLoopRun + 40
6 _watchdog_fsevents.cpython-37m-darwin.so 0x00000001323a5915 watchdog_read_events + 149
7 org.python.python 0x000000010d86f1cc _PyMethodDef_RawFastCallKeywords + 668
8 org.python.python 0x000000010d86e5da _PyCFunction_FastCallKeywords + 42
9 org.python.python 0x000000010d92d8b4 call_function + 724
10 org.python.python 0x000000010d92a88d _PyEval_EvalFrameDefault + 25181
11 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
12 org.python.python 0x000000010d92d8c2 call_function + 738
13 org.python.python 0x000000010d92a873 _PyEval_EvalFrameDefault + 25155
14 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
15 org.python.python 0x000000010d92d8c2 call_function + 738
16 org.python.python 0x000000010d92a873 _PyEval_EvalFrameDefault + 25155
17 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
18 org.python.python 0x000000010d86e004 _PyFunction_FastCallDict + 148
19 org.python.python 0x000000010d86f4bf _PyObject_Call_Prepend + 143
20 org.python.python 0x000000010d86e707 PyObject_Call + 135
21 org.python.python 0x000000010d9b5b77 t_bootstrap + 71
22 org.python.python 0x000000010d96c939 pythread_wrapper + 25
23 libsystem_pthread.dylib 0x00007fff733eed76 _pthread_start + 125
24 libsystem_pthread.dylib 0x00007fff733eb5d7 thread_start + 15
Thread 7 Crashed:
0 groupby.cpython-37m-darwin.so 0x000000011b1596cf __pyx_fuse_9__pyx_pw_6pandas_5_libs_7groupby_125group_quantile + 6719
1 algos.cpython-37m-darwin.so 0x0000000119e8937c __pyx_FusedFunction_call + 812
2 org.python.python 0x000000010d86e707 PyObject_Call + 135
3 org.python.python 0x000000010d9a45c0 partial_call + 256
4 org.python.python 0x000000010d86e707 PyObject_Call + 135
5 org.python.python 0x000000010d92ab9e _PyEval_EvalFrameDefault + 25966
6 org.python.python 0x000000010d92e413 _PyEval_EvalCodeWithName + 2467
7 org.python.python 0x000000010d86e5a1 _PyFunction_FastCallKeywords + 257
8 org.python.python 0x000000010d92d8c2 call_function + 738
9 org.python.python 0x000000010d92a9d4 _PyEval_EvalFrameDefault + 25508
10 org.python.python 0x000000010d92e413 _PyEval_EvalCodeWithName + 2467
11 org.python.python 0x000000010d86e5a1 _PyFunction_FastCallKeywords + 257
12 org.python.python 0x000000010d92d8c2 call_function + 738
13 org.python.python 0x000000010d92a88d _PyEval_EvalFrameDefault + 25181
14 org.python.python 0x000000010d92e413 _PyEval_EvalCodeWithName + 2467
15 org.python.python 0x000000010d86e5a1 _PyFunction_FastCallKeywords + 257
16 org.python.python 0x000000010d92d8c2 call_function + 738
17 org.python.python 0x000000010d92a9d4 _PyEval_EvalFrameDefault + 25508
18 org.python.python 0x000000010d92e413 _PyEval_EvalCodeWithName + 2467
19 org.python.python 0x000000010d86e17b _PyFunction_FastCallDict + 523
20 org.python.python 0x000000010d92ab9e _PyEval_EvalFrameDefault + 25966
21 org.python.python 0x000000010d92e413 _PyEval_EvalCodeWithName + 2467
22 org.python.python 0x000000010d86e17b _PyFunction_FastCallDict + 523
23 org.python.python 0x000000010d92ab9e _PyEval_EvalFrameDefault + 25966
24 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
25 org.python.python 0x000000010d92d8c2 call_function + 738
26 org.python.python 0x000000010d92a873 _PyEval_EvalFrameDefault + 25155
27 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
28 org.python.python 0x000000010d92d8c2 call_function + 738
29 org.python.python 0x000000010d92a873 _PyEval_EvalFrameDefault + 25155
30 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
31 org.python.python 0x000000010d92d8c2 call_function + 738
32 org.python.python 0x000000010d92a873 _PyEval_EvalFrameDefault + 25155
33 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
34 org.python.python 0x000000010d86e004 _PyFunction_FastCallDict + 148
35 org.python.python 0x000000010d86f4bf _PyObject_Call_Prepend + 143
36 org.python.python 0x000000010d8bc926 slot_tp_call + 150
37 org.python.python 0x000000010d86e3f1 _PyObject_FastCallKeywords + 433
38 org.python.python 0x000000010d92d784 call_function + 420
39 org.python.python 0x000000010d92a88d _PyEval_EvalFrameDefault + 25181
40 org.python.python 0x000000010d87ca5e gen_send_ex + 206
41 org.python.python 0x000000010d92a06f _PyEval_EvalFrameDefault + 23103
42 org.python.python 0x000000010d92e413 _PyEval_EvalCodeWithName + 2467
43 org.python.python 0x000000010d86e5a1 _PyFunction_FastCallKeywords + 257
44 org.python.python 0x000000010d92d8c2 call_function + 738
45 org.python.python 0x000000010d92a92e _PyEval_EvalFrameDefault + 25342
46 org.python.python 0x000000010d92e413 _PyEval_EvalCodeWithName + 2467
47 org.python.python 0x000000010d86e5a1 _PyFunction_FastCallKeywords + 257
48 org.python.python 0x000000010d92d8c2 call_function + 738
49 org.python.python 0x000000010d92a873 _PyEval_EvalFrameDefault + 25155
50 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
51 org.python.python 0x000000010d92d8c2 call_function + 738
52 org.python.python 0x000000010d92a873 _PyEval_EvalFrameDefault + 25155
53 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
54 org.python.python 0x000000010d92d8c2 call_function + 738
55 org.python.python 0x000000010d92a88d _PyEval_EvalFrameDefault + 25181
56 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
57 org.python.python 0x000000010d92d8c2 call_function + 738
58 org.python.python 0x000000010d92a873 _PyEval_EvalFrameDefault + 25155
59 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
60 org.python.python 0x000000010d86e004 _PyFunction_FastCallDict + 148
61 org.python.python 0x000000010d86f4bf _PyObject_Call_Prepend + 143
62 org.python.python 0x000000010d8bdd61 slot_tp_init + 145
63 org.python.python 0x000000010d8b9749 type_call + 297
64 org.python.python 0x000000010d86e3f1 _PyObject_FastCallKeywords + 433
65 org.python.python 0x000000010d92d784 call_function + 420
66 org.python.python 0x000000010d92a88d _PyEval_EvalFrameDefault + 25181
67 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
68 org.python.python 0x000000010d92d8c2 call_function + 738
69 org.python.python 0x000000010d92a873 _PyEval_EvalFrameDefault + 25155
70 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
71 org.python.python 0x000000010d86e004 _PyFunction_FastCallDict + 148
72 org.python.python 0x000000010d86f4bf _PyObject_Call_Prepend + 143
73 org.python.python 0x000000010d86e707 PyObject_Call + 135
74 org.python.python 0x000000010d92ab9e _PyEval_EvalFrameDefault + 25966
75 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
76 org.python.python 0x000000010d92d8c2 call_function + 738
77 org.python.python 0x000000010d92a873 _PyEval_EvalFrameDefault + 25155
78 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
79 org.python.python 0x000000010d92d8c2 call_function + 738
80 org.python.python 0x000000010d92a873 _PyEval_EvalFrameDefault + 25155
81 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
82 org.python.python 0x000000010d86e004 _PyFunction_FastCallDict + 148
83 org.python.python 0x000000010d86f4bf _PyObject_Call_Prepend + 143
84 org.python.python 0x000000010d86e707 PyObject_Call + 135
85 org.python.python 0x000000010d9b5b77 t_bootstrap + 71
86 org.python.python 0x000000010d96c939 pythread_wrapper + 25
87 libsystem_pthread.dylib 0x00007fff733eed76 _pthread_start + 125
88 libsystem_pthread.dylib 0x00007fff733eb5d7 thread_start + 15
Thread 8:
0 _multiarray_umath.cpython-37m-darwin.so 0x000000010ea13664 BOOL_logical_not + 612
1 _multiarray_umath.cpython-37m-darwin.so 0x000000010eab05a1 trivial_two_operand_loop + 273
2 _multiarray_umath.cpython-37m-darwin.so 0x000000010eaa9140 PyUFunc_GenericFunction + 15792
3 _multiarray_umath.cpython-37m-darwin.so 0x000000010eaabc68 ufunc_generic_call + 136
4 org.python.python 0x000000010d86def9 _PyObject_FastCallDict + 297
5 org.python.python 0x000000010d87014c object_vacall + 316
6 org.python.python 0x000000010d870334 PyObject_CallFunctionObjArgs + 148
7 org.python.python 0x000000010d86f225 _PyMethodDef_RawFastCallKeywords + 757
8 org.python.python 0x000000010d86e5da _PyCFunction_FastCallKeywords + 42
9 org.python.python 0x000000010d92d8b4 call_function + 724
10 org.python.python 0x000000010d92a88d _PyEval_EvalFrameDefault + 25181
11 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
12 org.python.python 0x000000010d86e004 _PyFunction_FastCallDict + 148
13 org.python.python 0x000000010d86f3df _PyObject_FastCall_Prepend + 127
14 org.python.python 0x000000010d8c0316 slot_nb_invert + 134
15 org.python.python 0x000000010d925152 _PyEval_EvalFrameDefault + 2850
16 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
17 org.python.python 0x000000010d92d8c2 call_function + 738
18 org.python.python 0x000000010d92a92e _PyEval_EvalFrameDefault + 25342
19 org.python.python 0x000000010d92e413 _PyEval_EvalCodeWithName + 2467
20 org.python.python 0x000000010d86e5a1 _PyFunction_FastCallKeywords + 257
21 org.python.python 0x000000010d92d8c2 call_function + 738
22 org.python.python 0x000000010d92a9d4 _PyEval_EvalFrameDefault + 25508
23 org.python.python 0x000000010d92e413 _PyEval_EvalCodeWithName + 2467
24 org.python.python 0x000000010d86e5a1 _PyFunction_FastCallKeywords + 257
25 org.python.python 0x000000010d92d8c2 call_function + 738
26 org.python.python 0x000000010d92a9d4 _PyEval_EvalFrameDefault + 25508
27 org.python.python 0x000000010d92e413 _PyEval_EvalCodeWithName + 2467
28 org.python.python 0x000000010d86e5a1 _PyFunction_FastCallKeywords + 257
29 org.python.python 0x000000010d92d8c2 call_function + 738
30 org.python.python 0x000000010d92a9d4 _PyEval_EvalFrameDefault + 25508
31 org.python.python 0x000000010d92e413 _PyEval_EvalCodeWithName + 2467
32 org.python.python 0x000000010d86e17b _PyFunction_FastCallDict + 523
33 org.python.python 0x000000010d92ab9e _PyEval_EvalFrameDefault + 25966
34 org.python.python 0x000000010d92e413 _PyEval_EvalCodeWithName + 2467
35 org.python.python 0x000000010d86e17b _PyFunction_FastCallDict + 523
36 org.python.python 0x000000010d92ab9e _PyEval_EvalFrameDefault + 25966
37 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
38 org.python.python 0x000000010d92d8c2 call_function + 738
39 org.python.python 0x000000010d92a873 _PyEval_EvalFrameDefault + 25155
40 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
41 org.python.python 0x000000010d92d8c2 call_function + 738
42 org.python.python 0x000000010d92a873 _PyEval_EvalFrameDefault + 25155
43 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
44 org.python.python 0x000000010d92d8c2 call_function + 738
45 org.python.python 0x000000010d92a873 _PyEval_EvalFrameDefault + 25155
46 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
47 org.python.python 0x000000010d86e004 _PyFunction_FastCallDict + 148
48 org.python.python 0x000000010d86f4bf _PyObject_Call_Prepend + 143
49 org.python.python 0x000000010d8bc926 slot_tp_call + 150
50 org.python.python 0x000000010d86e3f1 _PyObject_FastCallKeywords + 433
51 org.python.python 0x000000010d92d784 call_function + 420
52 org.python.python 0x000000010d92a88d _PyEval_EvalFrameDefault + 25181
53 org.python.python 0x000000010d87ca5e gen_send_ex + 206
54 org.python.python 0x000000010d92a06f _PyEval_EvalFrameDefault + 23103
55 org.python.python 0x000000010d92e413 _PyEval_EvalCodeWithName + 2467
56 org.python.python 0x000000010d86e5a1 _PyFunction_FastCallKeywords + 257
57 org.python.python 0x000000010d92d8c2 call_function + 738
58 org.python.python 0x000000010d92a92e _PyEval_EvalFrameDefault + 25342
59 org.python.python 0x000000010d92e413 _PyEval_EvalCodeWithName + 2467
60 org.python.python 0x000000010d86e5a1 _PyFunction_FastCallKeywords + 257
61 org.python.python 0x000000010d92d8c2 call_function + 738
62 org.python.python 0x000000010d92a873 _PyEval_EvalFrameDefault + 25155
63 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
64 org.python.python 0x000000010d92d8c2 call_function + 738
65 org.python.python 0x000000010d92a873 _PyEval_EvalFrameDefault + 25155
66 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
67 org.python.python 0x000000010d92d8c2 call_function + 738
68 org.python.python 0x000000010d92a88d _PyEval_EvalFrameDefault + 25181
69 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
70 org.python.python 0x000000010d92d8c2 call_function + 738
71 org.python.python 0x000000010d92a873 _PyEval_EvalFrameDefault + 25155
72 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
73 org.python.python 0x000000010d86e004 _PyFunction_FastCallDict + 148
74 org.python.python 0x000000010d86f4bf _PyObject_Call_Prepend + 143
75 org.python.python 0x000000010d8bdd61 slot_tp_init + 145
76 org.python.python 0x000000010d8b9749 type_call + 297
77 org.python.python 0x000000010d86e3f1 _PyObject_FastCallKeywords + 433
78 org.python.python 0x000000010d92d784 call_function + 420
79 org.python.python 0x000000010d92a88d _PyEval_EvalFrameDefault + 25181
80 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
81 org.python.python 0x000000010d92d8c2 call_function + 738
82 org.python.python 0x000000010d92a873 _PyEval_EvalFrameDefault + 25155
83 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
84 org.python.python 0x000000010d86e004 _PyFunction_FastCallDict + 148
85 org.python.python 0x000000010d86f4bf _PyObject_Call_Prepend + 143
86 org.python.python 0x000000010d86e707 PyObject_Call + 135
87 org.python.python 0x000000010d92ab9e _PyEval_EvalFrameDefault + 25966
88 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
89 org.python.python 0x000000010d92d8c2 call_function + 738
90 org.python.python 0x000000010d92a873 _PyEval_EvalFrameDefault + 25155
91 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
92 org.python.python 0x000000010d92d8c2 call_function + 738
93 org.python.python 0x000000010d92a873 _PyEval_EvalFrameDefault + 25155
94 org.python.python 0x000000010d86ea10 function_code_fastcall + 128
95 org.python.python 0x000000010d86e004 _PyFunction_FastCallDict + 148
96 org.python.python 0x000000010d86f4bf _PyObject_Call_Prepend + 143
97 org.python.python 0x000000010d86e707 PyObject_Call + 135
98 org.python.python 0x000000010d9b5b77 t_bootstrap + 71
99 org.python.python 0x000000010d96c939 pythread_wrapper + 25
100 libsystem_pthread.dylib 0x00007fff733eed76 _pthread_start + 125
101 libsystem_pthread.dylib 0x00007fff733eb5d7 thread_start + 15
Thread 7 crashed with X86 Thread State (64-bit):
rax: 0x00007fc23e50d830 rbx: 0xffffffffffffffff rcx: 0x0000000148926000 rdx: 0x0000000131c66000
rdi: 0x000000000013dc10 rsi: 0xfffffffffffffff8 rbp: 0x0000700006b28490 rsp: 0x0000700006b27df0
r8: 0x0000000000000008 r9: 0x0000000000000008 r10: 0x0000000000000008 r11: 0x0000000000000001
r12: 0x000000013a6dd000 r13: 0x0000700006b282f8 r14: 0x00000001352d0760 r15: 0x000000000000880b
rip: 0x000000011b1596cf rfl: 0x0000000000010282 cr2: 0x000000013a6dcff8
Logical CPU: 4
Error Code: 0x00000006 (no mapping for user data read)
Trap Number: 14
Binary Images:
0x10d844000 - 0x10d844fff +org.python.python (3.7.4 - 3.7.4) <4B030EC4-815E-34B7-90E7-D0720C31E072> /Library/Frameworks/Python.framework/Versions/3.7/Resources/Python.app/Contents/MacOS/Python
0x10d84d000 - 0x10da26fff +org.python.python (3.7.4, [c] 2001-2019 Python Software Foundation. - 3.7.4) <AC1AEBEB-FF5A-32AD-BAE0-C6A0BCA86B84> /Library/Frameworks/Python.framework/Versions/3.7/Python
0x10de68000 - 0x10de69fff +_heapq.cpython-37m-darwin.so (0) <E8B35F18-1B5A-3C9E-B1F4-0BE0432459A2> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_heapq.cpython-37m-darwin.so
0x10deed000 - 0x10def0ff7 +zlib.cpython-37m-darwin.so (0) <993EF100-1498-3D6A-91FD-79558CAC8F13> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/zlib.cpython-37m-darwin.so
0x10df42000 - 0x10df43ff7 +_bz2.cpython-37m-darwin.so (0) <F89816AF-0BA9-3228-BAE7-54BA0D68EF67> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_bz2.cpython-37m-darwin.so
0x10df47000 - 0x10df77ff7 +_lzma.cpython-37m-darwin.so (0) <AEA78736-809A-3F3E-A2A3-BDA83B0ECBA8> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_lzma.cpython-37m-darwin.so
0x10df81000 - 0x10df81fff +grp.cpython-37m-darwin.so (0) <CF2821DC-6D7D-36C4-9F67-5D20E43D70B2> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/grp.cpython-37m-darwin.so
0x10df93000 - 0x10df96ffb +_comb.cpython-37m-darwin.so (0) <007AB3F6-F95A-3A84-A311-9A47B603490E> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/special/_comb.cpython-37m-darwin.so
0x10df9b000 - 0x10df9bff7 +_raw_ecb.cpython-37m-darwin.so (???) <8F4B4796-E875-304A-84A1-1612D5965846> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/Crypto/Cipher/_raw_ecb.cpython-37m-darwin.so
0x10e01d000 - 0x10e021fff +_struct.cpython-37m-darwin.so (0) <2379780F-4AB4-394B-B5AB-55A517D6627E> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_struct.cpython-37m-darwin.so
0x10e02a000 - 0x10e02dff7 +binascii.cpython-37m-darwin.so (0) <58A5F4AD-285A-35E3-90C4-08A3D3D14BF2> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/binascii.cpython-37m-darwin.so
0x10e0ba000 - 0x10e0bbff7 +_posixsubprocess.cpython-37m-darwin.so (0) <11920A4C-3AD4-3C87-95E5-418D30950610> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_posixsubprocess.cpython-37m-darwin.so
0x10e0bf000 - 0x10e0c2fff +select.cpython-37m-darwin.so (0) <473A1E84-EAC7-30DD-A0C0-111ECA9BC60A> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/select.cpython-37m-darwin.so
0x10e0c8000 - 0x10e0ccfff +math.cpython-37m-darwin.so (0) <C780CA87-2A8D-342E-930E-7EDBB84B3896> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/math.cpython-37m-darwin.so
0x10e113000 - 0x10e121ff7 +_datetime.cpython-37m-darwin.so (0) <C1603837-F8C7-3FFF-8C6B-D527535D7535> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_datetime.cpython-37m-darwin.so
0x10e12d000 - 0x10e156ff7 +pyexpat.cpython-37m-darwin.so (0) <DFD21217-38D1-329A-844A-67778791E921> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/pyexpat.cpython-37m-darwin.so
0x10e1e9000 - 0x10e1ebff7 +_hashlib.cpython-37m-darwin.so (0) <A6066959-BCC0-3790-9FB2-8B8A9ECBF097> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_hashlib.cpython-37m-darwin.so
0x10e1f0000 - 0x10e248ff7 +libssl.1.1.dylib (0) <1DF55B16-0F3A-3620-A4C8-6CEDF39B9620> /Library/Frameworks/Python.framework/Versions/3.7/lib/libssl.1.1.dylib
0x10e271000 - 0x10e4871df +libcrypto.1.1.dylib (0) <34708DE8-CBA8-3112-91FA-3333E07F30DB> /Library/Frameworks/Python.framework/Versions/3.7/lib/libcrypto.1.1.dylib
0x10e517000 - 0x10e51cff7 +_blake2.cpython-37m-darwin.so (0) <5D4A9B1B-FE9F-34EA-BD75-7B3CDDBB7CD0> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_blake2.cpython-37m-darwin.so
0x10e521000 - 0x10e531ff7 +_sha3.cpython-37m-darwin.so (0) <E32B9196-5FD3-38FF-BF4E-EF74519A0AFA> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_sha3.cpython-37m-darwin.so
0x10e537000 - 0x10e537ff7 +_bisect.cpython-37m-darwin.so (0) <A4FCF31A-2AA6-3EAC-AF46-2F2D10EC1AB1> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_bisect.cpython-37m-darwin.so
0x10e53a000 - 0x10e53bff7 +_random.cpython-37m-darwin.so (0) <7E1DAB2E-F4F2-3DDD-BD85-C74BC8983933> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_random.cpython-37m-darwin.so
0x10e53f000 - 0x10e548ff7 +_socket.cpython-37m-darwin.so (0) <7B684803-C0A8-34D7-81CE-7A4EE7DEA614> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_socket.cpython-37m-darwin.so
0x10e615000 - 0x10e615ff7 +_opcode.cpython-37m-darwin.so (0) <11A650B3-FF7B-3DF1-81E2-A906553221C9> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_opcode.cpython-37m-darwin.so
0x10e6c3000 - 0x10e6c4ff3 +_zeros.cpython-37m-darwin.so (0) <05F50EFF-5388-3F0E-8034-D9031383D3AA> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/optimize/_zeros.cpython-37m-darwin.so
0x10e6c7000 - 0x10e6c7ff7 +_raw_cbc.cpython-37m-darwin.so (???) <B161CC1C-8823-32C3-A77F-125C1F15F391> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/Crypto/Cipher/_raw_cbc.cpython-37m-darwin.so
0x10e814000 - 0x10e814ff3 +_api_implementation.cpython-37m-darwin.so (0) <7AD2BE44-57F1-385A-AD04-ECF361EFBF65> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/google/protobuf/internal/_api_implementation.cpython-37m-darwin.so
0x10e817000 - 0x10e817fff +_raw_cfb.cpython-37m-darwin.so (???) <D1F530FC-1F2F-3868-BF2C-6A3E1CA296E0> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/Crypto/Cipher/_raw_cfb.cpython-37m-darwin.so
0x10e8db000 - 0x10e8e0ff3 +messagestream.cpython-37m-darwin.so (0) <892D9031-1B21-35AE-9E89-8684E88BE576> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/_lib/messagestream.cpython-37m-darwin.so
0x10e8e7000 - 0x10e8e7ff7 +_raw_ofb.cpython-37m-darwin.so (???) <F59104DC-4122-34B0-92E5-5A2989E14249> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/Crypto/Cipher/_raw_ofb.cpython-37m-darwin.so
0x10e8ea000 - 0x10e8eaff7 +_strxor.cpython-37m-darwin.so (???) <3C58F5A3-8D98-33B2-814F-0EBBC5F20333> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/Crypto/Util/_strxor.cpython-37m-darwin.so
0x10e8ec000 - 0x10eb61fff +_multiarray_umath.cpython-37m-darwin.so (0) <671D7C13-F80F-39BB-AAAC-7812A00AF0AD> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/numpy/core/_multiarray_umath.cpython-37m-darwin.so
0x10ec73000 - 0x112701797 +libopenblasp-r0.3.7.dev.dylib (0) <0E19F9FE-2367-3794-9260-55F4BB058EF2> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/numpy/.dylibs/libopenblasp-r0.3.7.dev.dylib
0x112945000 - 0x112a5cff7 +libgfortran.3.dylib (0) <9ABE5EDE-AD43-391A-9E54-866711FAC32A> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/numpy/.dylibs/libgfortran.3.dylib
0x112ac0000 - 0x112af6fff +libquadmath.0.dylib (0) <7FFA409F-FB04-3B64-BE9A-3E3A494C975E> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/numpy/.dylibs/libquadmath.0.dylib
0x112b05000 - 0x112b1aff7 +libgcc_s.1.dylib (0) <7C6D7CB7-82DB-3290-8181-07646FEA1F80> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/numpy/.dylibs/libgcc_s.1.dylib
0x118ba5000 - 0x118bb8ff7 +_pickle.cpython-37m-darwin.so (0) <9C74285E-75A9-33BD-8836-AE129AFA3A86> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_pickle.cpython-37m-darwin.so
0x118cc4000 - 0x118cc4fff +_cpuid_c.cpython-37m-darwin.so (???) <E61506B0-F069-3A2D-847B-4006A2DBD5BF> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/Crypto/Util/_cpuid_c.cpython-37m-darwin.so
0x118d06000 - 0x118d13fff +_multiarray_tests.cpython-37m-darwin.so (0) <79FE98ED-E4E1-30CE-8345-D110F170574F> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/numpy/core/_multiarray_tests.cpython-37m-darwin.so
0x118d23000 - 0x118d33fff +_ctypes.cpython-37m-darwin.so (0) <B0740DFD-2C92-3A81-9E85-B7CAA9F7EF67> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_ctypes.cpython-37m-darwin.so
0x118dc4000 - 0x118dc5ff7 +lapack_lite.cpython-37m-darwin.so (0) <69D4AA05-FED8-3329-97EF-5F1D0B0C7D4D> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/numpy/linalg/lapack_lite.cpython-37m-darwin.so
0x118dc9000 - 0x118de2fff +_umath_linalg.cpython-37m-darwin.so (0) <F2C3E3AE-7A1D-3981-B31A-DC92F46EAE81> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/numpy/linalg/_umath_linalg.cpython-37m-darwin.so
0x118eb0000 - 0x118ef4ff7 +_decimal.cpython-37m-darwin.so (0) <F035ADB0-3946-309B-8C35-E789BD3A7696> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_decimal.cpython-37m-darwin.so
0x118f53000 - 0x118f62ff7 +pocketfft_internal.cpython-37m-darwin.so (0) <190AE76A-4D5F-3035-A1FC-6205292B1543> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/numpy/fft/pocketfft_internal.cpython-37m-darwin.so
0x118fa6000 - 0x119018fff +mtrand.cpython-37m-darwin.so (0) <7A0F0AE5-72B5-3D7B-B3B8-475F664F9AFA> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/numpy/random/mtrand.cpython-37m-darwin.so
0x119069000 - 0x1190a1fff +common.cpython-37m-darwin.so (0) <7A31D2A9-7507-3A37-B23B-C63CD062B806> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/numpy/random/common.cpython-37m-darwin.so
0x1190b6000 - 0x119114ff7 +bounded_integers.cpython-37m-darwin.so (0) <8A5547BC-C82A-3E41-8320-A788E2DC1801> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/numpy/random/bounded_integers.cpython-37m-darwin.so
0x119136000 - 0x11914aff7 +mt19937.cpython-37m-darwin.so (0) <BC393547-41A0-3F0F-9652-201F8B610385> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/numpy/random/mt19937.cpython-37m-darwin.so
0x119156000 - 0x119175ff7 +bit_generator.cpython-37m-darwin.so (0) <9AF84E7A-4923-34C9-9430-788D70CCB66B> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/numpy/random/bit_generator.cpython-37m-darwin.so
0x119190000 - 0x1191b2ff7 +entropy.cpython-37m-darwin.so (0) <A97081D3-BB5C-3BD4-962E-5B2A0C72FD26> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/numpy/random/entropy.cpython-37m-darwin.so
0x1191c8000 - 0x1191d5ff7 +philox.cpython-37m-darwin.so (0) <488F375C-7017-38DF-BA7B-74AF2913019F> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/numpy/random/philox.cpython-37m-darwin.so
0x1191e0000 - 0x1191ebfff +pcg64.cpython-37m-darwin.so (0) <BF7967AA-BF0B-3BF9-8EAE-AAF5A73302FB> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/numpy/random/pcg64.cpython-37m-darwin.so
0x1191f6000 - 0x1191feff7 +sfc64.cpython-37m-darwin.so (0) <6CB1F36F-C4FC-3CE7-B5BE-0FA005F65E2C> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/numpy/random/sfc64.cpython-37m-darwin.so
0x119208000 - 0x11928bfff +generator.cpython-37m-darwin.so (0) <868CE861-C95A-383B-935D-942F28314F69> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/numpy/random/generator.cpython-37m-darwin.so
0x11933d000 - 0x119348ff7 +_flinalg.cpython-37m-darwin.so (0) <9C1F46F8-2DA2-3943-8DBA-D6BF8932E0B7> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/linalg/_flinalg.cpython-37m-darwin.so
0x1194d2000 - 0x119508ffb +conversion.cpython-37m-darwin.so (0) <7E026496-33EB-37FB-B2B1-9E59112C1202> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pandas/_libs/tslibs/conversion.cpython-37m-darwin.so
0x119523000 - 0x119551fff +c_timestamp.cpython-37m-darwin.so (0) <6103BAF4-3AF5-3352-B179-4DE0A932BFF1> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pandas/_libs/tslibs/c_timestamp.cpython-37m-darwin.so
0x1195ac000 - 0x1195cbfff +nattype.cpython-37m-darwin.so (0) <2443C3F9-7228-3839-B38B-B0FDCD9B921B> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pandas/_libs/tslibs/nattype.cpython-37m-darwin.so
0x1195e5000 - 0x1195ecff7 +np_datetime.cpython-37m-darwin.so (0) <746367F4-693A-3E0E-B820-2114D5BC93E2> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pandas/_libs/tslibs/np_datetime.cpython-37m-darwin.so
0x1195f4000 - 0x11961aff3 +timezones.cpython-37m-darwin.so (0) <286416F5-248C-3583-A79A-37E3E95770D2> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pandas/_libs/tslibs/timezones.cpython-37m-darwin.so
0x119671000 - 0x1196b1ff7 +tzconversion.cpython-37m-darwin.so (0) <1CCBA52F-B8E6-32C2-BF26-7D6A4365B415> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pandas/_libs/tslibs/tzconversion.cpython-37m-darwin.so
0x1196cb000 - 0x119722ffb +timedeltas.cpython-37m-darwin.so (0) <9474E801-68EE-3035-87C0-FAB39EFFDC50> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pandas/_libs/tslibs/timedeltas.cpython-37m-darwin.so
0x119750000 - 0x119799ffb +offsets.cpython-37m-darwin.so (0) <F8F7176B-2E00-347F-B839-BF92D81E0CA2> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pandas/_libs/tslibs/offsets.cpython-37m-darwin.so
0x1197c8000 - 0x1197d0fff +ccalendar.cpython-37m-darwin.so (0) <39FE416F-D8BE-3B91-8324-09787BBDFFE5> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pandas/_libs/tslibs/ccalendar.cpython-37m-darwin.so
0x11981b000 - 0x119868ff3 +strptime.cpython-37m-darwin.so (0) <4F4ED8D8-D2C7-3B18-91AE-6C592082E58A> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pandas/_libs/tslibs/strptime.cpython-37m-darwin.so
0x1198d0000 - 0x1198fbff3 +fields.cpython-37m-darwin.so (0) <58EF15EB-CAF3-3AF8-BAFF-F6DD9456E8EE> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pandas/_libs/tslibs/fields.cpython-37m-darwin.so
0x119915000 - 0x119963ff3 +parsing.cpython-37m-darwin.so (0) <F1038D43-02A4-350A-93A7-110FBDC5EEAA> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pandas/_libs/tslibs/parsing.cpython-37m-darwin.so
0x11998d000 - 0x1199e1fff +period.cpython-37m-darwin.so (0) <509F2D3F-95A5-39CE-A910-B67DE9FC8930> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pandas/_libs/tslibs/period.cpython-37m-darwin.so
0x119a4b000 - 0x119a5efff +frequencies.cpython-37m-darwin.so (0) <E8080AA8-3BEC-3D95-AE57-52DDE03AAC30> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pandas/_libs/tslibs/frequencies.cpython-37m-darwin.so
0x119a6f000 - 0x119aa6ffb +timestamps.cpython-37m-darwin.so (0) <E9B5D2EF-6108-3BD1-9E5F-911D411D13F3> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pandas/_libs/tslibs/timestamps.cpython-37m-darwin.so
0x119ace000 - 0x119af9ff3 +resolution.cpython-37m-darwin.so (0) <616CA3A1-5E97-3E9B-8544-A58C13CA8FB6> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pandas/_libs/tslibs/resolution.cpython-37m-darwin.so
0x119b17000 - 0x119b8cfff +hashtable.cpython-37m-darwin.so (0) <6515F28C-9FA4-3D61-89B6-E329E4C532A9> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pandas/_libs/hashtable.cpython-37m-darwin.so
0x119bbd000 - 0x119bcaffb +missing.cpython-37m-darwin.so (0) <D129B9BF-A6A5-3FE3-9FEF-867119DCCFD5> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pandas/_libs/missing.cpython-37m-darwin.so
0x119bd4000 - 0x119c3dff3 +lib.cpython-37m-darwin.so (0) <A1B28D8E-0A89-39F0-A4D3-FDEFAE6464E3> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pandas/_libs/lib.cpython-37m-darwin.so
0x119cb6000 - 0x119cf0fff +tslib.cpython-37m-darwin.so (0) <B1872F61-F555-3139-AAE2-06F77C01DA82> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pandas/_libs/tslib.cpython-37m-darwin.so
0x119d0c000 - 0x119e90fff +algos.cpython-37m-darwin.so (0) <EC939FA9-67B7-3D9F-8DDD-3E552DEA7F01> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pandas/_libs/algos.cpython-37m-darwin.so
0x119f27000 - 0x11a0dcff7 +interval.cpython-37m-darwin.so (0) <60B34032-C2E3-3818-9D5C-D34771EEBC32> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pandas/_libs/interval.cpython-37m-darwin.so
0x11a193000 - 0x11a19bfff +properties.cpython-37m-darwin.so (0) <BEE72926-AD95-3673-B647-C9A705E770A4> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pandas/_libs/properties.cpython-37m-darwin.so
0x11a1e4000 - 0x11a200ff7 +hashing.cpython-37m-darwin.so (0) <88438F20-9EA1-31DB-BDF0-5C93BB68E102> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pandas/_libs/hashing.cpython-37m-darwin.so
0x11a213000 - 0x11a238fff +ops.cpython-37m-darwin.so (0) <04703BD6-9898-308A-AC6F-29C8BE32156F> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pandas/_libs/ops.cpython-37m-darwin.so
0x11a3cd000 - 0x11a453ff3 +index.cpython-37m-darwin.so (0) <20F36BD4-9F1D-314B-8392-0D63CC742C43> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pandas/_libs/index.cpython-37m-darwin.so
0x11a483000 - 0x11a6c4ff3 +join.cpython-37m-darwin.so (0) <344FAA02-156E-3C95-845E-E7619E27314E> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pandas/_libs/join.cpython-37m-darwin.so
0x11a845000 - 0x11a865fff +_elementpath.cpython-37m-darwin.so (???) <429F29F9-50B3-33CC-9E45-AEDA036695FB> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/lxml/_elementpath.cpython-37m-darwin.so
0x11a900000 - 0x11a901fff +_check_build.cpython-37m-darwin.so (0) <B87447C3-40DD-37C4-9E59-11EC294212EE> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/sklearn/__check_build/_check_build.cpython-37m-darwin.so
0x11a906000 - 0x11a9c3ffb +sparse.cpython-37m-darwin.so (0) <526BE788-0E0D-3680-9B30-20D25684ECC5> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pandas/_libs/sparse.cpython-37m-darwin.so
0x11aa4b000 - 0x11aa4cff7 +_raw_ctr.cpython-37m-darwin.so (???) <212D5173-BF56-324C-BF96-75DA28AD6D41> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/Crypto/Cipher/_raw_ctr.cpython-37m-darwin.so
0x11aa4f000 - 0x11aa4fff7 +_BLAKE2s.cpython-37m-darwin.so (???) <10F5EA93-0EB0-3E8A-A621-E0F5BEB14C86> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/Crypto/Hash/_BLAKE2s.cpython-37m-darwin.so
0x11aa52000 - 0x11aa54ff7 +_SHA1.cpython-37m-darwin.so (???) <29C10BF6-3352-3F5E-BB0B-663D9BA3B34E> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/Crypto/Hash/_SHA1.cpython-37m-darwin.so
0x11aa57000 - 0x11aa5efff +minpack2.cpython-37m-darwin.so (0) <B547A37A-E772-3C2D-A07D-F944F3D89961> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/optimize/minpack2.cpython-37m-darwin.so
0x11aae4000 - 0x11aae9fff +_json.cpython-37m-darwin.so (0) <58573D55-4505-383C-89CE-7B16ED7981AD> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_json.cpython-37m-darwin.so
0x11abee000 - 0x11abf3ff3 +indexing.cpython-37m-darwin.so (0) <3C9B3910-F390-33CB-B1A6-571B9D9AEF51> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pandas/_libs/indexing.cpython-37m-darwin.so
0x11ac3a000 - 0x11ac67ffb +internals.cpython-37m-darwin.so (0) <795FFB1B-2E84-3251-A206-06D464DD4426> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pandas/_libs/internals.cpython-37m-darwin.so
0x11acc1000 - 0x11acc2fff +_MD5.cpython-37m-darwin.so (???) <09E8FD08-E36A-35F9-807A-9EC5871408DE> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/Crypto/Hash/_MD5.cpython-37m-darwin.so
0x11acc5000 - 0x11adc2fff +unicodedata.cpython-37m-darwin.so (0) <B4AE629C-6564-3E2E-9A6E-AE586EE0AD79> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/unicodedata.cpython-37m-darwin.so
0x11adc8000 - 0x11adcbfff +_csv.cpython-37m-darwin.so (0) <F629A3FE-5724-37C1-8940-6E5C172BFD77> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_csv.cpython-37m-darwin.so
0x11ae51000 - 0x11ae5eff7 +_ssl.cpython-37m-darwin.so (0) <D1740549-C698-31F9-95C7-88A38F5385F5> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_ssl.cpython-37m-darwin.so
0x11aeaf000 - 0x11aeb1ff7 +mmap.cpython-37m-darwin.so (0) <BA9E74DF-BF4B-34B0-BC25-AF2E4712468A> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/mmap.cpython-37m-darwin.so
0x11aef5000 - 0x11aef5ff7 +_scproxy.cpython-37m-darwin.so (0) <1C12C693-374D-3CDA-8235-D20E4F60F2D7> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_scproxy.cpython-37m-darwin.so
0x11aef8000 - 0x11af25fff +reshape.cpython-37m-darwin.so (0) <3EFC5C55-6B9E-38BB-9CEA-F1AD738C57E2> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pandas/_libs/reshape.cpython-37m-darwin.so
0x11afbe000 - 0x11b04eff7 +window.cpython-37m-darwin.so (0) <FD91798B-305C-395E-98AD-DFD6E27FBCFB> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pandas/_libs/window.cpython-37m-darwin.so
0x11b07c000 - 0x11b08bff7 +skiplist.cpython-37m-darwin.so (0) <1C8A7441-A005-31E9-B1DC-2E12A64BE530> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pandas/_libs/skiplist.cpython-37m-darwin.so
0x11b0d5000 - 0x11b1b3ff7 +groupby.cpython-37m-darwin.so (0) <38D47B27-F8F5-3209-A258-40AF5104539B> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pandas/_libs/groupby.cpython-37m-darwin.so
0x11b223000 - 0x11b266ff3 +reduction.cpython-37m-darwin.so (0) <1FDC291C-62F5-34E4-A080-528C5372305E> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pandas/_libs/reduction.cpython-37m-darwin.so
0x11b346000 - 0x11b3b1ff3 +parsers.cpython-37m-darwin.so (0) <D436D433-AFB0-30CB-94AC-EE18B760AA2C> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pandas/_libs/parsers.cpython-37m-darwin.so
0x11b41d000 - 0x11b42bfff +json.cpython-37m-darwin.so (0) <5457E458-ABB1-3B38-9B4D-0DF00198FA6A> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pandas/_libs/json.cpython-37m-darwin.so
0x11b435000 - 0x11b455ff3 +writers.cpython-37m-darwin.so (0) <63C148BE-23C9-35A1-B4CE-915F2DBAF243> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pandas/_libs/writers.cpython-37m-darwin.so
0x11b46c000 - 0x11b46cffb +_move.cpython-37m-darwin.so (0) <9F92A2B0-79E4-3647-901D-37ECBF8387FE> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pandas/util/_move.cpython-37m-darwin.so
0x11b4af000 - 0x11b4baffb +_packer.cpython-37m-darwin.so (0) <502E1D7D-FF86-386D-A102-CDEC1D2A4614> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pandas/io/msgpack/_packer.cpython-37m-darwin.so
0x11b4c5000 - 0x11b4d4ff7 +_unpacker.cpython-37m-darwin.so (0) <95ECB8B7-7DD6-3AB7-8C88-7A58EB442678> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pandas/io/msgpack/_unpacker.cpython-37m-darwin.so
0x11b5e2000 - 0x11b5f1ff7 +testing.cpython-37m-darwin.so (0) <CCEF6A15-EB6A-39B1-B296-D271DBEC2F6E> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pandas/_libs/testing.cpython-37m-darwin.so
0x11b87a000 - 0x11b87bff3 +cprocessors.cpython-37m-darwin.so (0) <D739212E-3C17-39B1-B068-EE1948A71018> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/sqlalchemy/cprocessors.cpython-37m-darwin.so
0x11b97f000 - 0x11b97ffff +cutils.cpython-37m-darwin.so (0) <7FC0CA82-C081-30D2-896C-E8E780682181> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/sqlalchemy/cutils.cpython-37m-darwin.so
0x11ba02000 - 0x11ba03ff7 +cresultproxy.cpython-37m-darwin.so (0) <90BBE3F6-E1A5-3E3D-8FEF-7095622F11E2> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/sqlalchemy/cresultproxy.cpython-37m-darwin.so
0x11bd47000 - 0x11bd48ff7 +_queue.cpython-37m-darwin.so (0) <B9D80A7C-A744-3A24-AA10-1CEF3CFFD022> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_queue.cpython-37m-darwin.so
0x11bdcc000 - 0x11bdccfff +_uuid.cpython-37m-darwin.so (0) <4283C23E-E755-3642-9450-F25DED17AE4D> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_uuid.cpython-37m-darwin.so
0x11be6e000 - 0x11befc93f dyld (732.8) <42C11B81-6928-369F-B03E-D57355572700> /usr/lib/dyld
0x11bfef000 - 0x11c2d9ff3 +cygrpc.cpython-37m-darwin.so (0) <60A0DCC9-ACBA-33CA-9005-DB149C9B8520> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/grpc/_cython/cygrpc.cpython-37m-darwin.so
0x11c73a000 - 0x11c898ff7 +_message.cpython-37m-darwin.so (0) <9E0844FB-B4A0-3A08-9583-7EE6C3431BB2> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/google/protobuf/pyext/_message.cpython-37m-darwin.so
0x11cda2000 - 0x11cda4ff3 +lgamma.cpython-37m-darwin.so (0) <B68C97ED-5D34-3885-B77F-0799388D8581> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/sklearn/utils/lgamma.cpython-37m-darwin.so
0x11cdaa000 - 0x11cdafff7 +array.cpython-37m-darwin.so (0) <7934FE3A-C258-3F4F-AD15-47D5BE9FCE15> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/array.cpython-37m-darwin.so
0x11cdb9000 - 0x11cdb9fff +_Salsa20.cpython-37m-darwin.so (???) <2C457652-7378-3C11-9BF6-EEF20A1ECC2D> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/Crypto/Cipher/_Salsa20.cpython-37m-darwin.so
0x11ce7d000 - 0x11ce7ffff +_SHA256.cpython-37m-darwin.so (???) <DADFF09A-A82C-31DB-AA28-58613525E993> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/Crypto/Hash/_SHA256.cpython-37m-darwin.so
0x11ce82000 - 0x11ce83ff7 +_scrypt.cpython-37m-darwin.so (???) <CDA31FE5-A642-3D51-A95E-A5274A12CF21> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/Crypto/Protocol/_scrypt.cpython-37m-darwin.so
0x11d106000 - 0x11d112ff7 +_ccallback_c.cpython-37m-darwin.so (0) <56789943-E473-3E97-B057-4D00CD59C800> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/_lib/_ccallback_c.cpython-37m-darwin.so
0x11d11e000 - 0x11d11efff +_ghash_portable.cpython-37m-darwin.so (???) <9308BC75-0900-3678-B259-8A8B8B96CC86> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/Crypto/Hash/_ghash_portable.cpython-37m-darwin.so
0x11d1a1000 - 0x11d1a8fff +_elementtree.cpython-37m-darwin.so (0) <BCBD7BDA-D6E4-3986-AE4F-BABD7C9F1B29> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_elementtree.cpython-37m-darwin.so
0x11d1f2000 - 0x11d1fbffb +moduleTNC.cpython-37m-darwin.so (0) <2514C81C-13FD-3A19-8658-0F5A796846E0> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/optimize/moduleTNC.cpython-37m-darwin.so
0x11e5e5000 - 0x11e5e5fff +_ghash_clmul.cpython-37m-darwin.so (???) <245E6E62-37E7-37E1-8EF5-02F1D1F27BAA> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/Crypto/Hash/_ghash_clmul.cpython-37m-darwin.so
0x11e5e8000 - 0x11e5e9ff7 +_raw_ocb.cpython-37m-darwin.so (???) <559E6F1E-78A8-3B46-87AA-B1A16C69643A> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/Crypto/Cipher/_raw_ocb.cpython-37m-darwin.so
0x11e5ec000 - 0x11e5ecfff +_ARC4.cpython-37m-darwin.so (???) <9A105AD4-8C53-3276-8F5E-A60AE4D07299> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/Crypto/Cipher/_ARC4.cpython-37m-darwin.so
0x11e5ef000 - 0x11e5fbff3 +murmurhash.cpython-37m-darwin.so (0) <8A36719F-1606-3E51-9B60-4A105A38E8F9> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/sklearn/utils/murmurhash.cpython-37m-darwin.so
0x11e61b000 - 0x11e61cff7 +_multiprocessing.cpython-37m-darwin.so (0) <31A2882A-FE2F-3243-BB8A-D24B0B99DD41> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_multiprocessing.cpython-37m-darwin.so
0x11eb23000 - 0x11eb6affb +libomp.dylib (0) <BC7C4D7D-BD45-3672-8D71-70A964A65AC1> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/sklearn/.dylibs/libomp.dylib
0x11eb97000 - 0x11eb9bffb +mio_utils.cpython-37m-darwin.so (0) <88C81605-0DFE-389B-AD34-67A521FADBD0> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/io/matlab/mio_utils.cpython-37m-darwin.so
0x11eba2000 - 0x11eba3fff +_speedups.cpython-37m-darwin.so (???) <E9B73517-643A-3FD1-8B18-600595CA2B65> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/markupsafe/_speedups.cpython-37m-darwin.so
0x11f1e6000 - 0x11f200ff3 +_tools.cpython-37m-darwin.so (0) <9DAA9185-9847-33AB-AEFF-8CC3D71E6E2D> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/sparse/csgraph/_tools.cpython-37m-darwin.so
0x11f2a5000 - 0x11f2aaff7 +_datadir.cpython-37m-darwin.so (???) <61E3FE1E-4E30-3A18-933B-49A79C824B33> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pyproj/_datadir.cpython-37m-darwin.so
0x11fb7f000 - 0x11ff80ff7 +_sparsetools.cpython-37m-darwin.so (0) <9B6DC85E-8A9B-38E6-8A0B-45476F0D491C> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/sparse/_sparsetools.cpython-37m-darwin.so
0x12009e000 - 0x120101ffb +_csparsetools.cpython-37m-darwin.so (0) <4843EB5F-2CF8-3625-A14C-C2BB1C00AB43> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/sparse/_csparsetools.cpython-37m-darwin.so
0x12012d000 - 0x12017dff3 +_shortest_path.cpython-37m-darwin.so (0) <DDA3A585-1D73-39C8-9261-B78F2A102F1D> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/sparse/csgraph/_shortest_path.cpython-37m-darwin.so
0x1201e6000 - 0x1201ffff7 +_traversal.cpython-37m-darwin.so (0) <C10079CB-2153-3AE6-AA41-802DF15E48CA> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/sparse/csgraph/_traversal.cpython-37m-darwin.so
0x12020f000 - 0x12022cffb +_min_spanning_tree.cpython-37m-darwin.so (0) <DE0724C0-F449-3C3C-8D5E-3FFBBF8964A7> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/sparse/csgraph/_min_spanning_tree.cpython-37m-darwin.so
0x120241000 - 0x120276fff +_reordering.cpython-37m-darwin.so (0) <7F605572-00DF-31A8-80EF-6FB38BEA5B82> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/sparse/csgraph/_reordering.cpython-37m-darwin.so
0x120297000 - 0x12031ffff +ckdtree.cpython-37m-darwin.so (0) <593DFC90-CA73-3A14-9DE3-7AD597879471> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/spatial/ckdtree.cpython-37m-darwin.so
0x120362000 - 0x120426ff7 +qhull.cpython-37m-darwin.so (0) <AF26961F-68AA-3833-A1C7-257D526EEA9D> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/spatial/qhull.cpython-37m-darwin.so
0x12046c000 - 0x123efa797 +libopenblasp-r0.3.7.dev.dylib (0) <0E19F9FE-2367-3794-9260-55F4BB058EF2> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/.dylibs/libopenblasp-r0.3.7.dev.dylib
0x12413e000 - 0x124255ff7 +libgfortran.3.dylib (0) <9ABE5EDE-AD43-391A-9E54-866711FAC32A> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/.dylibs/libgfortran.3.dylib
0x1242b9000 - 0x1242effff +libquadmath.0.dylib (0) <7FFA409F-FB04-3B64-BE9A-3E3A494C975E> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/.dylibs/libquadmath.0.dylib
0x1242fe000 - 0x124313ff7 +libgcc_s.1.dylib (0) <7C6D7CB7-82DB-3290-8181-07646FEA1F80> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/.dylibs/libgcc_s.1.dylib
0x12a31e000 - 0x12a338ff3 +_voronoi.cpython-37m-darwin.so (0) <C3ADEAE2-5485-3E7C-AC5F-C0FE5EF61FC5> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/spatial/_voronoi.cpython-37m-darwin.so
0x12a34b000 - 0x12a358fff +_distance_wrap.cpython-37m-darwin.so (0) <A1F90DCF-4476-3B3D-9248-959CE54C3521> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/spatial/_distance_wrap.cpython-37m-darwin.so
0x12a362000 - 0x12a37dff3 +_hausdorff.cpython-37m-darwin.so (0) <BBF0B71A-E24B-30CC-B0CC-CEBECF2A84B0> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/spatial/_hausdorff.cpython-37m-darwin.so
0x12a3d0000 - 0x12a429ff7 +_fblas.cpython-37m-darwin.so (0) <6BA9FD7D-004E-3374-90D4-C959B8F759EE> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/linalg/_fblas.cpython-37m-darwin.so
0x12a461000 - 0x12a532fff +_flapack.cpython-37m-darwin.so (0) <9730DD4E-02D3-37B7-9277-22E7080D1CBE> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/linalg/_flapack.cpython-37m-darwin.so
0x12a602000 - 0x12a626ff7 +_solve_toeplitz.cpython-37m-darwin.so (0) <D4FF436D-39FD-3B0D-B315-CB0027952B4C> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/linalg/_solve_toeplitz.cpython-37m-darwin.so
0x12a63f000 - 0x12a673ff3 +_decomp_update.cpython-37m-darwin.so (0) <E4FBDC23-F6F0-3743-920A-3AA7A21D8069> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/linalg/_decomp_update.cpython-37m-darwin.so
0x12a6c9000 - 0x12a6eeff7 +cython_blas.cpython-37m-darwin.so (0) <7B73EDCD-02F8-3F72-91C8-3D57187F3476> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/linalg/cython_blas.cpython-37m-darwin.so
0x12a70b000 - 0x12a777ff7 +cython_lapack.cpython-37m-darwin.so (0) <E8047A89-0FFC-3019-A549-6242E04C5D04> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/linalg/cython_lapack.cpython-37m-darwin.so
0x12a7d5000 - 0x12a944ff7 +_ufuncs.cpython-37m-darwin.so (0) <231123C7-D03E-39E7-A40C-B2A4BDB656EB> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/special/_ufuncs.cpython-37m-darwin.so
0x12a9ba000 - 0x12a9ceff3 +_ufuncs_cxx.cpython-37m-darwin.so (0) <54656921-42D2-3BFC-B1A3-D89B37345272> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/special/_ufuncs_cxx.cpython-37m-darwin.so
0x12aa2d000 - 0x12aaeafef +specfun.cpython-37m-darwin.so (0) <B4BF7EF8-2C94-3180-BE22-7D05DA004D35> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/special/specfun.cpython-37m-darwin.so
0x12aafd000 - 0x12ab0aff3 +_ellip_harm_2.cpython-37m-darwin.so (0) <FA8A764D-D157-3585-B135-EF1296C9142E> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/special/_ellip_harm_2.cpython-37m-darwin.so
0x12ab55000 - 0x12ab66ff7 +_vq.cpython-37m-darwin.so (0) <711944FB-2A8B-3F72-9BCB-51CB1DCE33E5> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/cluster/_vq.cpython-37m-darwin.so
0x12ab72000 - 0x12abaeff7 +_hierarchy.cpython-37m-darwin.so (0) <39E0A236-8538-3948-B428-360A12A786AA> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/cluster/_hierarchy.cpython-37m-darwin.so
0x12abd4000 - 0x12abffff3 +_optimal_leaf_ordering.cpython-37m-darwin.so (0) <A00A07F0-D477-34F4-870F-E1FC5BDDE84E> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/cluster/_optimal_leaf_ordering.cpython-37m-darwin.so
0x12ad1f000 - 0x12ad52fff +_trlib.cpython-37m-darwin.so (0) <EDC680B5-E488-3DDE-AB77-40F03A2A9339> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/optimize/_trlib/_trlib.cpython-37m-darwin.so
0x12ad6e000 - 0x12ad9bff7 +_iterative.cpython-37m-darwin.so (0) <D87A7BA8-D6D1-3C20-A8E3-6C271354B114> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/sparse/linalg/isolve/_iterative.cpython-37m-darwin.so
0x12adf3000 - 0x12ae40fff +_superlu.cpython-37m-darwin.so (0) <7B89A303-CDC4-31AE-BEA4-C7735BE91E78> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/sparse/linalg/dsolve/_superlu.cpython-37m-darwin.so
0x12ae57000 - 0x12aedcfff +_arpack.cpython-37m-darwin.so (0) <B00F585E-589F-3E6B-9065-8304F602AD6E> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/sparse/linalg/eigen/arpack/_arpack.cpython-37m-darwin.so
0x12af3c000 - 0x12af58ffb +_group_columns.cpython-37m-darwin.so (0) <7B6FB61C-76E1-34E3-A5B4-1E0B7095D645> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/optimize/_group_columns.cpython-37m-darwin.so
0x12afab000 - 0x12afc7ff7 +_lbfgsb.cpython-37m-darwin.so (0) <62513E45-54E0-3341-AAEF-7E2BF7EA3691> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/optimize/_lbfgsb.cpython-37m-darwin.so
0x12afcd000 - 0x12afe9fff +_cobyla.cpython-37m-darwin.so (0) <7CDE2C8B-C8AA-3695-8F9F-BA00A0191866> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/optimize/_cobyla.cpython-37m-darwin.so
0x12afee000 - 0x12b00bff7 +_slsqp.cpython-37m-darwin.so (0) <EDB0BB9F-0CEC-3B8E-A642-A312C2F90FAF> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/optimize/_slsqp.cpython-37m-darwin.so
0x12b010000 - 0x12b02dff7 +_minpack.cpython-37m-darwin.so (0) <6CFDC72D-829F-3920-8C24-AB25E2FF2B58> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/optimize/_minpack.cpython-37m-darwin.so
0x12b032000 - 0x12b04bfff +givens_elimination.cpython-37m-darwin.so (0) <A884AB38-43EF-31C1-8DA2-E1163ACD577D> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/optimize/_lsq/givens_elimination.cpython-37m-darwin.so
0x12b09c000 - 0x12b0a4ff7 +_nnls.cpython-37m-darwin.so (0) <D61A8ED9-C639-380C-BE82-E4338D8EBAA0> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/optimize/_nnls.cpython-37m-darwin.so
0x12b0e9000 - 0x12b116ffb +_bglu_dense.cpython-37m-darwin.so (0) <B34FDC8A-C379-3C7A-999B-35722F6ADAE6> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/optimize/_bglu_dense.cpython-37m-darwin.so
0x12b174000 - 0x12b189fc7 +_odepack.cpython-37m-darwin.so (0) <01715935-1352-3AE2-98D3-16CB731655E9> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/integrate/_odepack.cpython-37m-darwin.so
0x12b18e000 - 0x12b1a5fd7 +_quadpack.cpython-37m-darwin.so (0) <F1217CB4-76B4-3DC8-A382-02790B7D8E22> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/integrate/_quadpack.cpython-37m-darwin.so
0x12b1ab000 - 0x12b1e1ff7 +vode.cpython-37m-darwin.so (0) <8264B1DF-E9B8-38B1-B9A8-F3806142ACBF> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/integrate/vode.cpython-37m-darwin.so
0x12b1e9000 - 0x12b200fff +_dop.cpython-37m-darwin.so (0) <C4BBF863-FA3E-35BF-8092-14C10FEDE39D> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/integrate/_dop.cpython-37m-darwin.so
0x12b207000 - 0x12b21efdf +lsoda.cpython-37m-darwin.so (0) <E97962D2-0742-3A3A-9395-35500BED7672> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/integrate/lsoda.cpython-37m-darwin.so
0x12b376000 - 0x12b3aaff7 +_fitpack.cpython-37m-darwin.so (0) <1EB60BA3-DFC5-3970-A052-DDAEC52BBC7B> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/interpolate/_fitpack.cpython-37m-darwin.so
0x12b3b1000 - 0x12b40dfff +dfitpack.cpython-37m-darwin.so (0) <6DDDE435-2622-3511-9598-E414C1076614> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/interpolate/dfitpack.cpython-37m-darwin.so
0x12b41e000 - 0x12b448fff +_bspl.cpython-37m-darwin.so (0) <6301FAAE-E019-3ED9-A7E8-396550ABFD10> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/interpolate/_bspl.cpython-37m-darwin.so
0x12b463000 - 0x12b49ffff +_ppoly.cpython-37m-darwin.so (0) <D68A7950-D74D-3DCE-A92A-E44427175F87> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/interpolate/_ppoly.cpython-37m-darwin.so
0x12b4fc000 - 0x12b538ff7 +interpnd.cpython-37m-darwin.so (0) <A202C753-3B48-3192-8172-939D328E6D63> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/interpolate/interpnd.cpython-37m-darwin.so
0x12b55a000 - 0x12b59eff7 +_stats.cpython-37m-darwin.so (0) <364241A1-BF01-370A-88CA-42D37D88FBAB> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/stats/_stats.cpython-37m-darwin.so
0x12b6c3000 - 0x12b6c8ff7 +_raw_aes.cpython-37m-darwin.so (???) <1F862189-D7BD-34FC-8218-C98348A3B57D> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/Crypto/Cipher/_raw_aes.cpython-37m-darwin.so
0x12b6cb000 - 0x12b6ccfff +_raw_aesni.cpython-37m-darwin.so (???) <D90003E6-B955-3F3C-ACD5-E3406613E935> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/Crypto/Cipher/_raw_aesni.cpython-37m-darwin.so
0x12b6cf000 - 0x12b6cfff7 +_contextvars.cpython-37m-darwin.so (0) <BFABAB06-4010-3C23-9E3D-BF0705E87D09> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_contextvars.cpython-37m-darwin.so
0x12b6d2000 - 0x12b6d3fff +fcntl.cpython-37m-darwin.so (0) <10868A3A-7663-33DC-B405-8F0BEE4DAA6A> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/fcntl.cpython-37m-darwin.so
0x12b758000 - 0x12b764ff7 +statlib.cpython-37m-darwin.so (0) <8F2CFCAC-47D6-372E-9ABF-3D4424DB4C0B> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/stats/statlib.cpython-37m-darwin.so
0x12b769000 - 0x12b77bfef +mvn.cpython-37m-darwin.so (0) <26820C7D-BBEC-31F9-8627-1E8D07FF5906> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/stats/mvn.cpython-37m-darwin.so
0x12b8f9000 - 0x12bdeffff +libproj.15.dylib (0) <D3CA33A2-7C0E-32EF-9028-DFD61B4D51B0> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pyproj/.dylibs/libproj.15.dylib
0x12bf49000 - 0x12c06bff3 +libsqlite3.0.dylib (0) <C34BBD4D-8251-3D89-B334-1D94033A93EB> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pyproj/.dylibs/libsqlite3.0.dylib
0x12c093000 - 0x12c0a2ff7 +_list.cpython-37m-darwin.so (???) <2DC6661F-21A8-399A-BE13-86683E1129DD> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pyproj/_list.cpython-37m-darwin.so
0x12c0f0000 - 0x12c128fff +_crs.cpython-37m-darwin.so (???) <D9EF9403-F5CB-3F58-A496-EE28064D4C0D> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pyproj/_crs.cpython-37m-darwin.so
0x12c159000 - 0x12c163fff +_geod.cpython-37m-darwin.so (???) <5FA2FBB9-C364-3142-BC54-57B8FDB815FB> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pyproj/_geod.cpython-37m-darwin.so
0x12c16d000 - 0x12c177ff7 +_proj.cpython-37m-darwin.so (???) <4578E36F-5E47-3AF2-B97B-4ADF5FEC37EF> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pyproj/_proj.cpython-37m-darwin.so
0x12c182000 - 0x12c19aff7 +_transformer.cpython-37m-darwin.so (???) <25B17D5E-2BCB-3F1D-BFAC-8EB5ABFBA9C3> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pyproj/_transformer.cpython-37m-darwin.so
0x12c22f000 - 0x12c24eff3 +libgeos_c.1.dylib (0) <7A4B8EDB-A092-3095-B708-D7F261F7C5F5> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/shapely/.dylibs/libgeos_c.1.dylib
0x12c260000 - 0x12c333ffb +libgeos-3.6.2.dylib (0) <60DF366F-25E3-30C4-9682-E393C9A21B83> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/shapely/.dylibs/libgeos-3.6.2.dylib
0x12c450000 - 0x12c46aff3 +_speedups.cpython-37m-darwin.so (0) <E549A48D-033E-3251-9EEE-2E00E61423D9> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/shapely/speedups/_speedups.cpython-37m-darwin.so
0x12c4b9000 - 0x12c519ff7 +ogrext.cpython-37m-darwin.so (0) <C16F1087-E476-3F22-A4A3-F42013983D0B> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/fiona/ogrext.cpython-37m-darwin.so
0x12c550000 - 0x12dac0ffb +libgdal.20.dylib (0) <B4C09B26-10D8-367F-B05E-D132FD5A43D5> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/fiona/.dylibs/libgdal.20.dylib
0x12df74000 - 0x12dfd5ffb +libproj.12.dylib (0) <6EB36E24-CDD5-358F-AB3B-B6E657CB8935> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/fiona/.dylibs/libproj.12.dylib
0x12dfea000 - 0x12dff3ffb +libjson-c.2.dylib (0) <310BF741-A36A-3B81-BF65-F686C7E07ED0> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/fiona/.dylibs/libjson-c.2.dylib
0x12dff8000 - 0x12e016fff +libgeos_c.1.dylib (0) <18817ADA-5E51-3124-BC36-77EE8827876B> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/fiona/.dylibs/libgeos_c.1.dylib
0x12e029000 - 0x12e14bff3 +libsqlite3.0.dylib (0) <6C3DF904-B8C3-3A42-A9DE-48D0DBABB703> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/fiona/.dylibs/libsqlite3.0.dylib
0x12e173000 - 0x12e1baffb +libopenjp2.2.3.0.dylib (0) <BD0F539C-FCA3-3846-A7F5-4C8FB9287E27> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/fiona/.dylibs/libopenjp2.2.3.0.dylib
0x12e1c3000 - 0x12e290ffb +libnetcdf.11.dylib (0) <4DF67557-E4CC-3338-A523-AC3E0B7CF686> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/fiona/.dylibs/libnetcdf.11.dylib
0x13130b000 - 0x13135cff3 +libjpeg.9.dylib (0) <564E6966-6C6D-3A9C-8C54-0187163BA378> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/fiona/.dylibs/libjpeg.9.dylib
0x131364000 - 0x1313eefff +libtiff.5.dylib (0) <035CAD7E-6D4C-3329-9065-C655E068A9B2> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/fiona/.dylibs/libtiff.5.dylib
0x1313ff000 - 0x13143bff7 +libpng16.16.dylib (0) <24554181-3A37-31D7-B77B-F4FE6ADB016C> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/fiona/.dylibs/libpng16.16.dylib
0x131445000 - 0x1314f4ff7 +libgeos-3.6.2.dylib (0) <9586199A-F1C2-36A5-B94B-58EFA92A1E4E> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/fiona/.dylibs/libgeos-3.6.2.dylib
0x13159d000 - 0x1315b4ff3 +libhdf5_hl.100.dylib (0) <8585B545-1C2A-3AF7-8E15-3ECB59B00EE7> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/fiona/.dylibs/libhdf5_hl.100.dylib
0x1315bd000 - 0x1318aafff +libhdf5.101.dylib (0) <ABC3515E-5271-37A2-AC1D-30B40BE4D22B> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/fiona/.dylibs/libhdf5.101.dylib
0x1318f8000 - 0x13190efff +_geometry.cpython-37m-darwin.so (0) <59ABE045-B3E0-3171-A812-1BD19FE11D00> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/fiona/_geometry.cpython-37m-darwin.so
0x131922000 - 0x13192cff3 +_shim.cpython-37m-darwin.so (0) <525654A0-F521-34B7-9887-C83414A01EEB> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/fiona/_shim.cpython-37m-darwin.so
0x131934000 - 0x131945ff3 +_err.cpython-37m-darwin.so (0) <17619AC4-42E2-3E39-9773-7DCC419868DB> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/fiona/_err.cpython-37m-darwin.so
0x131955000 - 0x131979ffb +_env.cpython-37m-darwin.so (0) <7B2D1954-7757-3A75-AD68-9CDCF772BFFD> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/fiona/_env.cpython-37m-darwin.so
0x1319d6000 - 0x1319dcfff +schema.cpython-37m-darwin.so (0) <2465A9C4-3C0E-326B-8E94-DC0C8B035C22> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/fiona/schema.cpython-37m-darwin.so
0x1323a4000 - 0x1323a5ff3 +_watchdog_fsevents.cpython-37m-darwin.so (0) <9DA9C06A-D0D1-38FD-B51E-D3B2BF39FBD7> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/_watchdog_fsevents.cpython-37m-darwin.so
0x1323d6000 - 0x13283bfff +etree.cpython-37m-darwin.so (???) <3886C02D-DC32-3A51-93EE-1C2E3C6B0347> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/lxml/etree.cpython-37m-darwin.so
0x132bab000 - 0x132bc3ff3 +_logistic_sigmoid.cpython-37m-darwin.so (0) <4A023C13-709C-3196-B62B-F9A100A06722> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/sklearn/utils/_logistic_sigmoid.cpython-37m-darwin.so
0x132bd5000 - 0x132c55ff7 +sparsefuncs_fast.cpython-37m-darwin.so (0) <3CEB2E51-7B4B-3872-87DD-5DFE245A7AD6> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/sklearn/utils/sparsefuncs_fast.cpython-37m-darwin.so
0x132cc4000 - 0x132ce4fff +mio5_utils.cpython-37m-darwin.so (0) <DC538C39-B83C-3365-9E70-8136E9D6D0A4> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/io/matlab/mio5_utils.cpython-37m-darwin.so
0x132cfc000 - 0x132d0dfff +streams.cpython-37m-darwin.so (0) <53836439-5533-3289-96F0-98F056370ACC> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/scipy/io/matlab/streams.cpython-37m-darwin.so
0x132db6000 - 0x132dddff7 +_csr_polynomial_expansion.cpython-37m-darwin.so (0) <90ADD849-7D5F-393B-90C2-27224E353C75> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/sklearn/preprocessing/_csr_polynomial_expansion.cpython-37m-darwin.so
0x132e35000 - 0x132e46ff3 +expected_mutual_info_fast.cpython-37m-darwin.so (0) <C2936B26-36C7-3B1A-833C-6857F06E7C0A> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/sklearn/metrics/cluster/expected_mutual_info_fast.cpython-37m-darwin.so
0x132e53000 - 0x132e76ff3 +pairwise_fast.cpython-37m-darwin.so (0) <E567B2C0-115F-3AA2-A8A6-46C3CCD203D4> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/sklearn/metrics/pairwise_fast.cpython-37m-darwin.so
0x132e8d000 - 0x132ed2ff3 +_cython_blas.cpython-37m-darwin.so (0) <AD7800DE-BFF6-3B0E-84E7-AB6B0D1B7213> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/sklearn/utils/_cython_blas.cpython-37m-darwin.so
0x1330b3000 - 0x1330b8fff +_asyncio.cpython-37m-darwin.so (0) <53DC9766-AA75-3F19-BABC-F5DDAB748676> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_asyncio.cpython-37m-darwin.so
0x1332c4000 - 0x1332c7ff3 +greenlet.cpython-37m-darwin.so (0) <88DB7900-3B3E-3C83-A448-4CEB643EDEB0> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/greenlet.cpython-37m-darwin.so
0x1334cc000 - 0x1334d0ffb +pvectorc.cpython-37m-darwin.so (0) <BE1C2C0F-C528-3355-9996-D90F6DCE376A> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pvectorc.cpython-37m-darwin.so
0x133597000 - 0x1335ccff3 +corecext.cpython-37m-darwin.so (0) <85614F8D-070C-3B09-9F12-570186F44021> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/gevent/libev/corecext.cpython-37m-darwin.so
0x133635000 - 0x13363dfff +__hub_local.cpython-37m-darwin.so (0) <2992A652-8006-36B6-B758-75F169E473F2> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/gevent/__hub_local.cpython-37m-darwin.so
0x133647000 - 0x13364ffff +__greenlet_primitives.cpython-37m-darwin.so (0) <38D73EFD-3771-3F36-9E66-A26B1AB3286F> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/gevent/__greenlet_primitives.cpython-37m-darwin.so
0x13365a000 - 0x133666ff3 +__waiter.cpython-37m-darwin.so (0) <069331A5-9282-3E0B-8993-F9B757FE18AF> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/gevent/__waiter.cpython-37m-darwin.so
0x133674000 - 0x13368cfff +__hub_primitives.cpython-37m-darwin.so (0) <D7131A67-B584-3B79-BA07-0D8E37F5BA35> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/gevent/__hub_primitives.cpython-37m-darwin.so
0x1336a0000 - 0x1336ceff7 +_greenlet.cpython-37m-darwin.so (0) <E7937A9B-92AE-3F1D-8765-C336B232D995> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/gevent/_greenlet.cpython-37m-darwin.so
0x1336f2000 - 0x1336f8ff3 +__ident.cpython-37m-darwin.so (0) <B0D4077A-8DC4-3B95-810D-68A429707AC2> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/gevent/__ident.cpython-37m-darwin.so
0x133741000 - 0x13374dfff +__abstract_linkable.cpython-37m-darwin.so (0) <245CCB93-5B7C-3CF9-AEEE-5A6FB59977A8> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/gevent/__abstract_linkable.cpython-37m-darwin.so
0x13375a000 - 0x13376cff7 +_event.cpython-37m-darwin.so (0) <9D0476FA-89E5-33F1-9B5F-DFA8C1E91456> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/gevent/_event.cpython-37m-darwin.so
0x1337bf000 - 0x1337c0ff7 +termios.cpython-37m-darwin.so (0) <C7A91EC6-C4DF-388D-BB4D-C0940A5CD9BC> /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/termios.cpython-37m-darwin.so
0x7fff37c8f000 - 0x7fff37c8ffff com.apple.Accelerate (1.11 - Accelerate 1.11) <956D070C-B522-3A08-891A-CAD6BA4082D1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x7fff37ca7000 - 0x7fff38312fdf com.apple.vImage (8.1 - 524.2) <45A48EA9-49AA-33A0-B830-AF754BD01009> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x7fff38313000 - 0x7fff3857bfff libBLAS.dylib (1303) <112B19CC-925A-3E28-8B32-2002D30A37FA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x7fff3857c000 - 0x7fff3886bfdf libBNNS.dylib (144.11.2) <A806AED9-837B-3C6C-AB0B-A41983C1CD07> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
0x7fff3886d000 - 0x7fff38c12fff libLAPACK.dylib (1303) <5C248B39-F233-3074-A3A5-AF8F436FBF87> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x7fff38c13000 - 0x7fff38c28ff8 libLinearAlgebra.dylib (1303) <C21931B4-F6BD-324D-A2D9-F13EE8AFB29E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
0x7fff38c29000 - 0x7fff38c2eff3 libQuadrature.dylib (7) <826897ED-B7AD-33DC-B9CB-F9787784F312> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
0x7fff38c2f000 - 0x7fff38c9ffff libSparse.dylib (103) <55467C29-2096-36AB-8A6D-5231A342809D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib
0x7fff38ca0000 - 0x7fff38cb2fef libSparseBLAS.dylib (1303) <3244FCAF-A1FE-3248-AF22-BFB3E9D12555> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
0x7fff38cb3000 - 0x7fff38e8cffb libvDSP.dylib (735) <E849AEB0-2995-38A4-B0C3-4ACEAF434D12> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x7fff38e8d000 - 0x7fff38f48fd3 libvMisc.dylib (735) <D6248EC4-7772-37BB-87F7-9BAB7F5D31A0> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x7fff38f49000 - 0x7fff38f49fff com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <79C1A1C7-E97A-3B7A-8737-444B402A7AA0> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff3a674000 - 0x7fff3a9eaffe com.apple.CFNetwork (1111 - 1111) <642753C5-5D26-3794-9A4C-4F63F226C01A> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x7fff3bea9000 - 0x7fff3c328ff7 com.apple.CoreFoundation (6.9 - 1671.15) <BF8A8279-9C5E-37C6-8426-90C8182EFBDD> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff3d290000 - 0x7fff3d290fff com.apple.CoreServices (1069.2 - 1069.2) <C5F7AABC-BADC-3331-A7D6-9B0A82A23E58> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x7fff3d291000 - 0x7fff3d316ff7 com.apple.AE (838 - 838) <7295ED82-7087-3602-9DCA-4FE205F6499C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x7fff3d317000 - 0x7fff3d5f8fff com.apple.CoreServices.CarbonCore (1217 - 1217) <7AA0ECB3-0993-3081-A9EC-0365EF72B24D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x7fff3d5f9000 - 0x7fff3d646ff1 com.apple.DictionaryServices (1.2 - 321) <3D0FFBDE-E425-37C7-B780-39A3D024462A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x7fff3d647000 - 0x7fff3d64fff7 com.apple.CoreServices.FSEvents (1268.0.6 - 1268.0.6) <78D2AB1A-9053-3D32-8C18-C1DD31FF9400> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
0x7fff3d650000 - 0x7fff3d888ff1 com.apple.LaunchServices (1069.2 - 1069.2) <68B4C10C-D536-33E9-9719-E7BA5B753F2B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x7fff3d889000 - 0x7fff3d921ff1 com.apple.Metadata (10.7.0 - 2066.12) <249EA615-8446-3A36-B6B7-ED613C8B8148> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x7fff3d922000 - 0x7fff3d94fff7 com.apple.CoreServices.OSServices (1069.2 - 1069.2) <2FECF3BA-B785-35E2-85E9-2A2267801AA4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x7fff3d950000 - 0x7fff3d9b7fff com.apple.SearchKit (1.4.1 - 1.4.1) <0068BD72-CF2B-34E4-B461-002D5E56C31C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x7fff3d9b8000 - 0x7fff3d9dcffd com.apple.coreservices.SharedFileList (131 - 131) <61F62948-4109-38F0-BB91-5EBB6BEEAB10> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
0x7fff3e231000 - 0x7fff3e237ff7 com.apple.DiskArbitration (2.7 - 2.7) <23104F29-F120-354B-97BE-4514A675BB14> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x7fff3e564000 - 0x7fff3e92bff3 com.apple.Foundation (6.9 - 1671.15) <4BEAB72D-10AA-3009-B0F5-B82B4FE1C441> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x7fff3e998000 - 0x7fff3e9c7ff3 com.apple.GSS (4.0 - 2.0) <9520F096-C643-36D7-B8CB-3922B6E6D7EC> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x7fff3ec7d000 - 0x7fff3ed20ffb com.apple.framework.IOKit (2.0.2 - 1726.11.1) <9E81E92C-7EC2-330F-B0AF-BBFD9D3E46F6> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x7fff406e3000 - 0x7fff406f5ff3 com.apple.Kerberos (3.0 - 1) <91DF5D16-E721-39F0-A77B-87DA6032F870> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x7fff406f6000 - 0x7fff406f6fff libHeimdalProxy.dylib (77) <51DB9CFB-808F-32E8-BB34-39F6702DBDED> /System/Library/Frameworks/Kerberos.framework/Versions/A/Libraries/libHeimdalProxy.dylib
0x7fff406f7000 - 0x7fff4072dfff com.apple.LDAPFramework (2.4.28 - 194.5) <32FAF82F-BA91-366A-83A3-CDFF6CDD1AF9> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
0x7fff42571000 - 0x7fff4257dffe com.apple.NetFS (6.0 - 4.0) <10ECF7E4-98A5-3751-B7AC-0AAAF0050777> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x7fff45141000 - 0x7fff4515dfff com.apple.CFOpenDirectory (10.15 - 220.11.1) <6F4D018B-FA8B-35B2-8120-F8215DDA01CB> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x7fff4515e000 - 0x7fff45169fff com.apple.OpenDirectory (10.15 - 220.11.1) <170173C2-DF22-3D11-914F-465AA7C4760A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x7fff484eb000 - 0x7fff4882fff9 com.apple.security (7.0 - 59306.11.20) <1B0AE660-0EC5-3497-ACE8-1AF2BB772BAB> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x7fff48830000 - 0x7fff488b8ff7 com.apple.securityfoundation (6.0 - 55236) <903B8365-1F35-3EB2-9821-9D2C440BE2DD> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x7fff48911000 - 0x7fff48915ff8 com.apple.xpc.ServiceManagement (1.0 - 1) <EF42F840-AF78-38A4-B6E1-FDF445CA3477> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
0x7fff496ff000 - 0x7fff49769ff7 com.apple.SystemConfiguration (1.19 - 1.19) <C0C089C3-FC64-3107-B23E-4073E800C5D2> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x7fff4d4bd000 - 0x7fff4d581ff7 com.apple.APFS (1412.11.7 - 1412.11.7) <71DAB6CE-FF14-373D-A183-F388C5D9FE84> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS
0x7fff4f105000 - 0x7fff4f114fdf com.apple.AppleFSCompression (119 - 1.0) <725908C4-7585-3AB6-8A1A-691B8A9074B8> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
0x7fff4f67c000 - 0x7fff4f680ff7 com.apple.AppleSRP (5.0 - 1) <B251E119-3F06-3CDB-9559-8CC8BBAF1529> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
0x7fff508a0000 - 0x7fff508a9ff3 com.apple.coreservices.BackgroundTaskManagement (1.0 - 104) <156CFAE3-07D0-332C-90BE-BB2E4C893C99> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement
0x7fff52547000 - 0x7fff52550ff7 com.apple.CommonAuth (4.0 - 2.0) <BDE39131-6389-3243-9C4A-DBA165B8A2F9> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x7fff53368000 - 0x7fff53373ff7 com.apple.frameworks.CoreDaemon (1.3 - 1.3) <76AC1239-46B1-387E-B053-ED56BDF55DE7> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
0x7fff535ea000 - 0x7fff535faff3 com.apple.CoreEmoji (1.0 - 100) <9AB89183-635C-3859-9DC6-7BCE3A94D15E> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
0x7fff53c46000 - 0x7fff53cb0ff8 com.apple.CoreNLP (1.0 - 211) <8F08AEF6-A380-3811-BAF0-D80E7C84B5AD> /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP
0x7fff548c0000 - 0x7fff548eeff7 com.apple.CSStore (1069.2 - 1069.2) <5E3C50AB-9C00-36F3-A986-CE033480CA8B> /System/Library/PrivateFrameworks/CoreServicesStore.framework/Versions/A/CoreServicesStore
0x7fff5ddb3000 - 0x7fff5de26ffc com.apple.Heimdal (4.0 - 2.0) <169702C2-B210-3258-947C-F8EE6B361C26> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x7fff6089c000 - 0x7fff60969ffd com.apple.LanguageModeling (1.0 - 212) <A9F41C84-E574-3624-8C00-60F228E0FF97> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
0x7fff6096a000 - 0x7fff609b2ff7 com.apple.Lexicon-framework (1.0 - 70) <BEADF30C-37D3-3112-90DA-18A85406DBF3> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon
0x7fff609b9000 - 0x7fff609bdff6 com.apple.LinguisticData (1.0 - 349) <A392AD13-9AEB-31BB-A9ED-F29437CFBDB4> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData
0x7fff61dee000 - 0x7fff61e3aff7 com.apple.spotlight.metadata.utilities (1.0 - 2066.12) <989018A3-4BD0-3FD1-9A2D-88FD3A521452> /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities
0x7fff6285d000 - 0x7fff62867fff com.apple.NetAuth (6.2 - 6.2) <90F9ADF4-8A9C-3603-8F55-24F8C472430B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x7fff6b4f8000 - 0x7fff6b508ff3 com.apple.TCC (1.0 - 1) <DCE1D8C7-7BEB-3201-A0E5-38F012E6B1BC> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
0x7fff6bc27000 - 0x7fff6bc28fff com.apple.TrustEvaluationAgent (2.0 - 33) <B691985E-2E58-37C3-B336-8882DE4BF19A> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x7fff6f748000 - 0x7fff6f74aff3 com.apple.loginsupport (1.0 - 1) <40974390-AFD7-3CEF-8B8D-6219BF916A4E> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
0x7fff6fab8000 - 0x7fff6faedff7 libCRFSuite.dylib (48) <45ADF347-A43F-3E95-BF26-94DC525DCC81> /usr/lib/libCRFSuite.dylib
0x7fff6faf0000 - 0x7fff6fafaff3 libChineseTokenizer.dylib (34) <94E822B6-F850-33C5-888C-D5C8AE12122C> /usr/lib/libChineseTokenizer.dylib
0x7fff6fb87000 - 0x7fff6fb89fff libDiagnosticMessagesClient.dylib (112) <418D550B-C748-3D55-A6D5-0398E032F9F3> /usr/lib/libDiagnosticMessagesClient.dylib
0x7fff7004e000 - 0x7fff7004fff3 libSystem.B.dylib (1281) <66742D2E-591A-32B2-8E92-4A54BEE843F6> /usr/lib/libSystem.B.dylib
0x7fff700df000 - 0x7fff700e0fff libThaiTokenizer.dylib (3) <D2A89215-5281-310F-8C75-47F1E6A14F62> /usr/lib/libThaiTokenizer.dylib
0x7fff700f8000 - 0x7fff7010efff libapple_nghttp2.dylib (1.39.2) <0A685DAA-9FC6-3C87-83F1-1D11FC87C1F4> /usr/lib/libapple_nghttp2.dylib
0x7fff70143000 - 0x7fff701b5ff7 libarchive.2.dylib (72.11.2) <8636AE5A-0CBB-306C-8A4B-2E612D2D6B13> /usr/lib/libarchive.2.dylib
0x7fff70250000 - 0x7fff70250ff3 libauto.dylib (187) <AACF68BC-9A05-36F8-8F60-78951422E090> /usr/lib/libauto.dylib
0x7fff7030e000 - 0x7fff7031efff libbsm.0.dylib (60) <F03FA480-0B22-3300-833F-03E88F43C504> /usr/lib/libbsm.0.dylib
0x7fff7031f000 - 0x7fff7032bfff libbz2.1.0.dylib (44) <8B522880-BEF8-3668-B785-F2AB4DE8F366> /usr/lib/libbz2.1.0.dylib
0x7fff7032c000 - 0x7fff7037ffff libc++.1.dylib (800.6) <328FB687-2363-38B1-AC11-11736925C775> /usr/lib/libc++.1.dylib
0x7fff70380000 - 0x7fff70394fff libc++abi.dylib (800.7) <02753D3D-91C6-3670-8B5D-EBE040B516FC> /usr/lib/libc++abi.dylib
0x7fff70395000 - 0x7fff70395ffb libcharset.1.dylib (59) <12D52FA5-EBCA-3F3C-A269-1095F268F92F> /usr/lib/libcharset.1.dylib
0x7fff70396000 - 0x7fff703a7ffb libcmph.dylib (8) <7DD1F726-F3E3-341A-AFAC-83E9A470883C> /usr/lib/libcmph.dylib
0x7fff703a8000 - 0x7fff703bffe7 libcompression.dylib (87) <10B82884-BE1A-3A36-9B38-3C92AF566D3E> /usr/lib/libcompression.dylib
0x7fff70681000 - 0x7fff70697fff libcoretls.dylib (167) <1C64EA6F-8E0D-319D-99D4-026150EEB2B2> /usr/lib/libcoretls.dylib
0x7fff70698000 - 0x7fff70699ffb libcoretls_cfhelpers.dylib (167) <724B0181-4D9E-3D2F-B1AB-B4FD6A7BAB2C> /usr/lib/libcoretls_cfhelpers.dylib
0x7fff70b3d000 - 0x7fff70c41fe7 libcrypto.44.dylib (47.11.1) <55C6ABAB-C237-39F1-A78C-4594896CF7E6> /usr/lib/libcrypto.44.dylib
0x7fff70cb8000 - 0x7fff70d1ffff libcurl.4.dylib (118) <2B9763A5-A54D-3F2B-98BD-1F9BAEADE5E0> /usr/lib/libcurl.4.dylib
0x7fff70dc2000 - 0x7fff70dc2ff3 libenergytrace.dylib (21) <E42B4AFF-3FAC-3CE4-A7BF-48621458B356> /usr/lib/libenergytrace.dylib
0x7fff70dc3000 - 0x7fff70ddcff7 libexpat.1.dylib (19) <A0E2F6F3-BFFA-3D59-872F-F093487F0B42> /usr/lib/libexpat.1.dylib
0x7fff70dea000 - 0x7fff70decff7 libfakelink.dylib (149) <FC5712CB-2188-3DAD-8DD4-CC3ECCA3F9A8> /usr/lib/libfakelink.dylib
0x7fff70dfb000 - 0x7fff70e00fff libgermantok.dylib (24) <93E95178-E436-3611-A4A3-CB1D42CF4064> /usr/lib/libgermantok.dylib
0x7fff70e01000 - 0x7fff70e05ff7 libheimdal-asn1.dylib (564.0.3) <51551E63-5AC6-30D3-B178-8BDA782C80EA> /usr/lib/libheimdal-asn1.dylib
0x7fff70e06000 - 0x7fff70ef6ff7 libiconv.2.dylib (59) <1A648E74-25D4-3F9B-94C4-10B58AD091B7> /usr/lib/libiconv.2.dylib
0x7fff70ef7000 - 0x7fff7114fff7 libicucore.A.dylib (64232.0.1) <88E47471-605C-3C86-871B-5D2F4628A936> /usr/lib/libicucore.A.dylib
0x7fff71169000 - 0x7fff7116afff liblangid.dylib (133) <78DF87EE-CDCE-3628-B239-56743169BC93> /usr/lib/liblangid.dylib
0x7fff7116b000 - 0x7fff71183ffb liblzma.5.dylib (16) <D416FC97-76EC-38B5-A134-85DDFEA9D297> /usr/lib/liblzma.5.dylib
0x7fff7119b000 - 0x7fff71242fff libmecab.dylib (879) <DD60E6AA-154E-3294-B2C0-3277B754F3BC> /usr/lib/libmecab.dylib
0x7fff71243000 - 0x7fff714a2fe9 libmecabra.dylib (879) <B5BE574C-DD3A-336D-87A3-202CE7803A45> /usr/lib/libmecabra.dylib
0x7fff71961000 - 0x7fff71dd3ff6 libnetwork.dylib (1880.11.2) <CC02BF51-A056-3656-B735-E8CD0F4B7B15> /usr/lib/libnetwork.dylib
0x7fff71e71000 - 0x7fff71ea2fe6 libobjc.A.dylib (779.1) <722C0959-69B8-3843-B5EA-CDD8FAA91D5E> /usr/lib/libobjc.A.dylib
0x7fff71eb5000 - 0x7fff71eb9fff libpam.2.dylib (25) <86317F48-E926-30AC-AE9F-ABB33543FBC8> /usr/lib/libpam.2.dylib
0x7fff71ebc000 - 0x7fff71eefff7 libpcap.A.dylib (89.11.2) <65A8EBD2-F059-353B-9538-20D1314EFD89> /usr/lib/libpcap.A.dylib
0x7fff71f71000 - 0x7fff71f89ff7 libresolv.9.dylib (67) <06480BFC-6372-3225-B77A-F5AC9969DB64> /usr/lib/libresolv.9.dylib
0x7fff71fcf000 - 0x7fff71fe1fff libsasl2.2.dylib (213) <277129F1-29AE-34EB-BBAB-FF6DF4B43FAB> /usr/lib/libsasl2.2.dylib
0x7fff71fe4000 - 0x7fff721d1ff7 libsqlite3.dylib (308.1) <7033723E-DD65-3AA3-ADCA-8746F7BAD75D> /usr/lib/libsqlite3.dylib
0x7fff722c5000 - 0x7fff722f2ffb libssl.46.dylib (47.11.1) <CA81BD73-E5BF-3F88-A70E-49BA7C6B2781> /usr/lib/libssl.46.dylib
0x7fff723c4000 - 0x7fff7241fff0 libusrtcp.dylib (1880.11.2) <B821F69B-2E28-36C7-8F11-6990F8D4E26B> /usr/lib/libusrtcp.dylib
0x7fff72420000 - 0x7fff72423ffb libutil.dylib (57) <844B7887-09B3-3D12-ACDE-C4EB8F53DC62> /usr/lib/libutil.dylib
0x7fff72424000 - 0x7fff72431fff libxar.1.dylib (420) <E0D7C0A6-76EC-3682-A393-6596D4986269> /usr/lib/libxar.1.dylib
0x7fff72437000 - 0x7fff72519ff7 libxml2.2.dylib (32.12) <C0A87484-D334-3B50-8F8A-A9C63295F49E> /usr/lib/libxml2.2.dylib
0x7fff7251d000 - 0x7fff72545fff libxslt.1.dylib (16.6) <CD9E79B0-159A-3055-B62A-57AB2B445912> /usr/lib/libxslt.1.dylib
0x7fff72546000 - 0x7fff72558fff libz.1.dylib (76) <3FC3FC3E-ABF3-3167-9078-B54C952608B4> /usr/lib/libz.1.dylib
0x7fff72fbd000 - 0x7fff72fc2ff7 libcache.dylib (83) <8EC69760-6DAA-3068-9372-F1D554C548E5> /usr/lib/system/libcache.dylib
0x7fff72fc3000 - 0x7fff72fceff7 libcommonCrypto.dylib (60165) <698BE754-137D-361D-B826-57B8DD969E4A> /usr/lib/system/libcommonCrypto.dylib
0x7fff72fcf000 - 0x7fff72fd6fff libcompiler_rt.dylib (101.2) <0BE7F119-C9C2-3612-A3F4-2336D4444476> /usr/lib/system/libcompiler_rt.dylib
0x7fff72fd7000 - 0x7fff72fe0ff7 libcopyfile.dylib (166) <B5E73B1C-0BCF-33FE-80A1-D9E3BA3033D4> /usr/lib/system/libcopyfile.dylib
0x7fff72fe1000 - 0x7fff73078fc3 libcorecrypto.dylib (866.0.10) <58344B13-CD10-3697-A516-6F5B06DD1EB7> /usr/lib/system/libcorecrypto.dylib
0x7fff7318f000 - 0x7fff731d0ff0 libdispatch.dylib (1173.0.3) <F4260D89-F67D-30CB-AF61-7ED25CB687DB> /usr/lib/system/libdispatch.dylib
0x7fff731d1000 - 0x7fff73206fff libdyld.dylib (732.8) <98960E27-A08B-36DA-A5CB-8538B2D6757E> /usr/lib/system/libdyld.dylib
0x7fff73207000 - 0x7fff73207ffb libkeymgr.dylib (30) <682B41BC-BDC2-38D5-8820-87099606FA12> /usr/lib/system/libkeymgr.dylib
0x7fff73208000 - 0x7fff73214ff7 libkxld.dylib (6153.11.26) <53BE9630-BDC8-3649-8709-7A4F86777B1A> /usr/lib/system/libkxld.dylib
0x7fff73215000 - 0x7fff73215ff7 liblaunch.dylib (1738.11.1) <7FE11F0D-65BC-3726-B1DD-E84F329193E0> /usr/lib/system/liblaunch.dylib
0x7fff73216000 - 0x7fff7321bff7 libmacho.dylib (949.0.1) <163DFE06-2FAD-3CBC-80EF-C38EED6AEA52> /usr/lib/system/libmacho.dylib
0x7fff7321c000 - 0x7fff7321eff3 libquarantine.dylib (110.0.4) <C8F39330-8CB5-30B0-8564-96453DCEFAD7> /usr/lib/system/libquarantine.dylib
0x7fff7321f000 - 0x7fff73220ff7 libremovefile.dylib (48) <FB280185-B5ED-3F08-B08A-A378865C1398> /usr/lib/system/libremovefile.dylib
0x7fff73221000 - 0x7fff73238fff libsystem_asl.dylib (377.0.1) <30CE9DAF-B1FA-3510-832B-F1CE19933ED7> /usr/lib/system/libsystem_asl.dylib
0x7fff73239000 - 0x7fff73239fff libsystem_blocks.dylib (74) <E0B8C825-E62B-357E-A2A0-13776F0A0F8C> /usr/lib/system/libsystem_blocks.dylib
0x7fff7323a000 - 0x7fff732c1ff7 libsystem_c.dylib (1353.11.2) <2A5BFAFE-8214-3B35-AD46-C07A1A8B8941> /usr/lib/system/libsystem_c.dylib
0x7fff732c2000 - 0x7fff732c5fff libsystem_configuration.dylib (1061.0.2) <56174463-22ED-337F-B0D4-94995DCDB9B7> /usr/lib/system/libsystem_configuration.dylib
0x7fff732c6000 - 0x7fff732c9ff7 libsystem_coreservices.dylib (114) <01695913-028E-3AE1-8D4E-2B2769109811> /usr/lib/system/libsystem_coreservices.dylib
0x7fff732ca000 - 0x7fff732d1fff libsystem_darwin.dylib (1353.11.2) <4CE52C63-87AA-3C6D-899F-8C983E5FC061> /usr/lib/system/libsystem_darwin.dylib
0x7fff732d2000 - 0x7fff732d9ffb libsystem_dnssd.dylib (1096.0.2) <DC7381E8-F09F-3441-8267-9B8F50A0EBA9> /usr/lib/system/libsystem_dnssd.dylib
0x7fff732da000 - 0x7fff732dbffb libsystem_featureflags.dylib (17) <DBCA4AA2-CA05-38D5-AB4B-BE0F3E09BB8B> /usr/lib/system/libsystem_featureflags.dylib
0x7fff732dc000 - 0x7fff73329ff7 libsystem_info.dylib (538) <9F9D6368-A11E-32F1-9BB5-C153F42EFED8> /usr/lib/system/libsystem_info.dylib
0x7fff7332a000 - 0x7fff73356fff libsystem_kernel.dylib (6153.11.26) <4CE9D54A-A975-348E-B878-EE74EDFC956B> /usr/lib/system/libsystem_kernel.dylib
0x7fff73357000 - 0x7fff7339eff7 libsystem_m.dylib (3178) <4F516261-0C0E-3105-AF35-EF39D6347B50> /usr/lib/system/libsystem_m.dylib
0x7fff7339f000 - 0x7fff733c6fff libsystem_malloc.dylib (283) <02925539-3CBA-39EB-BA6B-9A936CFA0BF8> /usr/lib/system/libsystem_malloc.dylib
0x7fff733c7000 - 0x7fff733d4ff3 libsystem_networkextension.dylib (1095.11.9) <8B5EE189-E3D1-31FD-878F-50286B6E7047> /usr/lib/system/libsystem_networkextension.dylib
0x7fff733d5000 - 0x7fff733defff libsystem_notify.dylib (241) <89381127-2A07-3F07-B865-358FACCF9102> /usr/lib/system/libsystem_notify.dylib
0x7fff733df000 - 0x7fff733e8fe7 libsystem_platform.dylib (220) <90E508E4-46D8-33FF-8552-DDAA079977A0> /usr/lib/system/libsystem_platform.dylib
0x7fff733e9000 - 0x7fff733f3fff libsystem_pthread.dylib (416.11.1) <2EA6F95F-F264-30B6-8AF2-24197B5AED84> /usr/lib/system/libsystem_pthread.dylib
0x7fff733f4000 - 0x7fff733f8ffb libsystem_sandbox.dylib (1217.11.16) <51129CBB-BC46-37F1-A1B5-ECFA9530704D> /usr/lib/system/libsystem_sandbox.dylib
0x7fff733f9000 - 0x7fff733fbfff libsystem_secinit.dylib (62.0.4) <A48D9AF3-75F2-3331-A0C8-0A23771F4AC7> /usr/lib/system/libsystem_secinit.dylib
0x7fff733fc000 - 0x7fff73403ffb libsystem_symptoms.dylib (1238.0.2) <08E8CF75-5F77-3475-A48E-A01CBDF09173> /usr/lib/system/libsystem_symptoms.dylib
0x7fff73404000 - 0x7fff7341aff2 libsystem_trace.dylib (1147.0.3) <5836645E-9862-326D-AB3B-A19E76BE29B9> /usr/lib/system/libsystem_trace.dylib
0x7fff7341c000 - 0x7fff73421ffb libunwind.dylib (35.4) <F5AE1D43-7C5F-3BA2-94D3-E769F82C0F61> /usr/lib/system/libunwind.dylib
0x7fff73422000 - 0x7fff73456ff6 libxpc.dylib (1738.11.1) <2E9076CD-6C0E-38B6-8403-B2DDCE125FBF> /usr/lib/system/libxpc.dylib
External Modification Summary:
Calls made by other processes targeting this process:
task_for_pid: 32
thread_create: 0
thread_set_state: 0
Calls made by this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by all processes on this machine:
task_for_pid: 7803078
thread_create: 0
thread_set_state: 0
VM Region Summary:
ReadOnly portion of Libraries: Total=660.2M resident=0K(0%) swapped_out_or_unallocated=660.2M(100%)
Writable regions: Total=1.5G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=1.5G(100%)
VIRTUAL REGION
REGION TYPE SIZE COUNT (non-coalesced)
=========== ======= =======
Activity Tracing 256K 1
Dispatch continuations 16.0M 1
Kernel Alloc Once 8K 1
MALLOC 1.1G 724
MALLOC guard page 16K 3
MALLOC_LARGE (reserved) 256K 2 reserved VM address space (unallocated)
STACK GUARD 36K 9
Stack 51.6M 9
VM_ALLOCATE 4K 1
VM_ALLOCATE (reserved) 192.0M 2 reserved VM address space (unallocated)
__DATA 62.5M 464
__DATA_CONST 20K 1
__LINKEDIT 380.1M 248
__OBJC_RO 31.8M 1
__OBJC_RW 1764K 2
__TEXT 280.2M 382
__UNICODE 564K 1
mapped file 28K 1
shared memory 44K 5
=========== ======= =======
TOTAL 2.1G 1858
TOTAL, minus reserved VM space 2.0G 1858
Model: MacBookPro13,3, BootROM 262.0.0.0.0, 4 processors, Quad-Core Intel Core i7, 2.9 GHz, 16 GB, SMC 2.38f8
Graphics: kHW_IntelHDGraphics530Item, Intel HD Graphics 530, spdisplays_builtin
Graphics: kHW_AMDRadeonPro460Item, AMD Radeon Pro 460, spdisplays_pcie_device, 4 GB
Memory Module: BANK 0/DIMM0, 8 GB, LPDDR3, 2133 MHz, 0x802C, 0x4D5435324C31473332443450472D30393320
Memory Module: BANK 1/DIMM0, 8 GB, LPDDR3, 2133 MHz, 0x802C, 0x4D5435324C31473332443450472D30393320
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x15A), Broadcom BCM43xx 1.0 (7.77.105.1 AirPortDriverBrcmNIC-1429)
Bluetooth: Version 7.0.0f8, 3 services, 27 devices, 1 incoming serial ports
Network Service: Wi-Fi, AirPort, en0
USB Device: USB 3.0 Bus
USB Device: Apple T1 Controller
Thunderbolt Bus: MacBook Pro, Apple Inc., 41.2
Thunderbolt Bus: MacBook Pro, Apple Inc., 41.2
</details>
#### Expected Output
#### Output of ``pd.show_versions()``
<details>
NSTALLED VERSIONS
------------------
commit : None
python : 3.7.4.final.0
python-bits : 64
OS : Darwin
OS-release : 19.0.0
machine : x86_64
processor : i386
byteorder : little
LC_ALL : None
LANG : en_US.UTF-8
LOCALE : en_US.UTF-8
pandas : 0.25.1
numpy : 1.17.2
pytz : 2019.2
dateutil : 2.8.0
pip : 19.2.3
setuptools : 40.8.0
Cython : None
pytest : None
hypothesis : None
sphinx : None
blosc : None
feather : None
xlsxwriter : None
lxml.etree : 4.4.1
html5lib : None
pymysql : None
psycopg2 : None
jinja2 : 2.10.1
IPython : None
pandas_datareader: 0.8.1
bs4 : None
bottleneck : None
fastparquet : None
gcsfs : None
lxml.etree : 4.4.1
matplotlib : None
numexpr : None
odfpy : None
openpyxl : None
pandas_gbq : None
pyarrow : None
pytables : None
s3fs : None
scipy : 1.3.1
sqlalchemy : 1.3.9
tables : None
xarray : None
xlrd : 1.2.0
xlwt : None
xlsxwriter : None
</details>
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28882/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28882/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28883 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28883/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28883/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28883/events | https://github.com/pandas-dev/pandas/pull/28883 | 504,933,371 | MDExOlB1bGxSZXF1ZXN0MzI2NDc3MDIw | 28,883 | CLN: dont catch Exception in groupby var | {
"avatar_url": "https://avatars.githubusercontent.com/u/8078968?v=4",
"events_url": "https://api.github.com/users/jbrockmendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jbrockmendel/followers",
"following_url": "https://api.github.com/users/jbrockmendel/following{/other_user}",
"gists_url": "https://api.github.com/users/jbrockmendel/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jbrockmendel",
"id": 8078968,
"login": "jbrockmendel",
"node_id": "MDQ6VXNlcjgwNzg5Njg=",
"organizations_url": "https://api.github.com/users/jbrockmendel/orgs",
"received_events_url": "https://api.github.com/users/jbrockmendel/received_events",
"repos_url": "https://api.github.com/users/jbrockmendel/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jbrockmendel/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jbrockmendel/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jbrockmendel"
} | [
{
"color": "729FCF",
"default": false,
"description": null,
"id": 233160,
"name": "Groupby",
"node_id": "MDU6TGFiZWwyMzMxNjA=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Groupby"
},
{
"color": "ffa0ff",
"default": false,
"description": "Incorrect or im... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 1 | 2019-10-09T22:40:33Z | 2019-10-10T01:55:47Z | 2019-10-10T01:25:29Z | MEMBER | null | Between this, #28878, and #28873, I'm finding that the outside-in approach to cleaning this up is proving easier the earlier inside-out approach. | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28883/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28883/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28883.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28883",
"merged_at": "2019-10-10T01:25:29Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28883.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28883"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28884 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28884/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28884/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28884/events | https://github.com/pandas-dev/pandas/pull/28884 | 504,974,591 | MDExOlB1bGxSZXF1ZXN0MzI2NTA3Njkw | 28,884 | Remove ix, part 1 | {
"avatar_url": "https://avatars.githubusercontent.com/u/26364415?v=4",
"events_url": "https://api.github.com/users/topper-123/events{/privacy}",
"followers_url": "https://api.github.com/users/topper-123/followers",
"following_url": "https://api.github.com/users/topper-123/following{/other_user}",
"gists_url": "https://api.github.com/users/topper-123/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/topper-123",
"id": 26364415,
"login": "topper-123",
"node_id": "MDQ6VXNlcjI2MzY0NDE1",
"organizations_url": "https://api.github.com/users/topper-123/orgs",
"received_events_url": "https://api.github.com/users/topper-123/received_events",
"repos_url": "https://api.github.com/users/topper-123/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/topper-123/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/topper-123/subscriptions",
"type": "User",
"url": "https://api.github.com/users/topper-123"
} | [
{
"color": "0b02e1",
"default": false,
"description": "Related to indexing on series/frames, not to indexes themselves",
"id": 2822098,
"name": "Indexing",
"node_id": "MDU6TGFiZWwyODIyMDk4",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Indexing"
},
{
"color": "53... | closed | false | null | [] | null | 4 | 2019-10-10T01:12:37Z | 2019-10-10T16:41:48Z | 2019-10-10T01:53:18Z | CONTRIBUTOR | null | - [ ] xref #15113 and #26438
First part of removal od ``NDFrame.ix``. There's still alot of tests for this, so I'll do this removal in 2-3 steps. This PR removes pandas/tests/indexing/test_ix.py and tests for ix in a few more places. | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28884/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28884/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28884.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28884",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/28884.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28884"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28885 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28885/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28885/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28885/events | https://github.com/pandas-dev/pandas/pull/28885 | 505,014,887 | MDExOlB1bGxSZXF1ZXN0MzI2NTM1MTg1 | 28,885 | DOC: Fixed PR06 errors in pandas.api.extensions.ExtensionArray | {
"avatar_url": "https://avatars.githubusercontent.com/u/7680686?v=4",
"events_url": "https://api.github.com/users/roshni-b/events{/privacy}",
"followers_url": "https://api.github.com/users/roshni-b/followers",
"following_url": "https://api.github.com/users/roshni-b/following{/other_user}",
"gists_url": "https://api.github.com/users/roshni-b/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/roshni-b",
"id": 7680686,
"login": "roshni-b",
"node_id": "MDQ6VXNlcjc2ODA2ODY=",
"organizations_url": "https://api.github.com/users/roshni-b/orgs",
"received_events_url": "https://api.github.com/users/roshni-b/received_events",
"repos_url": "https://api.github.com/users/roshni-b/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/roshni-b/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/roshni-b/subscriptions",
"type": "User",
"url": "https://api.github.com/users/roshni-b"
} | [
{
"color": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 1 | 2019-10-10T03:45:40Z | 2019-10-10T16:04:28Z | 2019-10-10T16:00:24Z | CONTRIBUTOR | null | - [x] xref #28724
- [ ] tests added / passed
- [x] passes `black pandas`
- [ ] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28885/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28885/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28885.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28885",
"merged_at": "2019-10-10T16:00:24Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28885.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28885"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28886 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28886/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28886/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28886/events | https://github.com/pandas-dev/pandas/pull/28886 | 505,015,272 | MDExOlB1bGxSZXF1ZXN0MzI2NTM1NDcx | 28,886 | REF: use fused types for groupby_helper | {
"avatar_url": "https://avatars.githubusercontent.com/u/8078968?v=4",
"events_url": "https://api.github.com/users/jbrockmendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jbrockmendel/followers",
"following_url": "https://api.github.com/users/jbrockmendel/following{/other_user}",
"gists_url": "https://api.github.com/users/jbrockmendel/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jbrockmendel",
"id": 8078968,
"login": "jbrockmendel",
"node_id": "MDQ6VXNlcjgwNzg5Njg=",
"organizations_url": "https://api.github.com/users/jbrockmendel/orgs",
"received_events_url": "https://api.github.com/users/jbrockmendel/received_events",
"repos_url": "https://api.github.com/users/jbrockmendel/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jbrockmendel/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jbrockmendel/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jbrockmendel"
} | [
{
"color": "729FCF",
"default": false,
"description": null,
"id": 233160,
"name": "Groupby",
"node_id": "MDU6TGFiZWwyMzMxNjA=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Groupby"
},
{
"color": "e102d8",
"default": false,
"description": "Unexpected or b... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 2 | 2019-10-10T03:47:10Z | 2019-10-11T15:25:48Z | 2019-10-11T12:01:31Z | MEMBER | null | There will be some nice cleanups we can do after we bump cython to 0.30 (which hasnt come out yet).
Also I think there is some na-checking code that we can share between the various fused-types functions after this. | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28886/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28886/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28886.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28886",
"merged_at": "2019-10-11T12:01:31Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28886.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28886"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28887 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28887/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28887/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28887/events | https://github.com/pandas-dev/pandas/pull/28887 | 505,017,139 | MDExOlB1bGxSZXF1ZXN0MzI2NTM2ODI5 | 28,887 | DOC: Fixed PR06 error in pandas.io.formats.style.Styler.set_table_attributes | {
"avatar_url": "https://avatars.githubusercontent.com/u/7680686?v=4",
"events_url": "https://api.github.com/users/roshni-b/events{/privacy}",
"followers_url": "https://api.github.com/users/roshni-b/followers",
"following_url": "https://api.github.com/users/roshni-b/following{/other_user}",
"gists_url": "https://api.github.com/users/roshni-b/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/roshni-b",
"id": 7680686,
"login": "roshni-b",
"node_id": "MDQ6VXNlcjc2ODA2ODY=",
"organizations_url": "https://api.github.com/users/roshni-b/orgs",
"received_events_url": "https://api.github.com/users/roshni-b/received_events",
"repos_url": "https://api.github.com/users/roshni-b/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/roshni-b/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/roshni-b/subscriptions",
"type": "User",
"url": "https://api.github.com/users/roshni-b"
} | [
{
"color": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 1 | 2019-10-10T03:54:24Z | 2019-10-10T16:03:57Z | 2019-10-10T15:53:58Z | CONTRIBUTOR | null | - [x] xref #28724
- [ ] tests added / passed
- [x] passes `black pandas`
- [ ] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28887/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28887/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28887.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28887",
"merged_at": "2019-10-10T15:53:58Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28887.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28887"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28888 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28888/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28888/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28888/events | https://github.com/pandas-dev/pandas/pull/28888 | 505,019,250 | MDExOlB1bGxSZXF1ZXN0MzI2NTM4MzYy | 28,888 | DOC: Fixed PR06 error in pandas.Categorical.from_codes | {
"avatar_url": "https://avatars.githubusercontent.com/u/7680686?v=4",
"events_url": "https://api.github.com/users/roshni-b/events{/privacy}",
"followers_url": "https://api.github.com/users/roshni-b/followers",
"following_url": "https://api.github.com/users/roshni-b/following{/other_user}",
"gists_url": "https://api.github.com/users/roshni-b/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/roshni-b",
"id": 7680686,
"login": "roshni-b",
"node_id": "MDQ6VXNlcjc2ODA2ODY=",
"organizations_url": "https://api.github.com/users/roshni-b/orgs",
"received_events_url": "https://api.github.com/users/roshni-b/received_events",
"repos_url": "https://api.github.com/users/roshni-b/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/roshni-b/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/roshni-b/subscriptions",
"type": "User",
"url": "https://api.github.com/users/roshni-b"
} | [
{
"color": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
}
] | closed | false | null | [] | null | 1 | 2019-10-10T04:02:46Z | 2019-10-10T16:05:52Z | 2019-10-10T15:57:24Z | CONTRIBUTOR | null | - [x] xref #28724
- [ ] tests added / passed
- [x] passes `black pandas`
- [ ] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28888/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28888/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28888.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28888",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/28888.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28888"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28889 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28889/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28889/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28889/events | https://github.com/pandas-dev/pandas/issues/28889 | 505,029,072 | MDU6SXNzdWU1MDUwMjkwNzI= | 28,889 | Series <replace> api | {
"avatar_url": "https://avatars.githubusercontent.com/u/19250012?v=4",
"events_url": "https://api.github.com/users/sunnyjiechao/events{/privacy}",
"followers_url": "https://api.github.com/users/sunnyjiechao/followers",
"following_url": "https://api.github.com/users/sunnyjiechao/following{/other_user}",
"gists_url": "https://api.github.com/users/sunnyjiechao/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/sunnyjiechao",
"id": 19250012,
"login": "sunnyjiechao",
"node_id": "MDQ6VXNlcjE5MjUwMDEy",
"organizations_url": "https://api.github.com/users/sunnyjiechao/orgs",
"received_events_url": "https://api.github.com/users/sunnyjiechao/received_events",
"repos_url": "https://api.github.com/users/sunnyjiechao/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/sunnyjiechao/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/sunnyjiechao/subscriptions",
"type": "User",
"url": "https://api.github.com/users/sunnyjiechao"
} | [
{
"color": "0052cc",
"default": false,
"description": null,
"id": 34444536,
"name": "Usage Question",
"node_id": "MDU6TGFiZWwzNDQ0NDUzNg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Usage%20Question"
}
] | closed | false | null | [] | null | 1 | 2019-10-10T04:38:34Z | 2019-10-10T05:34:57Z | 2019-10-10T05:34:50Z | NONE | null | #### Code Sample, a copy-pastable example if possible
```python
# code
df_sam = pd.DataFrame([["a", 'b'], ["", "c"], ["c","d"], ["", "s"]], columns=["col1", "col2"])
```
df_sam dataframe:
| col1 | col2 |
| --- | --- |
| a | b |
| | c|
| c | d |
| | s |
#### the expected result is
```python
df_sam.col1.replace("", None)
```
0 a
1 None
2 c
3 None
Name: col1, dtype: object
#### the actual result is
```python
df_sam.col1.replace("", None)
```
0 a
1 a
2 c
3 c
Name: col1, dtype: object
any idea why the actual result is not what i expected, wondering this isuue is a bug or not?
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28889/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28889/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28890 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28890/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28890/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28890/events | https://github.com/pandas-dev/pandas/pull/28890 | 505,078,538 | MDExOlB1bGxSZXF1ZXN0MzI2NTgyMjY5 | 28,890 | DOC: Update performance comparison section of io docs | {
"avatar_url": "https://avatars.githubusercontent.com/u/42381276?v=4",
"events_url": "https://api.github.com/users/WuraolaOyewusi/events{/privacy}",
"followers_url": "https://api.github.com/users/WuraolaOyewusi/followers",
"following_url": "https://api.github.com/users/WuraolaOyewusi/following{/other_user}",
"gists_url": "https://api.github.com/users/WuraolaOyewusi/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/WuraolaOyewusi",
"id": 42381276,
"login": "WuraolaOyewusi",
"node_id": "MDQ6VXNlcjQyMzgxMjc2",
"organizations_url": "https://api.github.com/users/WuraolaOyewusi/orgs",
"received_events_url": "https://api.github.com/users/WuraolaOyewusi/received_events",
"repos_url": "https://api.github.com/users/WuraolaOyewusi/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/WuraolaOyewusi/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/WuraolaOyewusi/subscriptions",
"type": "User",
"url": "https://api.github.com/users/WuraolaOyewusi"
} | [
{
"color": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 7 | 2019-10-10T07:04:29Z | 2019-11-09T01:00:05Z | 2019-11-09T00:59:55Z | CONTRIBUTOR | null | xref https://github.com/python-sprints/pandas-mentoring/issues/163
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28890/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28890/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28890.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28890",
"merged_at": "2019-11-09T00:59:55Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28890.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28890"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28891 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28891/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28891/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28891/events | https://github.com/pandas-dev/pandas/pull/28891 | 505,086,579 | MDExOlB1bGxSZXF1ZXN0MzI2NTg4NDkx | 28,891 | DOC: Fix commpiler typo in contributing.rst | {
"avatar_url": "https://avatars.githubusercontent.com/u/1130029?v=4",
"events_url": "https://api.github.com/users/shaido987/events{/privacy}",
"followers_url": "https://api.github.com/users/shaido987/followers",
"following_url": "https://api.github.com/users/shaido987/following{/other_user}",
"gists_url": "https://api.github.com/users/shaido987/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/shaido987",
"id": 1130029,
"login": "shaido987",
"node_id": "MDQ6VXNlcjExMzAwMjk=",
"organizations_url": "https://api.github.com/users/shaido987/orgs",
"received_events_url": "https://api.github.com/users/shaido987/received_events",
"repos_url": "https://api.github.com/users/shaido987/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/shaido987/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/shaido987/subscriptions",
"type": "User",
"url": "https://api.github.com/users/shaido987"
} | [
{
"color": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 0 | 2019-10-10T07:23:42Z | 2019-10-10T12:43:43Z | 2019-10-10T09:20:23Z | CONTRIBUTOR | null | Corrects the spelling of compiler in contributing.rst.
- [ ] closes #xxxx
- [ ] tests added / passed
- [ ] passes `black pandas`
- [ ] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28891/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28891/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28891.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28891",
"merged_at": "2019-10-10T09:20:23Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28891.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28891"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28892 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28892/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28892/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28892/events | https://github.com/pandas-dev/pandas/issues/28892 | 505,097,539 | MDU6SXNzdWU1MDUwOTc1Mzk= | 28,892 | A question about pd.qcut | {
"avatar_url": "https://avatars.githubusercontent.com/u/38411803?v=4",
"events_url": "https://api.github.com/users/Janhonho/events{/privacy}",
"followers_url": "https://api.github.com/users/Janhonho/followers",
"following_url": "https://api.github.com/users/Janhonho/following{/other_user}",
"gists_url": "https://api.github.com/users/Janhonho/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/Janhonho",
"id": 38411803,
"login": "Janhonho",
"node_id": "MDQ6VXNlcjM4NDExODAz",
"organizations_url": "https://api.github.com/users/Janhonho/orgs",
"received_events_url": "https://api.github.com/users/Janhonho/received_events",
"repos_url": "https://api.github.com/users/Janhonho/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/Janhonho/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Janhonho/subscriptions",
"type": "User",
"url": "https://api.github.com/users/Janhonho"
} | [
{
"color": "0052cc",
"default": false,
"description": null,
"id": 34444536,
"name": "Usage Question",
"node_id": "MDU6TGFiZWwzNDQ0NDUzNg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Usage%20Question"
},
{
"color": "006b75",
"default": false,
"descript... | closed | false | null | [] | null | 2 | 2019-10-10T07:48:14Z | 2020-04-03T05:47:04Z | 2020-04-03T05:46:57Z | NONE | null | code:
t = [1]*4782+[2]*1030+[3]*251+[4]*122+[5]*177
t = pd.Series(t)
result = pd.qcut(t,50,duplicates = 'drop').value_counts()
problem:
print(result), we get
(0.999, 2.0] 5812
(2.0, 3.0] 251
(4.0, 5.0] 177
(3.0, 4.0] 122
t.value_counts(), we get
1 4782
2 1030
3 251
5 177
4 122
why 1 and 2 combines in the same bin? | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28892/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28892/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28893 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28893/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28893/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28893/events | https://github.com/pandas-dev/pandas/issues/28893 | 505,123,979 | MDU6SXNzdWU1MDUxMjM5Nzk= | 28,893 | whitespaces in column name handled differently than input to eval/query | {
"avatar_url": "https://avatars.githubusercontent.com/u/18293712?v=4",
"events_url": "https://api.github.com/users/EinarJohnsen/events{/privacy}",
"followers_url": "https://api.github.com/users/EinarJohnsen/followers",
"following_url": "https://api.github.com/users/EinarJohnsen/following{/other_user}",
"gists_url": "https://api.github.com/users/EinarJohnsen/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/EinarJohnsen",
"id": 18293712,
"login": "EinarJohnsen",
"node_id": "MDQ6VXNlcjE4MjkzNzEy",
"organizations_url": "https://api.github.com/users/EinarJohnsen/orgs",
"received_events_url": "https://api.github.com/users/EinarJohnsen/received_events",
"repos_url": "https://api.github.com/users/EinarJohnsen/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/EinarJohnsen/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/EinarJohnsen/subscriptions",
"type": "User",
"url": "https://api.github.com/users/EinarJohnsen"
} | [
{
"color": "f3afff",
"default": false,
"description": "pd.eval, query",
"id": 1631985267,
"name": "expressions",
"node_id": "MDU6TGFiZWwxNjMxOTg1MjY3",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/expressions"
}
] | closed | false | null | [] | null | 4 | 2019-10-10T08:42:46Z | 2020-01-29T08:15:19Z | 2020-01-29T08:15:18Z | NONE | null | #### Code Sample
```python
>>> import pandas as pd
>>> d = pd.DataFrame(([1, 2], [3, 4]), columns=["Col 1", "Col 2"])
>>> d.query("`Col 1` < `Col 2`") # This works as expected.
Col 1 Col 2
0 1 2
1 3 4
>>> d.query("`Col 1` < `Col 2`") # 2 whitespaces between "Col" and "1". Also works, but not expected?
Col 1 Col 2
0 1 2
1 3 4
>>> d = pd.DataFrame(([1, 2], [3, 4]), columns=["Col 1", "Col 2"]) # 2 whitespaces between "Col" and "1" in the column name.
>>> d.query("`Col 1` < `Col 2`") # 2 whitespaces between "Col" and "1" in the query.
pandas.core.computation.ops.UndefinedVariableError: name 'Col_1_BACKTICK_QUOTED_STRING' is not defined
>>> d.query("`Col 1` < `Col 2`") # 10 whitespaces between "Col" and "1".
pandas.core.computation.ops.UndefinedVariableError: name 'Col_1_BACKTICK_QUOTED_STRING' is not defined
>>> d.eval("`Col 1` < `Col 2`") # 2 whitespaces between "Col" and "1".
pandas.core.computation.ops.UndefinedVariableError: name 'Col_1_BACKTICK_QUOTED_STRING' is not defined
```
#### Problem description
When using backticks in the input to `DataFrame.query` or `DataFrame.eval`, it seems that the number of whitespaces between `Col` and `1`, is mapped into: `Col_1_BACKTICK_QUOTED_STRING`, regardless of how many whitespaces there are between `Col` and `1`.
Having 2 whitespaces when defining the column name in the DataFrame, it seems that the column name is defined as: `Col__1_BACKTICK_QUOTED_STRING`.
With 10 whitespaces: `Col__________1_BACKTICK_QUOTED_STRING`, and so forth.
This makes the number of whitespaces in the column name important, as column name will be based on the amount of them. However, the number of whitespaces in the input to `DataFrame.query` or `DataFrame.eval` does not seem to have any affect, and will always have one underscore, and not match the column name if it has more than one whitespace.
#### Expected Output
The expected output would be to have the column name and the input to `query` or `eval` transformed with the same function, having a one to one mapping between whitespaces and underscores when definding the variable. i.e.
2 whitespaces: `Col__1_BACKTICK_QUOTED_STRING`.
10 whitespaces: `Col__________1_BACKTICK_QUOTED_STRING`.
#### Output of ``pd.show_versions()``
<details>
INSTALLED VERSIONS
------------------
commit : None
python : 3.6.8.final.0
python-bits : 64
OS : Linux
OS-release : 3.10.0-957.21.3.el7.x86_64
machine : x86_64
processor : x86_64
byteorder : little
LC_ALL : None
LANG : en_US.UTF-8
LOCALE : en_US.UTF-8
pandas : 0.25.1
numpy : 1.17.2
pytz : 2019.3
dateutil : 2.8.0
pip : 19.2.3
setuptools : 41.4.0
Cython : None
pytest : 5.2.1
hypothesis : None
sphinx : None
blosc : None
feather : None
xlsxwriter : None
lxml.etree : None
html5lib : None
pymysql : None
psycopg2 : None
jinja2 : 2.10.1
IPython : 7.8.0
pandas_datareader: None
bs4 : None
bottleneck : None
fastparquet : None
gcsfs : None
lxml.etree : None
matplotlib : None
numexpr : 2.7.0
odfpy : None
openpyxl : None
pandas_gbq : None
pyarrow : 0.15.0
pytables : None
s3fs : None
scipy : 1.3.1
sqlalchemy : None
tables : None
xarray : None
xlrd : None
xlwt : None
xlsxwriter : None
</details> | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28893/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28893/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28894 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28894/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28894/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28894/events | https://github.com/pandas-dev/pandas/pull/28894 | 505,157,874 | MDExOlB1bGxSZXF1ZXN0MzI2NjQ0NjUw | 28,894 | def item( was broken | {
"avatar_url": "https://avatars.githubusercontent.com/u/17853685?v=4",
"events_url": "https://api.github.com/users/avloss/events{/privacy}",
"followers_url": "https://api.github.com/users/avloss/followers",
"following_url": "https://api.github.com/users/avloss/following{/other_user}",
"gists_url": "https://api.github.com/users/avloss/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/avloss",
"id": 17853685,
"login": "avloss",
"node_id": "MDQ6VXNlcjE3ODUzNjg1",
"organizations_url": "https://api.github.com/users/avloss/orgs",
"received_events_url": "https://api.github.com/users/avloss/received_events",
"repos_url": "https://api.github.com/users/avloss/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/avloss/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/avloss/subscriptions",
"type": "User",
"url": "https://api.github.com/users/avloss"
} | [] | closed | false | null | [] | null | 3 | 2019-10-10T09:45:53Z | 2019-10-22T01:04:18Z | 2019-10-22T01:04:18Z | NONE | null | `pd.DataFrame({"a":[1,2,3]}).a.item() ` -- breaks!
`pd.DataFrame({"a":[1,2,3]}).a.values.item(0)` --- this is actual expected behaviour
- [ ] closes #xxxx
- [ ] tests added / passed
- [ ] passes `black pandas`
- [ ] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28894/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28894/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28894.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28894",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/28894.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28894"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28895 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28895/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28895/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28895/events | https://github.com/pandas-dev/pandas/issues/28895 | 505,292,480 | MDU6SXNzdWU1MDUyOTI0ODA= | 28,895 | Create to_elastic method | {
"avatar_url": "https://avatars.githubusercontent.com/u/25480529?v=4",
"events_url": "https://api.github.com/users/kDmartel/events{/privacy}",
"followers_url": "https://api.github.com/users/kDmartel/followers",
"following_url": "https://api.github.com/users/kDmartel/following{/other_user}",
"gists_url": "https://api.github.com/users/kDmartel/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/kDmartel",
"id": 25480529,
"login": "kDmartel",
"node_id": "MDQ6VXNlcjI1NDgwNTI5",
"organizations_url": "https://api.github.com/users/kDmartel/orgs",
"received_events_url": "https://api.github.com/users/kDmartel/received_events",
"repos_url": "https://api.github.com/users/kDmartel/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/kDmartel/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/kDmartel/subscriptions",
"type": "User",
"url": "https://api.github.com/users/kDmartel"
} | [] | closed | false | null | [] | null | 1 | 2019-10-10T14:01:11Z | 2019-10-10T15:12:27Z | 2019-10-10T15:12:27Z | NONE | null | ### Code Sample, a copy-pastable example if possible
### Problem description
Create method to export a pandas dataframe data to elasticsearch json format like to_excel, to_csv, to_sql methods.
### Input
df : pandas dataframe
index : str : elasticsearch index
type : str : elasticsearch type
EX :
df.head()
Name Age Weight
0 Kevin 26 94
1 Marc 32 70
2 Louis 35 80
index = 'personnes'
type = 'homme'
### Usage
df.to_elastic(file_path, 'index'=index, 'type'=type)
### Expected Output
{"index":{"_index": "personnes","_type":"homme","_id":1}}
{"fields" : {"Name" : "Kevin","Age" : 26,"Weight" : 94}
{"index" :{"_index": "personnes","_type":"homme","_id":2}}
{"fields" : {"Name" : "Marx","Age" : 32,"Weight" : 70}
{"index" :{"_index": "personnes","_type":"homme","_id":3}}
{"fields" : {"Name" : "Louis","Age" : 35,"Weight" : 80}
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28895/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28895/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28896 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28896/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28896/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28896/events | https://github.com/pandas-dev/pandas/issues/28896 | 505,328,202 | MDU6SXNzdWU1MDUzMjgyMDI= | 28,896 | Failing multiplication if both dataframes contain the (seemingly) identical categorical column | {
"avatar_url": "https://avatars.githubusercontent.com/u/7702207?v=4",
"events_url": "https://api.github.com/users/harmbuisman/events{/privacy}",
"followers_url": "https://api.github.com/users/harmbuisman/followers",
"following_url": "https://api.github.com/users/harmbuisman/following{/other_user}",
"gists_url": "https://api.github.com/users/harmbuisman/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/harmbuisman",
"id": 7702207,
"login": "harmbuisman",
"node_id": "MDQ6VXNlcjc3MDIyMDc=",
"organizations_url": "https://api.github.com/users/harmbuisman/orgs",
"received_events_url": "https://api.github.com/users/harmbuisman/received_events",
"repos_url": "https://api.github.com/users/harmbuisman/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/harmbuisman/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/harmbuisman/subscriptions",
"type": "User",
"url": "https://api.github.com/users/harmbuisman"
} | [
{
"color": "006b75",
"default": false,
"description": "Arithmetic, Comparison, and Logical operations",
"id": 47223669,
"name": "Numeric Operations",
"node_id": "MDU6TGFiZWw0NzIyMzY2OQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Numeric%20Operations"
},
{
"c... | closed | false | null | [] | null | 2 | 2019-10-10T14:57:25Z | 2020-08-19T12:30:10Z | 2020-08-19T12:30:10Z | NONE | null | #### Code Sample, a copy-pastable example if possible
```python
import pandas as pd
pop = pd.read_pickle('pop.pcl')
a = pd.read_pickle('rates_all.pcl')
b = pd.read_pickle('rates_main.pcl')
print('####### Dataframes #######')
print(pop)
print(a)
print(b)
print('\n####### Indices #######')
print(b.index.get_level_values(1))
print(a.index.get_level_values(1))
print(pop.index.get_level_values(0))
print('\n####### Output #######')
# the following works
print(pop.mul(b))
# the following fails
pop.mul(a)
```
Output:
```python
####### Dataframes #######
Age group 5-yrs to 90 PROVINCIE
0-4 Drenthe 801402
Flevoland 740024
Friesland 1118421
Gelderland 3443051
Groningen 907168
Name: Population, dtype: int32
All tumors Age group 5-yrs to 90
-1 0-4 0.000198
5-9 0.000112
10-14 0.000123
15-19 0.000211
20-24 0.000329
dtype: float64
Main tumor group Age group 5-yrs to 90
0 0-4 3.727047e-07
5-9 2.410106e-07
10-14 3.438238e-07
15-19 6.399917e-08
20-24 1.843772e-07
dtype: float64
####### Indices #######
b: Index([' 0-4', ' 5-9', '10-14', '15-19', '20-24'], dtype='object', name='Age group 5-yrs to 90')
a: CategoricalIndex([' 0-4', ' 5-9', '10-14', '15-19', '20-24'], categories=[' 0-4', ' 5-9', '10-14', '15-19', '20-24', '25-29', '30-34', '35-39', ...], ordered=True, name='Age group 5-yrs to 90', dtype='category')
pop: CategoricalIndex([' 0-4', ' 0-4', ' 0-4', ' 0-4', ' 0-4'], categories=[' 0-4', ' 5-9', '10-14', '15-19', '20-24', '25-29', '30-34', '35-39', ...], ordered=True, name='Age group 5-yrs to 90', dtype='category')
####### Output #######
Age group 5-yrs to 90 PROVINCIE Main tumor group
0-4 Drenthe 0 0.298686
Flevoland 0 0.275810
Friesland 0 0.416841
Gelderland 0 1.283241
Groningen 0 0.338106
5-9 NaN 0 NaN
10-14 NaN 0 NaN
15-19 NaN 0 NaN
20-24 NaN 0 NaN
dtype: float64
```
#### Problem description
The above code needs the following files:
[Analysis.zip](https://github.com/pandas-dev/pandas/files/3712866/Analysis.zip)
Running it leads to an error "TypeError: No matching signature found" in the last call.
The pop dataframe has a category column 'Age group 5-yrs to 90' in the multi-index. In dataframe b the index column 'Age group 5-yrs to 90' has type object. Multiplying both dataframes succeeds. Dataframe a also has a category column 'Age group 5-yrs to 90', but multiplying it with pop fails because it cannot find a matching signature.
#### Expected Output
I would expect the output of pop.mul(a) to be similar to the pop.mul(b) call, without an error.
#### Output of ``pd.show_versions()``
<details>
INSTALLED VERSIONS
------------------
commit : None
python : 3.7.4.final.0
python-bits : 64
OS : Windows
OS-release : 10
machine : AMD64
processor : Intel64 Family 6 Model 142 Stepping 10, GenuineIntel
byteorder : little
LC_ALL : None
LANG : None
LOCALE : None.None
pandas : 0.25.1
numpy : 1.16.4
pytz : 2019.2
dateutil : 2.8.0
pip : 19.2.2
setuptools : 41.0.1
Cython : None
pytest : None
hypothesis : None
sphinx : None
blosc : None
feather : None
xlsxwriter : None
lxml.etree : None
html5lib : None
pymysql : None
psycopg2 : 2.7.6.1 (dt dec pq3 ext lo64)
jinja2 : 2.10.1
IPython : 7.7.0
pandas_datareader: None
bs4 : None
bottleneck : 1.2.1
fastparquet : None
gcsfs : None
lxml.etree : None
matplotlib : 3.1.1
numexpr : None
odfpy : None
openpyxl : None
pandas_gbq : None
pyarrow : None
pytables : None
s3fs : None
scipy : 1.3.1
sqlalchemy : 1.3.7
tables : None
xarray : None
xlrd : None
xlwt : None
xlsxwriter : None
</details>
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28896/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28896/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28897 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28897/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28897/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28897/events | https://github.com/pandas-dev/pandas/pull/28897 | 505,358,818 | MDExOlB1bGxSZXF1ZXN0MzI2ODA3NzY0 | 28,897 | REF: maybe_promote refactor/cleanup | {
"avatar_url": "https://avatars.githubusercontent.com/u/8078968?v=4",
"events_url": "https://api.github.com/users/jbrockmendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jbrockmendel/followers",
"following_url": "https://api.github.com/users/jbrockmendel/following{/other_user}",
"gists_url": "https://api.github.com/users/jbrockmendel/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jbrockmendel",
"id": 8078968,
"login": "jbrockmendel",
"node_id": "MDQ6VXNlcjgwNzg5Njg=",
"organizations_url": "https://api.github.com/users/jbrockmendel/orgs",
"received_events_url": "https://api.github.com/users/jbrockmendel/received_events",
"repos_url": "https://api.github.com/users/jbrockmendel/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jbrockmendel/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jbrockmendel/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jbrockmendel"
} | [
{
"color": "e102d8",
"default": false,
"description": "Unexpected or buggy dtype conversions",
"id": 31404521,
"name": "Dtype Conversions",
"node_id": "MDU6TGFiZWwzMTQwNDUyMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Dtype%20Conversions"
},
{
"color": "207... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 3 | 2019-10-10T15:48:17Z | 2019-10-12T18:27:57Z | 2019-10-12T17:14:22Z | MEMBER | null | There is some casting we currently do in many places in this function. Instead this PR implements `_ensure_dtype_type` and calls it once at the end of the function.
Removes _check_lossless_cast which can be replaced with np.can_cast | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28897/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28897/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28897.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28897",
"merged_at": "2019-10-12T17:14:22Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28897.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28897"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28898 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28898/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28898/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28898/events | https://github.com/pandas-dev/pandas/issues/28898 | 505,373,895 | MDU6SXNzdWU1MDUzNzM4OTU= | 28,898 | AttributeError: module 'pandas.core.common' has no attribute '_unpickle_array' | {
"avatar_url": "https://avatars.githubusercontent.com/u/13159005?v=4",
"events_url": "https://api.github.com/users/simonjayhawkins/events{/privacy}",
"followers_url": "https://api.github.com/users/simonjayhawkins/followers",
"following_url": "https://api.github.com/users/simonjayhawkins/following{/other_user}",
"gists_url": "https://api.github.com/users/simonjayhawkins/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/simonjayhawkins",
"id": 13159005,
"login": "simonjayhawkins",
"node_id": "MDQ6VXNlcjEzMTU5MDA1",
"organizations_url": "https://api.github.com/users/simonjayhawkins/orgs",
"received_events_url": "https://api.github.com/users/simonjayhawkins/received_events",
"repos_url": "https://api.github.com/users/simonjayhawkins/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/simonjayhawkins/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/simonjayhawkins/subscriptions",
"type": "User",
"url": "https://api.github.com/users/simonjayhawkins"
} | [
{
"color": "207de5",
"default": false,
"description": null,
"id": 211029535,
"name": "Clean",
"node_id": "MDU6TGFiZWwyMTEwMjk1MzU=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Clean"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 3 | 2019-10-10T16:15:23Z | 2019-11-07T21:21:43Z | 2019-11-07T21:21:43Z | MEMBER | null | mypy errors
```
pandas\core\frame.py:2742:23: error: Module has no attribute "_unpickle_array" [attr-defined]
pandas\core\frame.py:2744:17: error: Module has no attribute "_unpickle_array" [attr-defined]
pandas\core\frame.py:2751:17: error: Module has no attribute "_unpickle_array" [attr-defined]
pandas\core\frame.py:2752:51: error: Module has no attribute "_unpickle_array" [attr-defined]
pandas\core\frame.py:2757:45: error: Module has no attribute "_unpickle_array" [attr-defined]
```
```python
>>> import pandas as pd
>>>
>>> pd.__version__
'0.26.0.dev0+521.g93183bab1'
>>>
>>> df = pd.DataFrame()
>>>
>>> state = df.__getstate__()
>>>
>>> state
{'_data': BlockManager
Items: Index([], dtype='object')
Axis 1: Index([], dtype='object'), '_typ': 'dataframe', '_metadata': []}
>>>
>>> df._unpickle_frame_compat(state)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Users\simon\pandas-simonjayhawkins\pandas\core\frame.py", line 2717, in _unpickle_frame_compat
columns = com._unpickle_array(cols)
AttributeError: module 'pandas.core.common' has no attribute '_unpickle_array'
>>>
```
we don't have any tests hitting DataFrame._unpickle_frame_compat or DataFrame._unpickle_matrix_compat
https://github.com/pandas-dev/pandas/blob/f625730eb1e729a3f58b213cb31ccf625307b198/pandas/core/frame.py#L2707-L2738
can this code be removed?
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28898/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28898/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28899 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28899/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28899/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28899/events | https://github.com/pandas-dev/pandas/pull/28899 | 505,389,847 | MDExOlB1bGxSZXF1ZXN0MzI2ODMzMTA4 | 28,899 | REF: simplify maybe_promote integer cases | {
"avatar_url": "https://avatars.githubusercontent.com/u/8078968?v=4",
"events_url": "https://api.github.com/users/jbrockmendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jbrockmendel/followers",
"following_url": "https://api.github.com/users/jbrockmendel/following{/other_user}",
"gists_url": "https://api.github.com/users/jbrockmendel/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jbrockmendel",
"id": 8078968,
"login": "jbrockmendel",
"node_id": "MDQ6VXNlcjgwNzg5Njg=",
"organizations_url": "https://api.github.com/users/jbrockmendel/orgs",
"received_events_url": "https://api.github.com/users/jbrockmendel/received_events",
"repos_url": "https://api.github.com/users/jbrockmendel/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jbrockmendel/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jbrockmendel/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jbrockmendel"
} | [
{
"color": "e102d8",
"default": false,
"description": "Unexpected or buggy dtype conversions",
"id": 31404521,
"name": "Dtype Conversions",
"node_id": "MDU6TGFiZWwzMTQwNDUyMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Dtype%20Conversions"
},
{
"color": "207... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 2 | 2019-10-10T16:47:28Z | 2019-10-10T22:58:04Z | 2019-10-10T22:53:02Z | MEMBER | null | @jreback its a little absurd how much this can be simplified after all the trouble I went through to on the last round
Let's hope the float cases simplify as nicely (separate branch/PR) | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28899/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28899/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28899.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28899",
"merged_at": "2019-10-10T22:53:02Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28899.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28899"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28900 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28900/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28900/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28900/events | https://github.com/pandas-dev/pandas/issues/28900 | 505,394,350 | MDU6SXNzdWU1MDUzOTQzNTA= | 28,900 | API/DEPR: numeric_only kwarg for apply/reductions | {
"avatar_url": "https://avatars.githubusercontent.com/u/8078968?v=4",
"events_url": "https://api.github.com/users/jbrockmendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jbrockmendel/followers",
"following_url": "https://api.github.com/users/jbrockmendel/following{/other_user}",
"gists_url": "https://api.github.com/users/jbrockmendel/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jbrockmendel",
"id": 8078968,
"login": "jbrockmendel",
"node_id": "MDQ6VXNlcjgwNzg5Njg=",
"organizations_url": "https://api.github.com/users/jbrockmendel/orgs",
"received_events_url": "https://api.github.com/users/jbrockmendel/received_events",
"repos_url": "https://api.github.com/users/jbrockmendel/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jbrockmendel/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jbrockmendel/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jbrockmendel"
} | [
{
"color": "5319e7",
"default": false,
"description": "Functionality to remove in pandas",
"id": 87485152,
"name": "Deprecate",
"node_id": "MDU6TGFiZWw4NzQ4NTE1Mg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Deprecate"
},
{
"color": "207de5",
"default": f... | closed | false | null | [] | null | 17 | 2019-10-10T16:56:57Z | 2021-10-06T18:08:36Z | 2021-10-06T18:08:36Z | MEMBER | null | A lot of complexity in DataFrame._reduce/apply/groupby ops is driven by the numeric_only=None. In these cases we try to apply the reduction to non-numeric dtypes and if it fails, exclude them. This hugely complicated our exception handling.
We should consider removing that option and require users to subset the appropriate columns before doing their operations. | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28900/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28900/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28901 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28901/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28901/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28901/events | https://github.com/pandas-dev/pandas/issues/28901 | 505,394,520 | MDU6SXNzdWU1MDUzOTQ1MjA= | 28,901 | Unable to map background gradient from numeric column entry to entire row | {
"avatar_url": "https://avatars.githubusercontent.com/u/52220105?v=4",
"events_url": "https://api.github.com/users/IPGreene/events{/privacy}",
"followers_url": "https://api.github.com/users/IPGreene/followers",
"following_url": "https://api.github.com/users/IPGreene/following{/other_user}",
"gists_url": "https://api.github.com/users/IPGreene/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/IPGreene",
"id": 52220105,
"login": "IPGreene",
"node_id": "MDQ6VXNlcjUyMjIwMTA1",
"organizations_url": "https://api.github.com/users/IPGreene/orgs",
"received_events_url": "https://api.github.com/users/IPGreene/received_events",
"repos_url": "https://api.github.com/users/IPGreene/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/IPGreene/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/IPGreene/subscriptions",
"type": "User",
"url": "https://api.github.com/users/IPGreene"
} | [
{
"color": "8AE234",
"default": false,
"description": null,
"id": 2413328,
"name": "Visualization",
"node_id": "MDU6TGFiZWwyNDEzMzI4",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Visualization"
},
{
"color": "006b75",
"default": false,
"description": "co... | closed | false | null | [] | {
"closed_at": "2021-07-02T07:59:17Z",
"closed_issues": 2396,
"created_at": "2020-11-11T19:05:43Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jreback/followers",
"following_url": "https://api.github.com/users/jreback/following{/other_user}",
"gists_url": "https://api.github.com/users/jreback/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jreback",
"id": 953992,
"login": "jreback",
"node_id": "MDQ6VXNlcjk1Mzk5Mg==",
"organizations_url": "https://api.github.com/users/jreback/orgs",
"received_events_url": "https://api.github.com/users/jreback/received_events",
"repos_url": "https://api.github.com/users/jreback/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jreback/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jreback/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jreback"
},
"description": "on-merge: backport to 1.3.x",
"due_on": "2021-06-30T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/80",
"id": 6095818,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/80/labels",
"node_id": "MDk6TWlsZXN0b25lNjA5NTgxOA==",
"number": 80,
"open_issues": 1,
"state": "closed",
"title": "1.3",
"updated_at": "2021-08-25T20:34:06Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/80"
} | 1 | 2019-10-10T16:57:20Z | 2021-03-25T01:55:01Z | 2021-02-20T21:07:11Z | NONE | null |
```python
import pandas as pd
import seaborn as sns
data = [['thing', 'T01', 0], ['thing2', 'T02', 5], ['thing3', 'T03', 25], ['thing', 'T01', 2]]
df = pd.DataFrame(data, columns=['Access', 'Access ID', 'Freq'])
cm = sns.light_palette("green", as_cmap=True)
df.style.set_caption('Access').background_gradient(cmap=cm, axis=0)
```
Currently I'm only able to apply background gradient to the 'freq' column however it would be ideal if it would colour the entire row.
**Note**: We receive a lot of issues on our GitHub tracker, so it is very possible that your issue has been posted before. Please check first before submitting so that we do not have to handle and close duplicates!
**Note**: Many problems can be resolved by simply upgrading `pandas` to the latest version. Before submitting, please check if that solution works for you. If possible, you may want to check if `master` addresses this issue, but that is not necessary.
For documentation-related issues, you can check the latest versions of the docs on `master` here:
https://pandas-docs.github.io/pandas-docs-travis/
If the issue has not been resolved there, go ahead and file it in the issue tracker.
#### Expected Output
#### Output of ``pd.show_versions()``
<details>
[paste the output of ``pd.show_versions()`` here below this line]
INSTALLED VERSIONS
------------------
commit: None
python: 3.7.3.final.0
python-bits: 64
OS: Windows
OS-release: 10
machine: AMD64
processor: Intel64 Family 6 Model 142 Stepping 10, GenuineIntel
byteorder: little
LC_ALL: None
LANG: None
LOCALE: None.None
pandas: 0.24.2
pytest: 4.3.1
pip: 19.0.3
setuptools: 40.8.0
Cython: 0.29.6
numpy: 1.16.2
scipy: 1.2.1
pyarrow: None
xarray: None
IPython: 7.4.0
sphinx: 1.8.5
patsy: 0.5.1
dateutil: 2.8.0
pytz: 2018.9
blosc: None
bottleneck: 1.2.1
tables: 3.5.1
numexpr: 2.6.9
feather: None
matplotlib: 3.0.3
openpyxl: 2.6.1
xlrd: 1.2.0
xlwt: 1.3.0
xlsxwriter: 1.1.5
lxml.etree: 4.3.2
bs4: 4.7.1
html5lib: 1.0.1
sqlalchemy: 1.3.1
pymysql: None
psycopg2: None
jinja2: 2.10
s3fs: None
fastparquet: None
pandas_gbq: None
pandas_datareader: None
gcsfs: None
</details>
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28901/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28901/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28902 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28902/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28902/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28902/events | https://github.com/pandas-dev/pandas/issues/28902 | 505,401,491 | MDU6SXNzdWU1MDU0MDE0OTE= | 28,902 | No metadata preventing installs of other packages | {
"avatar_url": "https://avatars.githubusercontent.com/u/11297053?v=4",
"events_url": "https://api.github.com/users/LizMcQuillan/events{/privacy}",
"followers_url": "https://api.github.com/users/LizMcQuillan/followers",
"following_url": "https://api.github.com/users/LizMcQuillan/following{/other_user}",
"gists_url": "https://api.github.com/users/LizMcQuillan/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/LizMcQuillan",
"id": 11297053,
"login": "LizMcQuillan",
"node_id": "MDQ6VXNlcjExMjk3MDUz",
"organizations_url": "https://api.github.com/users/LizMcQuillan/orgs",
"received_events_url": "https://api.github.com/users/LizMcQuillan/received_events",
"repos_url": "https://api.github.com/users/LizMcQuillan/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/LizMcQuillan/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/LizMcQuillan/subscriptions",
"type": "User",
"url": "https://api.github.com/users/LizMcQuillan"
} | [] | closed | false | null | [] | null | 6 | 2019-10-10T17:12:50Z | 2019-10-11T14:02:44Z | 2019-10-11T14:02:44Z | NONE | null | I'm trying to install a few packages (spacy, scattertext, etc) and keep getting this pandas error
```
No metadata found in ./anaconda3/lib/python3.7/site-packages
Could not install packages due to an EnvironmentError: [Errno 2] No such file or directory: '/Users/lmcquillan/anaconda3/lib/python3.7/site-packages/pandas-0.25.1.dist-info/METADATA'
```
Haven't been able to find a solution yet. I've tried uninstalling/reinstalling to no avail.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28902/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28902/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28903 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28903/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28903/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28903/events | https://github.com/pandas-dev/pandas/issues/28903 | 505,469,024 | MDU6SXNzdWU1MDU0NjkwMjQ= | 28,903 | groupby boxplot example does not work | {
"avatar_url": "https://avatars.githubusercontent.com/u/4280843?v=4",
"events_url": "https://api.github.com/users/ingrid88/events{/privacy}",
"followers_url": "https://api.github.com/users/ingrid88/followers",
"following_url": "https://api.github.com/users/ingrid88/following{/other_user}",
"gists_url": "https://api.github.com/users/ingrid88/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/ingrid88",
"id": 4280843,
"login": "ingrid88",
"node_id": "MDQ6VXNlcjQyODA4NDM=",
"organizations_url": "https://api.github.com/users/ingrid88/orgs",
"received_events_url": "https://api.github.com/users/ingrid88/received_events",
"repos_url": "https://api.github.com/users/ingrid88/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/ingrid88/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/ingrid88/subscriptions",
"type": "User",
"url": "https://api.github.com/users/ingrid88"
} | [
{
"color": "729FCF",
"default": false,
"description": null,
"id": 233160,
"name": "Groupby",
"node_id": "MDU6TGFiZWwyMzMxNjA=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Groupby"
},
{
"color": "8AE234",
"default": false,
"description": null,
"id": ... | closed | false | {
"avatar_url": "https://avatars.githubusercontent.com/u/65821810?v=4",
"events_url": "https://api.github.com/users/gsyqax/events{/privacy}",
"followers_url": "https://api.github.com/users/gsyqax/followers",
"following_url": "https://api.github.com/users/gsyqax/following{/other_user}",
"gists_url": "https://api.github.com/users/gsyqax/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/gsyqax",
"id": 65821810,
"login": "gsyqax",
"node_id": "MDQ6VXNlcjY1ODIxODEw",
"organizations_url": "https://api.github.com/users/gsyqax/orgs",
"received_events_url": "https://api.github.com/users/gsyqax/received_events",
"repos_url": "https://api.github.com/users/gsyqax/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/gsyqax/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/gsyqax/subscriptions",
"type": "User",
"url": "https://api.github.com/users/gsyqax"
} | [
{
"avatar_url": "https://avatars.githubusercontent.com/u/65821810?v=4",
"events_url": "https://api.github.com/users/gsyqax/events{/privacy}",
"followers_url": "https://api.github.com/users/gsyqax/followers",
"following_url": "https://api.github.com/users/gsyqax/following{/other_user}",
"gists_ur... | {
"closed_at": "2020-07-28T18:13:47Z",
"closed_issues": 2378,
"created_at": "2019-12-02T12:52:48Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jreback/followers",
"following_url": "https://api.github.com/users/jreback/following{/other_user}",
"gists_url": "https://api.github.com/users/jreback/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jreback",
"id": 953992,
"login": "jreback",
"node_id": "MDQ6VXNlcjk1Mzk5Mg==",
"organizations_url": "https://api.github.com/users/jreback/orgs",
"received_events_url": "https://api.github.com/users/jreback/received_events",
"repos_url": "https://api.github.com/users/jreback/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jreback/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jreback/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jreback"
},
"description": "",
"due_on": "2020-08-01T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/68",
"id": 4894670,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/68/labels",
"node_id": "MDk6TWlsZXN0b25lNDg5NDY3MA==",
"number": 68,
"open_issues": 0,
"state": "closed",
"title": "1.1",
"updated_at": "2021-07-17T17:25:28Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/68"
} | 5 | 2019-10-10T19:35:31Z | 2020-07-07T11:09:10Z | 2020-07-07T11:09:10Z | NONE | null | #### Problem description
Code found here:
https://github.com/pandas-dev/pandas/blob/v0.25.1/pandas/plotting/_core.py#L424
Example from https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.core.groupby.DataFrameGroupBy.boxplot.html does not work properly.
#### Code Sample
```python
import itertools
tuples = [t for t in itertools.product(range(1000), range(4))]
index = pd.MultiIndex.from_tuples(tuples, names=['lvl0', 'lvl1'])
data = np.random.randn(len(index),4)
df = pd.DataFrame(data, columns=list('ABCD'), index=index)
grouped = df.groupby(level='lvl1')
boxplot_frame_groupby(grouped)
grouped = df.unstack(level='lvl1').groupby(level=0, axis=1)
boxplot_frame_groupby(grouped, subplots=False)
```
#### Resulting Error
```python
---------------------------------------------------------------------------
NameError Traceback (most recent call last)
<ipython-input-49-1a28c2f7125d> in <module>
5 df = pd.DataFrame(data, columns=list('ABCD'), index=index)
6 grouped = df.groupby(level='lvl1')
----> 7 boxplot_frame_groupby(grouped)
8 grouped = df.unstack(level='lvl1').groupby(level=0, axis=1)
9 boxplot_frame_groupby(grouped, subplots=False)
NameError: name 'boxplot_frame_groupby' is not defined
``` | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28903/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28903/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28904 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28904/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28904/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28904/events | https://github.com/pandas-dev/pandas/pull/28904 | 505,471,094 | MDExOlB1bGxSZXF1ZXN0MzI2ODk4MTk3 | 28,904 | clean tests/indexing/common.py | {
"avatar_url": "https://avatars.githubusercontent.com/u/26364415?v=4",
"events_url": "https://api.github.com/users/topper-123/events{/privacy}",
"followers_url": "https://api.github.com/users/topper-123/followers",
"following_url": "https://api.github.com/users/topper-123/following{/other_user}",
"gists_url": "https://api.github.com/users/topper-123/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/topper-123",
"id": 26364415,
"login": "topper-123",
"node_id": "MDQ6VXNlcjI2MzY0NDE1",
"organizations_url": "https://api.github.com/users/topper-123/orgs",
"received_events_url": "https://api.github.com/users/topper-123/received_events",
"repos_url": "https://api.github.com/users/topper-123/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/topper-123/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/topper-123/subscriptions",
"type": "User",
"url": "https://api.github.com/users/topper-123"
} | [
{
"color": "C4A000",
"default": false,
"description": "pandas testing functions or related to the test suite",
"id": 127685,
"name": "Testing",
"node_id": "MDU6TGFiZWwxMjc2ODU=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Testing"
},
{
"color": "0b02e1",
"d... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 1 | 2019-10-10T19:40:09Z | 2019-10-11T16:07:25Z | 2019-10-11T12:00:15Z | CONTRIBUTOR | null | clean-up of tests/indexing/common.py. | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28904/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28904/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28904.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28904",
"merged_at": "2019-10-11T12:00:15Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28904.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28904"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28905 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28905/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28905/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28905/events | https://github.com/pandas-dev/pandas/issues/28905 | 505,471,489 | MDU6SXNzdWU1MDU0NzE0ODk= | 28,905 | Warning when plotting a DataFrame with a single row | {
"avatar_url": "https://avatars.githubusercontent.com/u/4617010?v=4",
"events_url": "https://api.github.com/users/madphysicist/events{/privacy}",
"followers_url": "https://api.github.com/users/madphysicist/followers",
"following_url": "https://api.github.com/users/madphysicist/following{/other_user}",
"gists_url": "https://api.github.com/users/madphysicist/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/madphysicist",
"id": 4617010,
"login": "madphysicist",
"node_id": "MDQ6VXNlcjQ2MTcwMTA=",
"organizations_url": "https://api.github.com/users/madphysicist/orgs",
"received_events_url": "https://api.github.com/users/madphysicist/received_events",
"repos_url": "https://api.github.com/users/madphysicist/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/madphysicist/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/madphysicist/subscriptions",
"type": "User",
"url": "https://api.github.com/users/madphysicist"
} | [
{
"color": "8AE234",
"default": false,
"description": null,
"id": 2413328,
"name": "Visualization",
"node_id": "MDU6TGFiZWwyNDEzMzI4",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Visualization"
}
] | closed | false | null | [] | null | 4 | 2019-10-10T19:41:05Z | 2020-02-17T15:27:36Z | 2020-02-17T15:27:35Z | NONE | null | Closely related to #18306, item 9 in the listing, but probably not an exact duplicate. Based on StackOverflow question https://stackoverflow.com/q/58322744/2988730.
Simple code to reproduce:
```
import pandas as pd
df = pd.DataFrame([[1, 2, 3]], columns=['A', 'B', 'C'])
df.set_index('A', inplace=True)
df.plot()
```
This generates
```
UserWarning: Attempting to set identical left == right == 1.0 results in singular transformations; automatically expanding.
ax.set_xlim(left, right)
```
Expected behavior is that the default xlims of `[None, None]` will let matplotlib compute its own limits. Instead, it appears that pandas is computing the limits based on the min and max of the data. This seems redundant at best, and incorrect in this particular case. | {
"+1": 1,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 1,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28905/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28905/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28906 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28906/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28906/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28906/events | https://github.com/pandas-dev/pandas/issues/28906 | 505,483,922 | MDU6SXNzdWU1MDU0ODM5MjI= | 28,906 | read_json doesn't work on binary files with lines=True and chunksize | {
"avatar_url": "https://avatars.githubusercontent.com/u/7347808?v=4",
"events_url": "https://api.github.com/users/nlarusstone/events{/privacy}",
"followers_url": "https://api.github.com/users/nlarusstone/followers",
"following_url": "https://api.github.com/users/nlarusstone/following{/other_user}",
"gists_url": "https://api.github.com/users/nlarusstone/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/nlarusstone",
"id": 7347808,
"login": "nlarusstone",
"node_id": "MDQ6VXNlcjczNDc4MDg=",
"organizations_url": "https://api.github.com/users/nlarusstone/orgs",
"received_events_url": "https://api.github.com/users/nlarusstone/received_events",
"repos_url": "https://api.github.com/users/nlarusstone/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/nlarusstone/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/nlarusstone/subscriptions",
"type": "User",
"url": "https://api.github.com/users/nlarusstone"
} | [
{
"color": "4E9A06",
"default": false,
"description": null,
"id": 76812,
"name": "Enhancement",
"node_id": "MDU6TGFiZWw3NjgxMg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Enhancement"
},
{
"color": "207de5",
"default": false,
"description": "read_jso... | open | false | null | [] | null | 6 | 2019-10-10T20:08:23Z | 2020-06-15T06:21:06Z | null | NONE | null | #### Code Sample, a copy-pastable example if possible
Using `test.jsonl` as the following:
{"test1":10}
{"test2":"hi"}
```python
with open('test.jsonl', 'rb') as f:
df = pd.read_json(f, lines=True, chunksize=1)
for chunk in df:
print(chunk)
```
#### Problem description
When I try to use `read_json` on a binary file with `lines=True` and `chunksize` set, I get the following error:
`TypeError: sequence item 0: expected str instance, bytes found`
It works when I remove the chunksize parameter. I'm guessing that the chunksize isn't taking into account the fact that the file is being read as a binary file.
#### Expected Output
I expect to be able to read a file using `lines=True` and `chunksize`
#### Output of ``pd.show_versions()``
INSTALLED VERSIONS
------------------
commit : None
pandas : 0.25.1
numpy : 1.15.2
pytz : 2019.1
dateutil : 2.8.0
pip : 19.2.3
setuptools : 41.4.0
Cython : None
pytest : 5.0.1
hypothesis : None
sphinx : None
blosc : None
feather : None
xlsxwriter : None
lxml.etree : None
html5lib : None
pymysql : None
psycopg2 : None
jinja2 : 2.10.3
IPython : 7.8.0
pandas_datareader: None
bs4 : None
bottleneck : None
fastparquet : None
gcsfs : None
lxml.etree : None
matplotlib : 3.0.2
numexpr : None
odfpy : None
openpyxl : None
pandas_gbq : None
pyarrow : 0.15.0
pytables : None
s3fs : 0.3.5
scipy : 1.2.0
sqlalchemy : 1.3.9
tables : None
xarray : None
xlrd : 1.2.0
xlwt : None
xlsxwriter : None
| {
"+1": 1,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 1,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28906/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28906/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28907 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28907/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28907/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28907/events | https://github.com/pandas-dev/pandas/pull/28907 | 505,493,521 | MDExOlB1bGxSZXF1ZXN0MzI2OTE1OTk5 | 28,907 | Added note to 'contributing.rst file', telling users to append GH Issue… | {
"avatar_url": "https://avatars.githubusercontent.com/u/32435177?v=4",
"events_url": "https://api.github.com/users/S3rbane/events{/privacy}",
"followers_url": "https://api.github.com/users/S3rbane/followers",
"following_url": "https://api.github.com/users/S3rbane/following{/other_user}",
"gists_url": "https://api.github.com/users/S3rbane/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/S3rbane",
"id": 32435177,
"login": "S3rbane",
"node_id": "MDQ6VXNlcjMyNDM1MTc3",
"organizations_url": "https://api.github.com/users/S3rbane/orgs",
"received_events_url": "https://api.github.com/users/S3rbane/received_events",
"repos_url": "https://api.github.com/users/S3rbane/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/S3rbane/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/S3rbane/subscriptions",
"type": "User",
"url": "https://api.github.com/users/S3rbane"
} | [
{
"color": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 2 | 2019-10-10T20:28:37Z | 2019-10-12T17:10:03Z | 2019-10-12T17:09:57Z | CONTRIBUTOR | null | … Number to new tests.
- [ X ] closes #28703
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28907/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28907/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28907.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28907",
"merged_at": "2019-10-12T17:09:57Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28907.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28907"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28908 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28908/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28908/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28908/events | https://github.com/pandas-dev/pandas/pull/28908 | 505,523,128 | MDExOlB1bGxSZXF1ZXN0MzI2OTM5MzEx | 28,908 | TYPING: fix type annotation for pandas.io.formats.format._binify | {
"avatar_url": "https://avatars.githubusercontent.com/u/13159005?v=4",
"events_url": "https://api.github.com/users/simonjayhawkins/events{/privacy}",
"followers_url": "https://api.github.com/users/simonjayhawkins/followers",
"following_url": "https://api.github.com/users/simonjayhawkins/following{/other_user}",
"gists_url": "https://api.github.com/users/simonjayhawkins/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/simonjayhawkins",
"id": 13159005,
"login": "simonjayhawkins",
"node_id": "MDQ6VXNlcjEzMTU5MDA1",
"organizations_url": "https://api.github.com/users/simonjayhawkins/orgs",
"received_events_url": "https://api.github.com/users/simonjayhawkins/received_events",
"repos_url": "https://api.github.com/users/simonjayhawkins/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/simonjayhawkins/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/simonjayhawkins/subscriptions",
"type": "User",
"url": "https://api.github.com/users/simonjayhawkins"
} | [
{
"color": "ea91a4",
"default": false,
"description": "type annotations, mypy/pyright type checking",
"id": 1280988427,
"name": "Typing",
"node_id": "MDU6TGFiZWwxMjgwOTg4NDI3",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Typing"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 1 | 2019-10-10T21:33:51Z | 2019-10-11T12:41:24Z | 2019-10-11T12:41:20Z | MEMBER | null | - [ ] closes #28843
- [n/a ] tests added / passed
- [ ] passes `black pandas`
- [ ] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [n/a ] whatsnew entry
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28908/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28908/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28908.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28908",
"merged_at": "2019-10-11T12:41:20Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28908.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28908"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28909 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28909/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28909/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28909/events | https://github.com/pandas-dev/pandas/issues/28909 | 505,529,066 | MDU6SXNzdWU1MDU1MjkwNjY= | 28,909 | DOC: diff() when using unsigned ints | {
"avatar_url": "https://avatars.githubusercontent.com/u/45035434?v=4",
"events_url": "https://api.github.com/users/jjlkant/events{/privacy}",
"followers_url": "https://api.github.com/users/jjlkant/followers",
"following_url": "https://api.github.com/users/jjlkant/following{/other_user}",
"gists_url": "https://api.github.com/users/jjlkant/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jjlkant",
"id": 45035434,
"login": "jjlkant",
"node_id": "MDQ6VXNlcjQ1MDM1NDM0",
"organizations_url": "https://api.github.com/users/jjlkant/orgs",
"received_events_url": "https://api.github.com/users/jjlkant/received_events",
"repos_url": "https://api.github.com/users/jjlkant/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jjlkant/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jjlkant/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jjlkant"
} | [
{
"color": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
}
] | closed | false | null | [] | {
"closed_at": "2020-07-28T18:13:47Z",
"closed_issues": 2378,
"created_at": "2019-12-02T12:52:48Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jreback/followers",
"following_url": "https://api.github.com/users/jreback/following{/other_user}",
"gists_url": "https://api.github.com/users/jreback/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jreback",
"id": 953992,
"login": "jreback",
"node_id": "MDQ6VXNlcjk1Mzk5Mg==",
"organizations_url": "https://api.github.com/users/jreback/orgs",
"received_events_url": "https://api.github.com/users/jreback/received_events",
"repos_url": "https://api.github.com/users/jreback/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jreback/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jreback/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jreback"
},
"description": "",
"due_on": "2020-08-01T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/68",
"id": 4894670,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/68/labels",
"node_id": "MDk6TWlsZXN0b25lNDg5NDY3MA==",
"number": 68,
"open_issues": 0,
"state": "closed",
"title": "1.1",
"updated_at": "2021-07-17T17:25:28Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/68"
} | 0 | 2019-10-10T21:49:32Z | 2020-06-01T10:32:23Z | 2020-06-01T10:32:23Z | CONTRIBUTOR | null | #### Code Sample, a copy-pastable example if possible
```python
>>> import numpy as np
>>> import pandas as pd
>>>
>>> s = pd.Series([1, 0], dtype=np.uint8)
>>> s.diff()
0 NaN
1 255.0
dtype: float64
```
#### Problem description
The current version of the docs don't reflect on what happens when a Series or DataFrame containing unsigned ints are used with the `diff()` function, especially for cases where integer overflow occurs.
NumPy handles this in their docs for `numpy.diff()`, stating:
> For unsigned integer arrays, the results will also be unsigned. This should not be surprising, as the result is consistent with calculating the difference directly:
```python
>>> u8_arr = np.array([1, 0], dtype=np.uint8)
>>> np.diff(u8_arr)
array([255], dtype=uint8)
>>> u8_arr[1,...] - u8_arr[0,...]
255
```
The behaviour of `pandas.Series.diff()` and `pandas.DataFrame.diff()` during calculation is the same as the NumPy equivalent, but the actual return type is no longer an unsigned integer; it will always return with a `float64` type.
#### Expected Output
The current output _can_ be expected when the user is perfectly aware that integer overflow might possibly occur during the calculation of the `diff()` output, even though it returns as a `float64` dtype. I do think it is desired to mention this in docs similarly to the NumPy equivalent though.
However, since the output dtype of `diff()` will always be `float64`, this also allows to handle the case differently: Instead of storing the output of the calculation:
https://github.com/pandas-dev/pandas/blob/0c4404b5b85c085e5b6cd26be42e81e5a197fd8d/pandas/core/algorithms.py#L1964
into a float64 dtyped array, it would also be possible to process the values as float instead of integers? This would generate the output:
```
0 NaN
1 -1.0
dtype: float64
```
I understand that this might go against the absolute difference of the elements as they are defined inside of the Series or DataFrame, but it would better fit the output type? Maybe just a warning for the overflow is the best middle ground instead? Would love to hear your thoughts on the case...
#### Output of ``pd.show_versions()``
<details>
INSTALLED VERSIONS
------------------
commit : None
python : 3.7.4.final.0
python-bits : 64
OS : Windows
OS-release : 10
machine : AMD64
processor : Intel64 Family 6 Model 158 Stepping 10, GenuineIntel
byteorder : little
LC_ALL : None
LANG : en_US.UTF-8
LOCALE : None.None
pandas : 0.25.1
numpy : 1.17.2
pytz : 2019.2
dateutil : 2.8.0
pip : 19.2.3
setuptools : 41.2.0
Cython : None
pytest : None
hypothesis : None
sphinx : None
blosc : None
feather : None
xlsxwriter : None
lxml.etree : None
html5lib : None
pymysql : None
psycopg2 : None
jinja2 : None
IPython : None
pandas_datareader: None
bs4 : None
bottleneck : None
fastparquet : None
gcsfs : None
lxml.etree : None
matplotlib : 3.1.1
numexpr : None
odfpy : None
openpyxl : None
pandas_gbq : None
pyarrow : None
pytables : None
s3fs : None
scipy : 1.3.1
sqlalchemy : None
tables : None
xarray : None
xlrd : None
xlwt : None
xlsxwriter : None
</details>
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28909/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28909/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28910 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28910/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28910/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28910/events | https://github.com/pandas-dev/pandas/pull/28910 | 505,529,698 | MDExOlB1bGxSZXF1ZXN0MzI2OTQ0Njc2 | 28,910 | TYPING: errors reported by mypy 0.730 | {
"avatar_url": "https://avatars.githubusercontent.com/u/13159005?v=4",
"events_url": "https://api.github.com/users/simonjayhawkins/events{/privacy}",
"followers_url": "https://api.github.com/users/simonjayhawkins/followers",
"following_url": "https://api.github.com/users/simonjayhawkins/following{/other_user}",
"gists_url": "https://api.github.com/users/simonjayhawkins/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/simonjayhawkins",
"id": 13159005,
"login": "simonjayhawkins",
"node_id": "MDQ6VXNlcjEzMTU5MDA1",
"organizations_url": "https://api.github.com/users/simonjayhawkins/orgs",
"received_events_url": "https://api.github.com/users/simonjayhawkins/received_events",
"repos_url": "https://api.github.com/users/simonjayhawkins/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/simonjayhawkins/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/simonjayhawkins/subscriptions",
"type": "User",
"url": "https://api.github.com/users/simonjayhawkins"
} | [
{
"color": "ea91a4",
"default": false,
"description": "type annotations, mypy/pyright type checking",
"id": 1280988427,
"name": "Typing",
"node_id": "MDU6TGFiZWwxMjgwOTg4NDI3",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Typing"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "on-merge: backport to 1.0.x",
"due_on": "2020-02-01T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/16",
"id": 174211,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels",
"node_id": "MDk6TWlsZXN0b25lMTc0MjEx",
"number": 16,
"open_issues": 0,
"state": "closed",
"title": "1.0.0",
"updated_at": "2020-01-30T12:18:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16"
} | 1 | 2019-10-10T21:51:14Z | 2019-10-11T13:44:44Z | 2019-10-11T11:58:25Z | MEMBER | null | errors reported by mypy 0.730 on master.
```
pandas\compat\pickle_compat.py:71: error: Incompatible return type for "__new__" (returns "Series", but must return a subtype of "_LoadSparseSeries")
pandas\compat\pickle_compat.py:85: error: Incompatible return type for "__new__" (returns "DataFrame", but must return a subtype of "_LoadSparseFrame")
```
probably makes sense to apply these changes now to avoid ci breakage on mypy bump.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28910/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28910/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28910.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28910",
"merged_at": "2019-10-11T11:58:24Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28910.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28910"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28911 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28911/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28911/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28911/events | https://github.com/pandas-dev/pandas/issues/28911 | 505,532,987 | MDU6SXNzdWU1MDU1MzI5ODc= | 28,911 | REF: get rid of register_dtype | {
"avatar_url": "https://avatars.githubusercontent.com/u/8078968?v=4",
"events_url": "https://api.github.com/users/jbrockmendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jbrockmendel/followers",
"following_url": "https://api.github.com/users/jbrockmendel/following{/other_user}",
"gists_url": "https://api.github.com/users/jbrockmendel/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jbrockmendel",
"id": 8078968,
"login": "jbrockmendel",
"node_id": "MDQ6VXNlcjgwNzg5Njg=",
"organizations_url": "https://api.github.com/users/jbrockmendel/orgs",
"received_events_url": "https://api.github.com/users/jbrockmendel/received_events",
"repos_url": "https://api.github.com/users/jbrockmendel/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jbrockmendel/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jbrockmendel/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jbrockmendel"
} | [
{
"color": "FCE94F",
"default": false,
"description": "Internal refactoring of code",
"id": 127681,
"name": "Refactor",
"node_id": "MDU6TGFiZWwxMjc2ODE=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Refactor"
},
{
"color": "207de5",
"default": false,
"de... | closed | false | null | [] | null | 3 | 2019-10-10T22:00:27Z | 2019-11-05T22:10:26Z | 2019-11-05T22:10:26Z | MEMBER | null | AFAICT the only reason we need register_dtype is so that we can have a list of extent EA Dtypes to iterate over when doing is_extension_array_dtype. Is that inaccurate?
If so, let's just use `ExtensionDtype.__subclasses__()` and avoid some globals and decorators. | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28911/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28911/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28912 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28912/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28912/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28912/events | https://github.com/pandas-dev/pandas/pull/28912 | 505,537,362 | MDExOlB1bGxSZXF1ZXN0MzI2OTUwNzQ4 | 28,912 | Maintain Timezone Awareness with to_json and date_format="iso" | {
"avatar_url": "https://avatars.githubusercontent.com/u/609873?v=4",
"events_url": "https://api.github.com/users/WillAyd/events{/privacy}",
"followers_url": "https://api.github.com/users/WillAyd/followers",
"following_url": "https://api.github.com/users/WillAyd/following{/other_user}",
"gists_url": "https://api.github.com/users/WillAyd/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/WillAyd",
"id": 609873,
"login": "WillAyd",
"node_id": "MDQ6VXNlcjYwOTg3Mw==",
"organizations_url": "https://api.github.com/users/WillAyd/orgs",
"received_events_url": "https://api.github.com/users/WillAyd/received_events",
"repos_url": "https://api.github.com/users/WillAyd/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/WillAyd/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/WillAyd/subscriptions",
"type": "User",
"url": "https://api.github.com/users/WillAyd"
} | [
{
"color": "207de5",
"default": false,
"description": "read_json, to_json, json_normalize",
"id": 49379259,
"name": "IO JSON",
"node_id": "MDU6TGFiZWw0OTM3OTI1OQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20JSON"
},
{
"color": "5319e7",
"default": fa... | closed | false | null | [] | null | 2 | 2019-10-10T22:11:53Z | 2020-01-16T00:33:47Z | 2019-10-30T17:09:37Z | MEMBER | null | - [X] closes #12997
- [X] tests added / passed
- [X] passes `black pandas`
- [X] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [X] whatsnew entry
This vendors updates from numpy that allow for tz-aware ISO date formatting. Note this does slightly change the behavior of UTC dates. Previously they would write out as `2013-01-01T05:00:00.000Z` but now are `2013-01-01T05:00:00.000+00:00`. Both are valid ISO 8601
There is a follow up that needs to be addressed with reading these dates | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28912/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28912/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28912.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28912",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/28912.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28912"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.