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/35217
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35217/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35217/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35217/events
https://github.com/pandas-dev/pandas/issues/35217
654,946,405
MDU6SXNzdWU2NTQ5NDY0MDU=
35,217
BUG: Inconsistent behavior in Index.difference
{ "avatar_url": "https://avatars.githubusercontent.com/u/11664259?v=4", "events_url": "https://api.github.com/users/galipremsagar/events{/privacy}", "followers_url": "https://api.github.com/users/galipremsagar/followers", "following_url": "https://api.github.com/users/galipremsagar/following{/other_user}", "gists_url": "https://api.github.com/users/galipremsagar/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/galipremsagar", "id": 11664259, "login": "galipremsagar", "node_id": "MDQ6VXNlcjExNjY0MjU5", "organizations_url": "https://api.github.com/users/galipremsagar/orgs", "received_events_url": "https://api.github.com/users/galipremsagar/received_events", "repos_url": "https://api.github.com/users/galipremsagar/repos", "site_admin": false, "starred_url": "https://api.github.com/users/galipremsagar/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/galipremsagar/subscriptions", "type": "User", "url": "https://api.github.com/users/galipremsagar" }
[ { "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": "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" }, { "color": "e99695", "default": false, "description": "Related to the Index class or subclasses", "id": 1218227310, "name": "Index", "node_id": "MDU6TGFiZWwxMjE4MjI3MzEw", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Index" } ]
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" }
1
2020-07-10T18:04:44Z
2020-07-16T09:55:14Z
2020-07-16T09:55:14Z
NONE
null
- [x] I have checked that this issue has not already been reported. - [x] I have confirmed this bug exists on the latest version of pandas. - [ ] (optional) I have confirmed this bug exists on the master branch of pandas. --- `Index.difference` seems to be treating float vs object / int vs object differently. #### Code Sample, a copy-pastable example ```python import pandas as pd float_index = pd.Index([1.0, 2, 3]) string_index = pd.Index(['1','2','3']) integer_index = pd.Index([1, 2, 3]) print(float_index.difference(string_index)) print(string_index.difference(float_index)) print(integer_index.difference(string_index)) print(string_index.difference(integer_index)) Float64Index([], dtype='float64') Index([], dtype='object') Int64Index([1, 2, 3], dtype='int64') Index(['1', '2', '3'], dtype='object') ``` #### Problem description Index.difference should probably not type-cast and compare the elements to honor consistent behavior with other types where they are not being type-casted. #### Expected Output ```python Float64Index([1.0, 2.0, 3.0], dtype='float64') Index(['1', '2', '3'], dtype='object') Int64Index([1, 2, 3], dtype='int64') Index(['1', '2', '3'], dtype='object') ``` or All empty Index objects like in case of int vs object. #### Output of ``pd.show_versions()`` <details> INSTALLED VERSIONS ------------------ commit : None pandas : 1.0.5 numpy : 1.19.0 pytz : 2020.1 dateutil : 2.8.1 pip : 20.1.1 setuptools : 49.1.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 : None numexpr : None odfpy : None openpyxl : None pandas_gbq : None pyarrow : None pytables : None pytest : None pyxlsb : None s3fs : None scipy : None sqlalchemy : None tables : None tabulate : None xarray : None xlrd : None xlwt : None xlsxwriter : None numba : None 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/35217/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35217/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/35218
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35218/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35218/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35218/events
https://github.com/pandas-dev/pandas/issues/35218
654,963,004
MDU6SXNzdWU2NTQ5NjMwMDQ=
35,218
BUG: test_inference.py raises stack overflowerror
{ "avatar_url": "https://avatars.githubusercontent.com/u/28426758?v=4", "events_url": "https://api.github.com/users/joooeey/events{/privacy}", "followers_url": "https://api.github.com/users/joooeey/followers", "following_url": "https://api.github.com/users/joooeey/following{/other_user}", "gists_url": "https://api.github.com/users/joooeey/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/joooeey", "id": 28426758, "login": "joooeey", "node_id": "MDQ6VXNlcjI4NDI2NzU4", "organizations_url": "https://api.github.com/users/joooeey/orgs", "received_events_url": "https://api.github.com/users/joooeey/received_events", "repos_url": "https://api.github.com/users/joooeey/repos", "site_admin": false, "starred_url": "https://api.github.com/users/joooeey/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/joooeey/subscriptions", "type": "User", "url": "https://api.github.com/users/joooeey" }
[ { "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": "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": "fbca04", "default": false, "description": "Windows OS", "id": 57186974, "name": "Windows", "node_id": "MDU6TGFiZWw1NzE4Njk3NA==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Windows" } ]
open
false
null
[]
null
3
2020-07-10T18:31:16Z
2021-07-09T17:49:48Z
null
CONTRIBUTOR
null
- [x] I have checked that this issue has not already been reported. - [ ] I have confirmed this bug exists on the latest version of pandas. - [x] (optional) I have confirmed this bug exists on the master branch of pandas. --- **Note**: Please read [this guide](https://matthewrocklin.com/blog/work/2018/02/28/minimal-bug-reports) detailing how to provide the necessary information for us to reproduce your bug. #### Code Sample, a copy-pastable example <details> In Anaconda Prompt: ``` (pandas-dev) C:\Users\Joey\pandas-joooeey> pytest pandas . . . pandas\tests\dtypes\test_generic.py .. [ 21%] pandas\tests\dtypes\test_inference.py .................................. [ 22%] ..............................................Windows fatal exception: stack overflow Thread 0x00003d8c (most recent call first): File "C:\ProgramData\Anaconda3\envs\pandas-dev\lib\threading.py", line 302 in wait File "C:\ProgramData\Anaconda3\envs\pandas-dev\lib\threading.py", line 558 in wait File "C:\ProgramData\Anaconda3\envs\pandas-dev\lib\site-packages\IPython\core\history.py", line 829 in run File "C:\ProgramData\Anaconda3\envs\pandas-dev\lib\site-packages\IPython\core\history.py", line 58 in needs_sqlite File "<decorator-gen-24>", line 2 in run File "C:\ProgramData\Anaconda3\envs\pandas-dev\lib\threading.py", line 932 in _bootstrap_inner File "C:\ProgramData\Anaconda3\envs\pandas-dev\lib\threading.py", line 890 in _bootstrap Thread 0x00002ef8 (most recent call first): File "C:\ProgramData\Anaconda3\envs\pandas-dev\lib\multiprocessing\pool.py", line 576 in _handle_results File "C:\ProgramData\Anaconda3\envs\pandas-dev\lib\threading.py", line 870 in run File "C:\ProgramData\Anaconda3\envs\pandas-dev\lib\threading.py", line 932 in _bootstrap_inner File "C:\ProgramData\Anaconda3\envs\pandas-dev\lib\threading.py", line 890 in _bootstrap Thread 0x00006314 (most recent call first): File "C:\ProgramData\Anaconda3\envs\pandas-dev\lib\multiprocessing\pool.py", line 528 in _handle_tasks File "C:\ProgramData\Anaconda3\envs\pandas-dev\lib\threading.py", line 870 in run File "C:\ProgramData\Anaconda3\envs\pandas-dev\lib\threading.py", line 932 in _bootstrap_inner File "C:\ProgramData\Anaconda3\envs\pandas-dev\lib\threading.py", line 890 in _bootstrap Thread 0x000067cc (most recent call first): File "C:\ProgramData\Anaconda3\envs\pandas-dev\lib\multiprocessing\connection.py", line 810 in _exhaustive_wait File "C:\ProgramData\Anaconda3\envs\pandas-dev\lib\multiprocessing\connection.py", line 878 in wait File "C:\ProgramData\Anaconda3\envs\pandas-dev\lib\multiprocessing\pool.py", line 499 in _wait_for_updates File "C:\ProgramData\Anaconda3\envs\pandas-dev\lib\multiprocessing\pool.py", line 519 in _handle_workers File "C:\ProgramData\Anaconda3\envs\pandas-dev\lib\threading.py", line 870 in run File "C:\ProgramData\Anaconda3\envs\pandas-dev\lib\threading.py", line 932 in _bootstrap_inner File "C:\ProgramData\Anaconda3\envs\pandas-dev\lib\threading.py", line 890 in _bootstrap Thread 0x00000ef4 (most recent call first): File "C:\ProgramData\Anaconda3\envs\pandas-dev\lib\multiprocessing\pool.py", line 114 in worker File "C:\ProgramData\Anaconda3\envs\pandas-dev\lib\threading.py", line 870 in run File "C:\ProgramData\Anaconda3\envs\pandas-dev\lib\threading.py", line 932 in _bootstrap_inner File "C:\ProgramData\Anaconda3\envs\pandas-dev\lib\threading.py", line 890 in _bootstrap Thread 0x00006718 (most recent call first): File "C:\ProgramData\Anaconda3\envs\pandas-dev\lib\multiprocessing\pool.py", line 114 in worker File "C:\ProgramData\Anaconda3\envs\pandas-dev\lib\threading.py", line 870 in run File "C:\ProgramData\Anaconda3\envs\pandas-dev\lib\threading.py", line 932 in _bootstrap_inner File "C:\ProgramData\Anaconda3\envs\pandas-dev\lib\threading.py", line 890 in _bootstrap Thread 0x000031c0 (most recent call first): File "C:\ProgramData\Anaconda3\envs\pandas-dev\lib\multiprocessing\pool.py", line 114 in worker File "C:\ProgramData\Anaconda3\envs\pandas-dev\lib\threading.py", line 870 in run File "C:\ProgramData\Anaconda3\envs\pandas-dev\lib\threading.py", line 932 in _bootstrap_inner File "C:\ProgramData\Anaconda3\envs\pandas-dev\lib\threading.py", line 890 in _bootstrap Thread 0x00002644 (most recent call first): File "C:\ProgramData\Anaconda3\envs\pandas-dev\lib\multiprocessing\pool.py", line 114 in worker File "C:\ProgramData\Anaconda3\envs\pandas-dev\lib\threading.py", line 870 in run File "C:\ProgramData\Anaconda3\envs\pandas-dev\lib\threading.py", line 932 in _bootstrap_inner File "C:\ProgramData\Anaconda3\envs\pandas-dev\lib\threading.py", line 890 in _bootstrap Current thread 0x000029fc (most recent call first): File "C:\ProgramData\Anaconda3\envs\pandas-dev\lib\abc.py", line 98 in __instancecheck__ File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 130 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo File "C:\Users\Joey\pandas-joooeey\pandas\tests\dtypes\test_inference.py", line 131 in foo ... (pandas-dev) C:\Users\Joey\pandas-joooeey>pytest pandas/tests/dtypes/test_inference.py ============================= test session starts ============================= platform win32 -- Python 3.8.2, pytest-5.4.2, py-1.8.1, pluggy-0.13.1 rootdir: C:\Users\Joey\pandas-joooeey, inifile: setup.cfg plugins: hypothesis-5.15.0, asyncio-0.12.0, cov-2.8.1, forked-1.1.2, xdist-1.32.0 collected 447 items pandas\tests\dtypes\test_inference.py .................................. [ 7%] ........................................................................ [ 23%] ........................................................................ [ 39%] ........................................................................ [ 55%] ........................................................................ [ 72%] ........................................................................ [ 88%] ..................................................... [100%] ============================= 447 passed in 1.81s ============================= (pandas-dev) C:\Users\Joey\pandas-joooeey> ``` </details> #### Problem description `pytest pandas` fails at 22% with `Windows fatal exception: stack overflow` in `test_inference.py` line 131. According to the test file, the offending code is expected to raise a `RecursionError`. Curiously, the following test runs green: `pytest pandas/tests/dtypes/test_inference.py` #### Expected Output When I run `pytest pandas` on the master branch (like I did), I expect the entire test suite to run green. #### Output of ``pd.show_versions()`` ``` pd.show_versions() Traceback (most recent call last): File "<ipython-input-3-3d232a07e144>", line 1, in <module> pd.show_versions() File "C:\Users\Joey\pandas-joooeey\pandas\util\_print_versions.py", line 106, in show_versions deps = _get_dependency_info() File "C:\Users\Joey\pandas-joooeey\pandas\util\_print_versions.py", line 86, in _get_dependency_info result[modname] = _get_version(mod) if mod else None File "C:\Users\Joey\pandas-joooeey\pandas\compat\_optional.py", line 43, in _get_version raise ImportError(f"Can't determine version for {module.__name__}") ImportError: Can't determine version for hypothesis ```
{ "+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/35218/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35218/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/35219
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35219/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35219/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35219/events
https://github.com/pandas-dev/pandas/issues/35219
654,973,913
MDU6SXNzdWU2NTQ5NzM5MTM=
35,219
BUG: resampling error when date_range includes a single DST
{ "avatar_url": "https://avatars.githubusercontent.com/u/30658763?v=4", "events_url": "https://api.github.com/users/Flix6x/events{/privacy}", "followers_url": "https://api.github.com/users/Flix6x/followers", "following_url": "https://api.github.com/users/Flix6x/following{/other_user}", "gists_url": "https://api.github.com/users/Flix6x/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/Flix6x", "id": 30658763, "login": "Flix6x", "node_id": "MDQ6VXNlcjMwNjU4NzYz", "organizations_url": "https://api.github.com/users/Flix6x/orgs", "received_events_url": "https://api.github.com/users/Flix6x/received_events", "repos_url": "https://api.github.com/users/Flix6x/repos", "site_admin": false, "starred_url": "https://api.github.com/users/Flix6x/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Flix6x/subscriptions", "type": "User", "url": "https://api.github.com/users/Flix6x" }
[ { "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": "5319e7", "default": false, "description": "Timezone data dtype", "id": 60458168, "name": "Timezones", "node_id": "MDU6TGFiZWw2MDQ1ODE2OA==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Timezones" }, { "color": "207de5", "default": false, "description": "resample method", "id": 74975453, "name": "Resample", "node_id": "MDU6TGFiZWw3NDk3NTQ1Mw==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Resample" } ]
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" }
5
2020-07-10T18:53:08Z
2020-09-12T21:07:53Z
2020-09-12T21:07:53Z
CONTRIBUTOR
null
- [x] I have checked that this issue has not already been reported. - [x] I have confirmed this bug exists on the latest version of pandas. - [x] (optional) I have confirmed this bug exists on the master branch of pandas. --- #### Code Sample, a copy-pastable example ```python >>> import pandas as pd >>> # works as expected (note the daylight savings transitions in the head and tail) >>> pd.Series(1., pd.date_range('2020-03-28','2020-10-27', freq='D', tz="Europe/Amsterdam")).resample('24H').pad() 2020-03-28 00:00:00+01:00 1.0 2020-03-29 00:00:00+01:00 1.0 2020-03-30 01:00:00+02:00 1.0 2020-03-31 01:00:00+02:00 1.0 2020-04-01 01:00:00+02:00 1.0 ... 2020-10-23 01:00:00+02:00 1.0 2020-10-24 01:00:00+02:00 1.0 2020-10-25 01:00:00+02:00 1.0 2020-10-26 00:00:00+01:00 1.0 2020-10-27 00:00:00+01:00 1.0 Freq: 24H, Length: 214, dtype: float64 >>> # fails unexpectedly >>> pd.Series(1., pd.date_range('2020-03-28','2020-03-31', freq='D', tz="Europe/Amsterdam")).resample('24H').pad() Traceback (most recent call last): File "<input>", line 1, in <module> File "/home/felix/anaconda3/envs/bvp-venv/lib/python3.6/site-packages/pandas/core/resample.py", line 453, in pad return self._upsample("pad", limit=limit) File "/home/felix/anaconda3/envs/bvp-venv/lib/python3.6/site-packages/pandas/core/resample.py", line 1092, in _upsample result.index = res_index File "/home/felix/anaconda3/envs/bvp-venv/lib/python3.6/site-packages/pandas/core/generic.py", line 5287, in __setattr__ return object.__setattr__(self, name, value) File "pandas/_libs/properties.pyx", line 67, in pandas._libs.properties.AxisProperty.__set__ File "/home/felix/anaconda3/envs/bvp-venv/lib/python3.6/site-packages/pandas/core/series.py", line 401, in _set_axis self._data.set_axis(axis, labels) File "/home/felix/anaconda3/envs/bvp-venv/lib/python3.6/site-packages/pandas/core/internals/managers.py", line 178, in set_axis f"Length mismatch: Expected axis has {old_len} elements, new " ValueError: Length mismatch: Expected axis has 4 elements, new values have 3 elements ``` #### Problem description In my first example, resampling from an offset of 1 day to an offset of 24 hours works as expected, but only when the start and end of the DatetimeIndex share the same timezone. In my second example the date range start and ends in a different timezone due to a daylight savings transition on 29 March 2020, for which resampling to 24 hours fails. Possibly related issue: - #35248 #### Expected Output ```python >>> pd.Series(1., pd.date_range('2020-03-28','2020-03-31', freq='D', tz="Europe/Amsterdam")).resample('24H').pad() 2020-03-28 00:00:00+01:00 1.0 2020-03-29 00:00:00+01:00 1.0 2020-03-30 01:00:00+02:00 1.0 Freq: 24H, Length: 3, dtype: float64 ``` #### Output of ``pd.show_versions()`` <details> INSTALLED VERSIONS ------------------ commit : None python : 3.7.7.final.0 python-bits : 64 OS : Linux OS-release : 4.9.0-11-amd64 machine : x86_64 processor : byteorder : little LC_ALL : None LANG : en_US.UTF-8 LOCALE : en_US.UTF-8 pandas : 1.0.5 numpy : 1.19.0 pytz : 2020.1 dateutil : 2.8.1 pip : 20.1.1 setuptools : 47.3.1.post20200622 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 : None numexpr : None odfpy : None openpyxl : None pandas_gbq : None pyarrow : None pytables : None pytest : None pyxlsb : None s3fs : None scipy : None sqlalchemy : None tables : None tabulate : None xarray : None xlrd : None xlwt : None xlsxwriter : None numba : 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/35219/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35219/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/35220
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35220/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35220/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35220/events
https://github.com/pandas-dev/pandas/pull/35220
654,999,290
MDExOlB1bGxSZXF1ZXN0NDQ3NjE0NzEy
35,220
TYPING/DOC: Move custom type to _typing and add whatsnew
{ "avatar_url": "https://avatars.githubusercontent.com/u/9269816?v=4", "events_url": "https://api.github.com/users/charlesdong1991/events{/privacy}", "followers_url": "https://api.github.com/users/charlesdong1991/followers", "following_url": "https://api.github.com/users/charlesdong1991/following{/other_user}", "gists_url": "https://api.github.com/users/charlesdong1991/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/charlesdong1991", "id": 9269816, "login": "charlesdong1991", "node_id": "MDQ6VXNlcjkyNjk4MTY=", "organizations_url": "https://api.github.com/users/charlesdong1991/orgs", "received_events_url": "https://api.github.com/users/charlesdong1991/received_events", "repos_url": "https://api.github.com/users/charlesdong1991/repos", "site_admin": false, "starred_url": "https://api.github.com/users/charlesdong1991/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/charlesdong1991/subscriptions", "type": "User", "url": "https://api.github.com/users/charlesdong1991" }
[ { "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": "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-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" }
1
2020-07-10T19:46:06Z
2020-07-11T02:10:28Z
2020-07-11T02:10:20Z
MEMBER
null
followup of #29116 details see : https://github.com/pandas-dev/pandas/pull/29116#discussion_r453033204
{ "+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/35220/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35220/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35220.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35220", "merged_at": "2020-07-11T02:10:20Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35220.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35220" }
https://api.github.com/repos/pandas-dev/pandas/issues/35221
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35221/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35221/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35221/events
https://github.com/pandas-dev/pandas/pull/35221
655,048,271
MDExOlB1bGxSZXF1ZXN0NDQ3NjUzNjcx
35,221
ASV: asvs for normalize functions
{ "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": "ae68cc", "default": false, "description": "Performance (ASV) benchmarks", "id": 732775912, "name": "Benchmark", "node_id": "MDU6TGFiZWw3MzI3NzU5MTI=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Benchmark" } ]
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
2020-07-10T21:34:33Z
2020-07-10T23:38:37Z
2020-07-10T22:20:27Z
MEMBER
null
With this, we have pretty good coverage for everything in tslibs.vectorized
{ "+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/35221/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35221/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35221.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35221", "merged_at": "2020-07-10T22:20:27Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35221.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35221" }
https://api.github.com/repos/pandas-dev/pandas/issues/35222
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35222/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35222/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35222/events
https://github.com/pandas-dev/pandas/pull/35222
655,058,961
MDExOlB1bGxSZXF1ZXN0NDQ3NjYxNzkw
35,222
Fixing a confused method name in 02_read_write.rst
{ "avatar_url": "https://avatars.githubusercontent.com/u/34668740?v=4", "events_url": "https://api.github.com/users/evank28/events{/privacy}", "followers_url": "https://api.github.com/users/evank28/followers", "following_url": "https://api.github.com/users/evank28/following{/other_user}", "gists_url": "https://api.github.com/users/evank28/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/evank28", "id": 34668740, "login": "evank28", "node_id": "MDQ6VXNlcjM0NjY4NzQw", "organizations_url": "https://api.github.com/users/evank28/orgs", "received_events_url": "https://api.github.com/users/evank28/received_events", "repos_url": "https://api.github.com/users/evank28/repos", "site_admin": false, "starred_url": "https://api.github.com/users/evank28/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/evank28/subscriptions", "type": "User", "url": "https://api.github.com/users/evank28" }
[ { "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": "bfe5bf", "default": false, "description": "read_excel, to_excel", "id": 49254273, "name": "IO Excel", "node_id": "MDU6TGFiZWw0OTI1NDI3Mw==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20Excel" } ]
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" }
1
2020-07-10T22:01:17Z
2020-07-10T22:22:55Z
2020-07-10T22:22:51Z
CONTRIBUTOR
null
Fixed the confused method name. It should be `read_excel` based on the context, but `to_excel` was provided instead. Very simple PR for a simple fix to the documentation.
{ "+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/35222/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35222/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35222.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35222", "merged_at": "2020-07-10T22:22:51Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35222.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35222" }
https://api.github.com/repos/pandas-dev/pandas/issues/35223
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35223/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35223/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35223/events
https://github.com/pandas-dev/pandas/pull/35223
655,087,840
MDExOlB1bGxSZXF1ZXN0NDQ3Njg0MzYy
35,223
PERF: Allow str.split callers to skip expensive post-processing
{ "avatar_url": "https://avatars.githubusercontent.com/u/8717474?v=4", "events_url": "https://api.github.com/users/wbadart/events{/privacy}", "followers_url": "https://api.github.com/users/wbadart/followers", "following_url": "https://api.github.com/users/wbadart/following{/other_user}", "gists_url": "https://api.github.com/users/wbadart/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/wbadart", "id": 8717474, "login": "wbadart", "node_id": "MDQ6VXNlcjg3MTc0NzQ=", "organizations_url": "https://api.github.com/users/wbadart/orgs", "received_events_url": "https://api.github.com/users/wbadart/received_events", "repos_url": "https://api.github.com/users/wbadart/repos", "site_admin": false, "starred_url": "https://api.github.com/users/wbadart/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/wbadart/subscriptions", "type": "User", "url": "https://api.github.com/users/wbadart" }
[ { "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": false, "description": "String extension data type and string data", "id": 57522093, "name": "Strings", "node_id": "MDU6TGFiZWw1NzUyMjA5Mw==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Strings" }, { "color": "7fcce8", "default": false, "description": "", "id": 2347992045, "name": "Stale", "node_id": "MDU6TGFiZWwyMzQ3OTkyMDQ1", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Stale" } ]
closed
false
null
[]
null
7
2020-07-10T23:42:52Z
2021-08-30T22:00:01Z
2020-09-30T21:13:15Z
NONE
null
Hey team- I've got some string processing in my pipeline and have noticed that `Series.str.split` is a pretty significant bottleneck: <img width="806" alt="Screen Shot 2020-07-09 at 18 03 09" src="https://user-images.githubusercontent.com/8717474/87210555-cd31d980-c2ca-11ea-8c79-e247b236cc0d.png"> (For reference, the rest of the function calls from this `pyinstrument` run take 5-10 seconds.) It seemed odd to me that it was spending more time post-processing the result (`_wrap_result`) than actually doing the work of splitting strings, so I looked into it. It turns out that when you use `expand=True`, `_wrap_result` makes three full passes over the data (in Python iteration land!). From what I gather, the procedure is to make sure that each row of the resulting data frame ends up with the same number of columns. However, for my use case, I happen to know ahead of time that this will be true; my Series is full of well-formed IPv4 addresses (and from what I gather online, this is a pretty common use of `Series.str.split`), so I know each split string list will be 4 elements long (one for each octet). This pull request offers an escape hatch for users like me who know that this expensive post-processing step is essentially a no-op, in the form of the `pad_sequences` argument. If `True`, the default, then the original procedure will be run. If `False`, it will be skipped in favor of simply casting the result from a numpy array of lists to a list of lists, to be crammed into a DataFrame a few lines down. It's up to the caller to determine ahead of time if the split will produce uniform-length sequences. (If `expand=False`, then `pad_sequences` has no effect.) Looking forward to hearing your thoughts! Many thanks --- - Related to #10090 - ~[ ] closes #xxxx~ - [x] tests added / passed - [x] passes `black pandas` - [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff` - [ ] whatsnew entry --- EDIT: forgot to mention, I have some performance testing results. Here's the data: ```sh $ wc -l test.csv 10663901 test.csv $ du -h test.csv 928M test.csv ``` Here's the original performance: ```python In [1]: pd.__version__ Out[1]: '1.1.0.dev0+2067.g2c3edaaaa' In [2]: %%timeit ...: df.ip.str.split(".", expand=True) ...: ...: 26.7 s ± 2.42 s per loop (mean ± std. dev. of 7 runs, 1 loop each) ``` The first optimization I tried (before adding `pad_sequences`) was simply to inline `cons_row` to save the stack frame allocation (since the function wasn't being used anywhere but the comprehension body: ```python In [1]: pd.__version__ Out[1]: '1.1.0.dev0+2068.g15623dbe7' In [2]: %%timeit ...: df.ip.str.split(".", expand=True) ...: ...: 24 s ± 202 ms per loop (mean ± std. dev. of 7 runs, 1 loop each) ``` Works out to a few hundred nanoseconds of time savings per row, or as you can see here, about 2.5 seconds for my 10 million row test set. Finally, here are the results without those three passes over the result: ```python In [2]: pd.__version__ Out[2]: '1.1.0.dev0+2073.g23f88eedb' In [5]: %%timeit ...: df.ip.str.split(".", expand=True, pad_sequences=False) ...: ...: 15.5 s ± 78.2 ms per loop (mean ± std. dev. of 7 runs, 1 loop each) ``` (Commit hash is a little different since I rebased onto upstream after running the test.) So this is quite a bit faster now. If I have time, I'll keep digging to see if we can eliminate that `result.tolist()` call and go straight from the numpy-ish representation to a DataFrame (for now, I found that I needed the `tolist()` in order for `expand=True` to retain its 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/35223/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35223/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35223.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35223", "merged_at": null, "patch_url": "https://github.com/pandas-dev/pandas/pull/35223.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35223" }
https://api.github.com/repos/pandas-dev/pandas/issues/35224
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35224/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35224/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35224/events
https://github.com/pandas-dev/pandas/pull/35224
655,092,725
MDExOlB1bGxSZXF1ZXN0NDQ3Njg4MjY0
35,224
DEPR: DataFrame.lookup
{ "avatar_url": "https://avatars.githubusercontent.com/u/34067903?v=4", "events_url": "https://api.github.com/users/erfannariman/events{/privacy}", "followers_url": "https://api.github.com/users/erfannariman/followers", "following_url": "https://api.github.com/users/erfannariman/following{/other_user}", "gists_url": "https://api.github.com/users/erfannariman/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/erfannariman", "id": 34067903, "login": "erfannariman", "node_id": "MDQ6VXNlcjM0MDY3OTAz", "organizations_url": "https://api.github.com/users/erfannariman/orgs", "received_events_url": "https://api.github.com/users/erfannariman/received_events", "repos_url": "https://api.github.com/users/erfannariman/repos", "site_admin": false, "starred_url": "https://api.github.com/users/erfannariman/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/erfannariman/subscriptions", "type": "User", "url": "https://api.github.com/users/erfannariman" }
[ { "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": "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" } ]
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" }
8
2020-07-11T00:05:41Z
2021-03-01T10:04:25Z
2020-09-17T02:39:41Z
CONTRIBUTOR
null
- [x] xref #18262 - [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/35224/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35224/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35224.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35224", "merged_at": "2020-09-17T02:39:41Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35224.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35224" }
https://api.github.com/repos/pandas-dev/pandas/issues/35225
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35225/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35225/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35225/events
https://github.com/pandas-dev/pandas/pull/35225
655,112,418
MDExOlB1bGxSZXF1ZXN0NDQ3NzAzNTQx
35,225
TST: added test for groupby/apply timezone-aware with copy
{ "avatar_url": "https://avatars.githubusercontent.com/u/25045024?v=4", "events_url": "https://api.github.com/users/sanders41/events{/privacy}", "followers_url": "https://api.github.com/users/sanders41/followers", "following_url": "https://api.github.com/users/sanders41/following{/other_user}", "gists_url": "https://api.github.com/users/sanders41/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/sanders41", "id": 25045024, "login": "sanders41", "node_id": "MDQ6VXNlcjI1MDQ1MDI0", "organizations_url": "https://api.github.com/users/sanders41/orgs", "received_events_url": "https://api.github.com/users/sanders41/received_events", "repos_url": "https://api.github.com/users/sanders41/repos", "site_admin": false, "starred_url": "https://api.github.com/users/sanders41/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/sanders41/subscriptions", "type": "User", "url": "https://api.github.com/users/sanders41" }
[]
closed
false
null
[]
null
3
2020-07-11T01:57:18Z
2020-07-11T11:11:31Z
2020-07-11T04:51:37Z
CONTRIBUTOR
null
- [x] closes #27212 - [x] tests added / passed - [x] passes `black pandas` - [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff` - [ ] whatsnew entry added test for groupby/apply timezone-aware with copy
{ "+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/35225/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35225/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35225.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35225", "merged_at": "2020-07-11T04:51:37Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35225.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35225" }
https://api.github.com/repos/pandas-dev/pandas/issues/35226
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35226/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35226/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35226/events
https://github.com/pandas-dev/pandas/issues/35226
655,113,714
MDU6SXNzdWU2NTUxMTM3MTQ=
35,226
REF: Dataframe.__init__
{ "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" }
[ { "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": "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": "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": "6138b5", "default": false, "description": "Extending pandas with custom dtypes or arrays.", "id": 849023693, "name": "ExtensionArray", "node_id": "MDU6TGFiZWw4NDkwMjM2OTM=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/ExtensionArray" }, { "color": "d4c5f9", "default": false, "description": "Series/DataFrame/Index/pd.array Constructors", "id": 1465286368, "name": "Constructors", "node_id": "MDU6TGFiZWwxNDY1Mjg2MzY4", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Constructors" } ]
open
false
null
[]
{ "closed_at": null, "closed_issues": 786, "created_at": "2015-01-13T10:53:19Z", "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": "Changes that would be nice to have in the next release. These issues are not blocking. They will be pushed to the next release if no one has time to fix them.", "due_on": null, "html_url": "https://github.com/pandas-dev/pandas/milestone/32", "id": 933188, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/32/labels", "node_id": "MDk6TWlsZXN0b25lOTMzMTg4", "number": 32, "open_issues": 1053, "state": "open", "title": "Contributions Welcome", "updated_at": "2021-11-21T00:50:06Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/32" }
0
2020-07-11T02:07:09Z
2021-08-08T16:58:02Z
null
CONTRIBUTOR
null
in #34875 several checks were added to the main Dataframe construction to handle extension arrays, in particular extension scalars this introduced multiple checks like if is_extensions_drype(,,): ... else: ... these should be refactored and pushed down to more understandable functions this construction is now so complicated that bugs are certain to happen
{ "+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/35226/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35226/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/35227
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35227/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35227/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35227/events
https://github.com/pandas-dev/pandas/issues/35227
655,116,441
MDU6SXNzdWU2NTUxMTY0NDE=
35,227
BUG: ValueError: Cannot convert non-finite values (NA or inf) to integer only when DF exceed certain size
{ "avatar_url": "https://avatars.githubusercontent.com/u/8053809?v=4", "events_url": "https://api.github.com/users/ben-arnao/events{/privacy}", "followers_url": "https://api.github.com/users/ben-arnao/followers", "following_url": "https://api.github.com/users/ben-arnao/following{/other_user}", "gists_url": "https://api.github.com/users/ben-arnao/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/ben-arnao", "id": 8053809, "login": "ben-arnao", "node_id": "MDQ6VXNlcjgwNTM4MDk=", "organizations_url": "https://api.github.com/users/ben-arnao/orgs", "received_events_url": "https://api.github.com/users/ben-arnao/received_events", "repos_url": "https://api.github.com/users/ben-arnao/repos", "site_admin": false, "starred_url": "https://api.github.com/users/ben-arnao/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/ben-arnao/subscriptions", "type": "User", "url": "https://api.github.com/users/ben-arnao" }
[ { "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": "d7e102", "default": false, "description": "np.nan, pd.NaT, pd.NA, dropna, isnull, interpolate", "id": 2822342, "name": "Missing-data", "node_id": "MDU6TGFiZWwyODIyMzQy", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Missing-data" }, { "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, "description": "Unit test(s) needed to prevent regressions", "id": 986278782, "name": "Needs Tests", "node_id": "MDU6TGFiZWw5ODYyNzg3ODI=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Needs%20Tests" } ]
open
false
null
[]
{ "closed_at": null, "closed_issues": 786, "created_at": "2015-01-13T10:53:19Z", "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": "Changes that would be nice to have in the next release. These issues are not blocking. They will be pushed to the next release if no one has time to fix them.", "due_on": null, "html_url": "https://github.com/pandas-dev/pandas/milestone/32", "id": 933188, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/32/labels", "node_id": "MDk6TWlsZXN0b25lOTMzMTg4", "number": 32, "open_issues": 1053, "state": "open", "title": "Contributions Welcome", "updated_at": "2021-11-21T00:50:06Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/32" }
8
2020-07-11T02:26:24Z
2021-09-01T21:45:18Z
null
NONE
null
- [x] I have checked that this issue has not already been reported. - [x] I have confirmed this bug exists on the latest version of pandas. - [x] (optional) I have confirmed this bug exists on the master branch of pandas. --- **Note**: Please read [this guide](https://matthewrocklin.com/blog/work/2018/02/28/minimal-bug-reports) detailing how to provide the necessary information for us to reproduce your bug. #### Here is the code in question: ``` print(df.shape) print(df.memory_usage().sum()) df.dropna(inplace=True) # drop rows with not enough lookback (they will be nan) ``` The line `dropna` line is what throws the error So when i run my code with adding 500 features/columns the output is following ``` (2177432, 503) 4398412768 ``` However when i run the same exact code for 1000 features ``` (2177432, 1003) 8753276768 ``` I get an error ``` File "C:\Users\Ben\PycharmProjects\tradingbot\tradingbot\trainer\sample_maker.py", line 17, in get_signal_features df.dropna(inplace=True) # drop rows with not enough lookback (they will be nan) File "C:\Users\Ben\PycharmProjects\tradingbot\venv\lib\site-packages\pandas\core\frame.py", line 4751, in dropna count = agg_obj.count(axis=agg_axis) File "C:\Users\Ben\PycharmProjects\tradingbot\venv\lib\site-packages\pandas\core\frame.py", line 7807, in count return result.astype("int64") File "C:\Users\Ben\PycharmProjects\tradingbot\venv\lib\site-packages\pandas\core\generic.py", line 5698, in astype new_data = self._data.astype(dtype=dtype, copy=copy, errors=errors) File "C:\Users\Ben\PycharmProjects\tradingbot\venv\lib\site-packages\pandas\core\internals\managers.py", line 582, in astype return self.apply("astype", dtype=dtype, copy=copy, errors=errors) File "C:\Users\Ben\PycharmProjects\tradingbot\venv\lib\site-packages\pandas\core\internals\managers.py", line 442, in apply applied = getattr(b, f)(**kwargs) File "C:\Users\Ben\PycharmProjects\tradingbot\venv\lib\site-packages\pandas\core\internals\blocks.py", line 625, in astype values = astype_nansafe(vals1d, dtype, copy=True) File "C:\Users\Ben\PycharmProjects\tradingbot\venv\lib\site-packages\pandas\core\dtypes\cast.py", line 868, in astype_nansafe raise ValueError("Cannot convert non-finite values (NA or inf) to integer") ValueError: Cannot convert non-finite values (NA or inf) to integer ``` The version i am running is 1.0.5
{ "+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/35227/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35227/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/35228
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35228/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35228/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35228/events
https://github.com/pandas-dev/pandas/pull/35228
655,134,580
MDExOlB1bGxSZXF1ZXN0NDQ3NzE5MTQ0
35,228
COMPAT: Ensure rolling indexers return intp
{ "avatar_url": "https://avatars.githubusercontent.com/u/10647082?v=4", "events_url": "https://api.github.com/users/mroeschke/events{/privacy}", "followers_url": "https://api.github.com/users/mroeschke/followers", "following_url": "https://api.github.com/users/mroeschke/following{/other_user}", "gists_url": "https://api.github.com/users/mroeschke/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/mroeschke", "id": 10647082, "login": "mroeschke", "node_id": "MDQ6VXNlcjEwNjQ3MDgy", "organizations_url": "https://api.github.com/users/mroeschke/orgs", "received_events_url": "https://api.github.com/users/mroeschke/received_events", "repos_url": "https://api.github.com/users/mroeschke/repos", "site_admin": false, "starred_url": "https://api.github.com/users/mroeschke/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/mroeschke/subscriptions", "type": "User", "url": "https://api.github.com/users/mroeschke" }
[ { "color": "0052cc", "default": false, "description": "pandas objects compatability with Numpy or Python functions", "id": 76865106, "name": "Compat", "node_id": "MDU6TGFiZWw3Njg2NTEwNg==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Compat" }, { "color": "d4c5f9", "default": false, "description": "rolling, ewma, expanding", "id": 1045950827, "name": "Window", "node_id": "MDU6TGFiZWwxMDQ1OTUwODI3", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Window" } ]
closed
false
null
[]
{ "closed_at": "2020-08-21T08:34:54Z", "closed_issues": 110, "created_at": "2020-07-10T13:54:44Z", "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.1.x", "due_on": "2020-08-22T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/75", "id": 5640672, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/75/labels", "node_id": "MDk6TWlsZXN0b25lNTY0MDY3Mg==", "number": 75, "open_issues": 0, "state": "closed", "title": "1.1.1", "updated_at": "2020-08-25T06:31:23Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/75" }
5
2020-07-11T04:50:25Z
2020-07-15T15:24:15Z
2020-07-14T04:43:39Z
MEMBER
null
- [x] closes #35148 - [x] tests added / passed - [x] passes `black pandas` - [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff` - [x] whatsnew entry Unable to test this locally for the MacPython build, but I am pretty sure this is the main culprit of that failing job.
{ "+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/35228/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35228/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35228.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35228", "merged_at": null, "patch_url": "https://github.com/pandas-dev/pandas/pull/35228.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35228" }
https://api.github.com/repos/pandas-dev/pandas/issues/35229
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35229/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35229/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35229/events
https://github.com/pandas-dev/pandas/pull/35229
655,205,395
MDExOlB1bGxSZXF1ZXN0NDQ3NzY1ODk1
35,229
Place the calculation of mask prior to the calls of comp in replace_list to improve performance
{ "avatar_url": "https://avatars.githubusercontent.com/u/2436203?v=4", "events_url": "https://api.github.com/users/chrispe/events{/privacy}", "followers_url": "https://api.github.com/users/chrispe/followers", "following_url": "https://api.github.com/users/chrispe/following{/other_user}", "gists_url": "https://api.github.com/users/chrispe/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/chrispe", "id": 2436203, "login": "chrispe", "node_id": "MDQ6VXNlcjI0MzYyMDM=", "organizations_url": "https://api.github.com/users/chrispe/orgs", "received_events_url": "https://api.github.com/users/chrispe/received_events", "repos_url": "https://api.github.com/users/chrispe/repos", "site_admin": false, "starred_url": "https://api.github.com/users/chrispe/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/chrispe/subscriptions", "type": "User", "url": "https://api.github.com/users/chrispe" }
[ { "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": false, "description": "String extension data type and string data", "id": 57522093, "name": "Strings", "node_id": "MDU6TGFiZWw1NzUyMjA5Mw==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Strings" } ]
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" }
3
2020-07-11T13:06:40Z
2020-07-16T07:08:44Z
2020-07-15T12:27:23Z
CONTRIBUTOR
null
- [X] closes #33920 - [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/35229/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35229/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35229.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35229", "merged_at": "2020-07-15T12:27:22Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35229.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35229" }
https://api.github.com/repos/pandas-dev/pandas/issues/35230
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35230/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35230/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35230/events
https://github.com/pandas-dev/pandas/pull/35230
655,206,636
MDExOlB1bGxSZXF1ZXN0NDQ3NzY2NzM3
35,230
TST verify return none inplace in tests/indexing
{ "avatar_url": "https://avatars.githubusercontent.com/u/35864265?v=4", "events_url": "https://api.github.com/users/r-toroxel/events{/privacy}", "followers_url": "https://api.github.com/users/r-toroxel/followers", "following_url": "https://api.github.com/users/r-toroxel/following{/other_user}", "gists_url": "https://api.github.com/users/r-toroxel/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/r-toroxel", "id": 35864265, "login": "r-toroxel", "node_id": "MDQ6VXNlcjM1ODY0MjY1", "organizations_url": "https://api.github.com/users/r-toroxel/orgs", "received_events_url": "https://api.github.com/users/r-toroxel/received_events", "repos_url": "https://api.github.com/users/r-toroxel/repos", "site_admin": false, "starred_url": "https://api.github.com/users/r-toroxel/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/r-toroxel/subscriptions", "type": "User", "url": "https://api.github.com/users/r-toroxel" }
[ { "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-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
2020-07-11T13:14:55Z
2020-07-13T20:36:08Z
2020-07-13T20:36:05Z
CONTRIBUTOR
null
verify we return none for all inplace calls in tests/indexing related: https://github.com/pandas-dev/pandas/pull/35210
{ "+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/35230/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35230/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35230.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35230", "merged_at": "2020-07-13T20:36:05Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35230.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35230" }
https://api.github.com/repos/pandas-dev/pandas/issues/35231
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35231/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35231/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35231/events
https://github.com/pandas-dev/pandas/pull/35231
655,208,134
MDExOlB1bGxSZXF1ZXN0NDQ3NzY3NzY5
35,231
BUG: Inconsistent behavior in Index.difference
{ "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": "e10c02", "default": false, "description": null, "id": 76811, "name": "Bug", "node_id": "MDU6TGFiZWw3NjgxMQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug" }, { "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" }, { "color": "e99695", "default": false, "description": "Related to the Index class or subclasses", "id": 1218227310, "name": "Index", "node_id": "MDU6TGFiZWwxMjE4MjI3MzEw", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Index" } ]
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" }
6
2020-07-11T13:23:39Z
2020-07-16T09:57:00Z
2020-07-16T09:55:15Z
MEMBER
null
- [ ] closes #35217 - [ ] 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/35231/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35231/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35231.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35231", "merged_at": "2020-07-16T09:55:14Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35231.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35231" }
https://api.github.com/repos/pandas-dev/pandas/issues/35232
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35232/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35232/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35232/events
https://github.com/pandas-dev/pandas/pull/35232
655,233,110
MDExOlB1bGxSZXF1ZXN0NDQ3Nzg0ODcz
35,232
Tst verify return none in tests/frame
{ "avatar_url": "https://avatars.githubusercontent.com/u/35864265?v=4", "events_url": "https://api.github.com/users/r-toroxel/events{/privacy}", "followers_url": "https://api.github.com/users/r-toroxel/followers", "following_url": "https://api.github.com/users/r-toroxel/following{/other_user}", "gists_url": "https://api.github.com/users/r-toroxel/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/r-toroxel", "id": 35864265, "login": "r-toroxel", "node_id": "MDQ6VXNlcjM1ODY0MjY1", "organizations_url": "https://api.github.com/users/r-toroxel/orgs", "received_events_url": "https://api.github.com/users/r-toroxel/received_events", "repos_url": "https://api.github.com/users/r-toroxel/repos", "site_admin": false, "starred_url": "https://api.github.com/users/r-toroxel/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/r-toroxel/subscriptions", "type": "User", "url": "https://api.github.com/users/r-toroxel" }
[ { "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-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" }
1
2020-07-11T15:57:46Z
2020-07-12T12:05:15Z
2020-07-12T12:05:03Z
CONTRIBUTOR
null
verify we return None for all inplace calls in tests/frame related: https://github.com/pandas-dev/pandas/pull/35230
{ "+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/35232/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35232/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35232.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35232", "merged_at": "2020-07-12T12:05:03Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35232.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35232" }
https://api.github.com/repos/pandas-dev/pandas/issues/35233
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35233/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35233/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35233/events
https://github.com/pandas-dev/pandas/pull/35233
655,236,913
MDExOlB1bGxSZXF1ZXN0NDQ3Nzg3NDU1
35,233
TST: Verify filtering operations on DataFrames with categorical Series
{ "avatar_url": "https://avatars.githubusercontent.com/u/44933366?v=4", "events_url": "https://api.github.com/users/avinashpancham/events{/privacy}", "followers_url": "https://api.github.com/users/avinashpancham/followers", "following_url": "https://api.github.com/users/avinashpancham/following{/other_user}", "gists_url": "https://api.github.com/users/avinashpancham/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/avinashpancham", "id": 44933366, "login": "avinashpancham", "node_id": "MDQ6VXNlcjQ0OTMzMzY2", "organizations_url": "https://api.github.com/users/avinashpancham/orgs", "received_events_url": "https://api.github.com/users/avinashpancham/received_events", "repos_url": "https://api.github.com/users/avinashpancham/repos", "site_admin": false, "starred_url": "https://api.github.com/users/avinashpancham/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/avinashpancham/subscriptions", "type": "User", "url": "https://api.github.com/users/avinashpancham" }
[ { "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": "e11d21", "default": false, "description": "Categorical Data Type", "id": 78527356, "name": "Categorical", "node_id": "MDU6TGFiZWw3ODUyNzM1Ng==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Categorical" } ]
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" }
1
2020-07-11T16:20:29Z
2020-07-15T22:24:10Z
2020-07-15T22:24:07Z
CONTRIBUTOR
null
- [ x ] closes #22609 - [ 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/35233/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35233/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35233.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35233", "merged_at": "2020-07-15T22:24:06Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35233.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35233" }
https://api.github.com/repos/pandas-dev/pandas/issues/35234
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35234/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35234/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35234/events
https://github.com/pandas-dev/pandas/pull/35234
655,238,819
MDExOlB1bGxSZXF1ZXN0NDQ3Nzg4ODAw
35,234
TST add test for dtype consistency with pd replace #23305
{ "avatar_url": "https://avatars.githubusercontent.com/u/22126205?v=4", "events_url": "https://api.github.com/users/mathurk1/events{/privacy}", "followers_url": "https://api.github.com/users/mathurk1/followers", "following_url": "https://api.github.com/users/mathurk1/following{/other_user}", "gists_url": "https://api.github.com/users/mathurk1/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/mathurk1", "id": 22126205, "login": "mathurk1", "node_id": "MDQ6VXNlcjIyMTI2MjA1", "organizations_url": "https://api.github.com/users/mathurk1/orgs", "received_events_url": "https://api.github.com/users/mathurk1/received_events", "repos_url": "https://api.github.com/users/mathurk1/repos", "site_admin": false, "starred_url": "https://api.github.com/users/mathurk1/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/mathurk1/subscriptions", "type": "User", "url": "https://api.github.com/users/mathurk1" }
[ { "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": "e11d21", "default": false, "description": "Categorical Data Type", "id": 78527356, "name": "Categorical", "node_id": "MDU6TGFiZWw3ODUyNzM1Ng==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Categorical" } ]
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
2020-07-11T16:32:19Z
2020-07-16T22:46:02Z
2020-07-16T22:45:58Z
CONTRIBUTOR
null
- [x] closes #23305 - [x] 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/35234/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35234/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35234.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35234", "merged_at": "2020-07-16T22:45:57Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35234.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35234" }
https://api.github.com/repos/pandas-dev/pandas/issues/35235
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35235/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35235/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35235/events
https://github.com/pandas-dev/pandas/pull/35235
655,241,642
MDExOlB1bGxSZXF1ZXN0NDQ3NzkwNzI1
35,235
CLN/DOC: DataFrame.to_parquet supports file-like objects
{ "avatar_url": "https://avatars.githubusercontent.com/u/45562402?v=4", "events_url": "https://api.github.com/users/rhshadrach/events{/privacy}", "followers_url": "https://api.github.com/users/rhshadrach/followers", "following_url": "https://api.github.com/users/rhshadrach/following{/other_user}", "gists_url": "https://api.github.com/users/rhshadrach/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/rhshadrach", "id": 45562402, "login": "rhshadrach", "node_id": "MDQ6VXNlcjQ1NTYyNDAy", "organizations_url": "https://api.github.com/users/rhshadrach/orgs", "received_events_url": "https://api.github.com/users/rhshadrach/received_events", "repos_url": "https://api.github.com/users/rhshadrach/repos", "site_admin": false, "starred_url": "https://api.github.com/users/rhshadrach/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/rhshadrach/subscriptions", "type": "User", "url": "https://api.github.com/users/rhshadrach" }
[ { "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": "5319e7", "default": false, "description": "parquet, feather", "id": 685114413, "name": "IO Parquet", "node_id": "MDU6TGFiZWw2ODUxMTQ0MTM=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20Parquet" }, { "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-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
2020-07-11T16:50:07Z
2020-07-17T13:08:25Z
2020-07-17T12:33:05Z
MEMBER
null
Adds documentation and type-hints for supporting file-like objects when `engine == 'pyarrow'`; relevant to #30081. Tests for this behavior currently exist in `io.test_parquet.py`: ```` @td.skip_if_no("pyarrow") def test_read_file_like_obj_support(self, df_compat): buffer = BytesIO() df_compat.to_parquet(buffer) df_from_buf = pd.read_parquet(buffer) tm.assert_frame_equal(df_compat, df_from_buf) ```` Perhaps the restrictions on the arguments when path is not a string: * partition_cols must be None; and * engine must end up being pyarrow should be checked directly in `DataFrame.to_parquet`, but I'm leaving this out as that is an API change that could be made in a subsequent PR. The latter gives the clear error message `TypeError: expected str, bytes or os.PathLike object, not _io.BytesIO` but the former raises `AttributeError: 'NoneType' object has no attribute '_isfilestore'` which is slightly confusing. Another API change that could be made subsequently is changing the `path` argument to `path_or_buf`, consistent with `DataFrame.to_csv`.
{ "+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/35235/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35235/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35235.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35235", "merged_at": "2020-07-17T12:33:05Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35235.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35235" }
https://api.github.com/repos/pandas-dev/pandas/issues/35236
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35236/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35236/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35236/events
https://github.com/pandas-dev/pandas/pull/35236
655,243,183
MDExOlB1bGxSZXF1ZXN0NDQ3NzkxNzk1
35,236
TST: added tests for sparse and date range quantiles
{ "avatar_url": "https://avatars.githubusercontent.com/u/25045024?v=4", "events_url": "https://api.github.com/users/sanders41/events{/privacy}", "followers_url": "https://api.github.com/users/sanders41/followers", "following_url": "https://api.github.com/users/sanders41/following{/other_user}", "gists_url": "https://api.github.com/users/sanders41/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/sanders41", "id": 25045024, "login": "sanders41", "node_id": "MDQ6VXNlcjI1MDQ1MDI0", "organizations_url": "https://api.github.com/users/sanders41/orgs", "received_events_url": "https://api.github.com/users/sanders41/received_events", "repos_url": "https://api.github.com/users/sanders41/repos", "site_admin": false, "starred_url": "https://api.github.com/users/sanders41/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/sanders41/subscriptions", "type": "User", "url": "https://api.github.com/users/sanders41" }
[ { "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": "009800", "default": false, "description": "Sparse Data Type", "id": 49182326, "name": "Sparse", "node_id": "MDU6TGFiZWw0OTE4MjMyNg==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Sparse" }, { "color": "eb6420", "default": false, "description": "Non-arithmetic algos: value_counts, factorize, sorting, isin, clip, shift, diff", "id": 57296398, "name": "Algos", "node_id": "MDU6TGFiZWw1NzI5NjM5OA==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Algos" } ]
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
2020-07-11T17:00:02Z
2020-07-16T15:29:24Z
2020-07-16T01:31:46Z
CONTRIBUTOR
null
- [x] closes #24600 - [x] tests added / passed - [x] passes `black pandas` - [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff` - [ ] whatsnew entry Added tests for sparse and date range quantiles
{ "+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/35236/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35236/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35236.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35236", "merged_at": "2020-07-16T01:31:45Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35236.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35236" }
https://api.github.com/repos/pandas-dev/pandas/issues/35237
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35237/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35237/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35237/events
https://github.com/pandas-dev/pandas/pull/35237
655,249,076
MDExOlB1bGxSZXF1ZXN0NDQ3Nzk1ODYx
35,237
TST: GH20676 Verify equals operator for list of Numpy arrays
{ "avatar_url": "https://avatars.githubusercontent.com/u/44933366?v=4", "events_url": "https://api.github.com/users/avinashpancham/events{/privacy}", "followers_url": "https://api.github.com/users/avinashpancham/followers", "following_url": "https://api.github.com/users/avinashpancham/following{/other_user}", "gists_url": "https://api.github.com/users/avinashpancham/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/avinashpancham", "id": 44933366, "login": "avinashpancham", "node_id": "MDQ6VXNlcjQ0OTMzMzY2", "organizations_url": "https://api.github.com/users/avinashpancham/orgs", "received_events_url": "https://api.github.com/users/avinashpancham/received_events", "repos_url": "https://api.github.com/users/avinashpancham/repos", "site_admin": false, "starred_url": "https://api.github.com/users/avinashpancham/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/avinashpancham/subscriptions", "type": "User", "url": "https://api.github.com/users/avinashpancham" }
[ { "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": "eb6420", "default": false, "description": "Non-arithmetic algos: value_counts, factorize, sorting, isin, clip, shift, diff", "id": 57296398, "name": "Algos", "node_id": "MDU6TGFiZWw1NzI5NjM5OA==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Algos" } ]
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" }
3
2020-07-11T17:38:42Z
2020-07-13T16:36:15Z
2020-07-13T16:36:12Z
CONTRIBUTOR
null
- [x] closes #20676 - [ 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/35237/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35237/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35237.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35237", "merged_at": "2020-07-13T16:36:11Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35237.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35237" }
https://api.github.com/repos/pandas-dev/pandas/issues/35238
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35238/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35238/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35238/events
https://github.com/pandas-dev/pandas/issues/35238
655,255,925
MDU6SXNzdWU2NTUyNTU5MjU=
35,238
REGR: concat on index with duplicate labels fails
{ "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": "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" }, { "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": "e11d21", "default": false, "description": "Blocking issue or pull request for an upcoming release", "id": 77550281, "name": "Blocker", "node_id": "MDU6TGFiZWw3NzU1MDI4MQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Blocker" } ]
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" }
10
2020-07-11T18:22:34Z
2020-07-15T12:24:40Z
2020-07-15T12:24:40Z
MEMBER
null
Noticed from failing geopandas tests: ```python df1 = pd.DataFrame({'a': [0, 1]}) df2 = pd.DataFrame({'b': [0, 1, 2]}, index=[0, 0, 1]) pd.concat([df1, df2], axis=1) ``` this started failing recently on master: ``` In [3]: pd.concat([df1, df2], axis=1) ... ~/scipy/pandas/pandas/core/internals/managers.py in _verify_integrity(self) 314 for block in self.blocks: 315 if block._verify_integrity and block.shape[1:] != mgr_shape[1:]: --> 316 raise construction_error(tot_items, block.shape[1:], self.axes) 317 if len(self.items) != tot_items: 318 raise AssertionError( ValueError: Shape of passed values is (3, 2), indices imply (2, 2) ``` While the expected result is (with automatic reindex of `df1` because concat aligns on the index): ``` In [2]: pd.concat([df1, df2], axis=1) Out[2]: a b 0 0 0 0 0 1 1 1 2 ```
{ "+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/35238/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35238/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/35239
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35239/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35239/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35239/events
https://github.com/pandas-dev/pandas/pull/35239
655,277,506
MDExOlB1bGxSZXF1ZXN0NDQ3ODE1ODc2
35,239
TST: GH#26367 Verify whether Pandas import succeeds when setting filt…
{ "avatar_url": "https://avatars.githubusercontent.com/u/44933366?v=4", "events_url": "https://api.github.com/users/avinashpancham/events{/privacy}", "followers_url": "https://api.github.com/users/avinashpancham/followers", "following_url": "https://api.github.com/users/avinashpancham/following{/other_user}", "gists_url": "https://api.github.com/users/avinashpancham/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/avinashpancham", "id": 44933366, "login": "avinashpancham", "node_id": "MDQ6VXNlcjQ0OTMzMzY2", "organizations_url": "https://api.github.com/users/avinashpancham/orgs", "received_events_url": "https://api.github.com/users/avinashpancham/received_events", "repos_url": "https://api.github.com/users/avinashpancham/repos", "site_admin": false, "starred_url": "https://api.github.com/users/avinashpancham/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/avinashpancham/subscriptions", "type": "User", "url": "https://api.github.com/users/avinashpancham" }
[ { "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
[]
null
2
2020-07-11T20:52:38Z
2020-07-12T16:40:57Z
2020-07-12T16:40:56Z
CONTRIBUTOR
null
…erwarnings - [x] closes #26367 - [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/35239/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35239/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35239.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35239", "merged_at": null, "patch_url": "https://github.com/pandas-dev/pandas/pull/35239.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35239" }
https://api.github.com/repos/pandas-dev/pandas/issues/35240
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35240/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35240/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35240/events
https://github.com/pandas-dev/pandas/issues/35240
655,290,670
MDU6SXNzdWU2NTUyOTA2NzA=
35,240
BUG: concat along the index (axis=0) of two dataframes with duplicate column name fails
{ "avatar_url": "https://avatars.githubusercontent.com/u/10137?v=4", "events_url": "https://api.github.com/users/ghost/events{/privacy}", "followers_url": "https://api.github.com/users/ghost/followers", "following_url": "https://api.github.com/users/ghost/following{/other_user}", "gists_url": "https://api.github.com/users/ghost/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/ghost", "id": 10137, "login": "ghost", "node_id": "MDQ6VXNlcjEwMTM3", "organizations_url": "https://api.github.com/users/ghost/orgs", "received_events_url": "https://api.github.com/users/ghost/received_events", "repos_url": "https://api.github.com/users/ghost/repos", "site_admin": false, "starred_url": "https://api.github.com/users/ghost/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/ghost/subscriptions", "type": "User", "url": "https://api.github.com/users/ghost" }
[ { "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, Stack/Unstack, Explode", "id": 13098779, "name": "Reshaping", "node_id": "MDU6TGFiZWwxMzA5ODc3OQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Reshaping" } ]
open
false
null
[]
{ "closed_at": null, "closed_issues": 786, "created_at": "2015-01-13T10:53:19Z", "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": "Changes that would be nice to have in the next release. These issues are not blocking. They will be pushed to the next release if no one has time to fix them.", "due_on": null, "html_url": "https://github.com/pandas-dev/pandas/milestone/32", "id": 933188, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/32/labels", "node_id": "MDk6TWlsZXN0b25lOTMzMTg4", "number": 32, "open_issues": 1053, "state": "open", "title": "Contributions Welcome", "updated_at": "2021-11-21T00:50:06Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/32" }
13
2020-07-11T22:30:50Z
2020-09-06T10:03:50Z
null
NONE
null
- [x] I have searched the [[pandas] tag](https://stackoverflow.com/questions/tagged/pandas) on StackOverflow for similar questions. - [x] I have asked my usage related question on [StackOverflow](https://stackoverflow.com). --- #### Question about pandas Hi, I have a persistent problem with concatenating multiple DataFrames with shapes: 1. (48, 5674) 2. (48, 9022) 3. (48, 7340), 4. (47, 6539) 5. (47, 10369) 6. (47, 17242) 7. (47, 19248) 8. (47, 14282) If I want to concatenate this, or even any part of it with ```python pd.concat(df_list) ``` I get the following error: ```python Traceback (most recent call last): File "E:/OneDrive/Informatik Studium/KIT Master/SS20/AGD Praktikum/phase-2/1_code/MyTest.py", line 46, in <module> df_result = __parallelize_dataframe(func=apply_functions, df_data=df_train.copy(), config_tupels=config_tupels) File "E:/OneDrive/Informatik Studium/KIT Master/SS20/AGD Praktikum/phase-2/1_code/MyTest.py", line 22, in __parallelize_dataframe df_pool_result = pd.concat(pool_result[0:2]) File "E:\venv\lib\site-packages\pandas\core\reshape\concat.py", line 284, in concat return op.get_result() File "E:\venv\lib\site-packages\pandas\core\reshape\concat.py", line 497, in get_result mgrs_indexers, self.new_axes, concat_axis=self.axis, copy=self.copy File "E:\venv\lib\site-packages\pandas\core\internals\managers.py", line 2016, in concatenate_block_managers elif is_uniform_join_units(join_units): File "E:\venv\lib\site-packages\pandas\core\internals\concat.py", line 388, in is_uniform_join_units all(not ju.is_na or ju.block.is_extension for ju in join_units) File "E:\venv\lib\site-packages\pandas\core\internals\concat.py", line 388, in <genexpr> all(not ju.is_na or ju.block.is_extension for ju in join_units) AttributeError: 'NoneType' object has no attribute 'is_extension' ``` I found out in my research, that blocks in the join_units are sometimes None. But I don't understand why this is so... All table entries in my DataFrames are not None/NaN. Unfortunately I can't post the data here, because they are very extensive. Maybe it helps to know that I split the rows in my original dataframe for multiprocessing. Afterwards I will concatenate them again, see above. Thanks a lot!
{ "+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/35240/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35240/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/35241
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35241/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35241/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35241/events
https://github.com/pandas-dev/pandas/pull/35241
655,292,039
MDExOlB1bGxSZXF1ZXN0NDQ3ODI1NTUy
35,241
BUG: GroupBy.count() and GroupBy.sum() incorreclty return NaN instead of 0 for missing categories (Version 2)
{ "avatar_url": "https://avatars.githubusercontent.com/u/3813175?v=4", "events_url": "https://api.github.com/users/smithto1/events{/privacy}", "followers_url": "https://api.github.com/users/smithto1/followers", "following_url": "https://api.github.com/users/smithto1/following{/other_user}", "gists_url": "https://api.github.com/users/smithto1/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/smithto1", "id": 3813175, "login": "smithto1", "node_id": "MDQ6VXNlcjM4MTMxNzU=", "organizations_url": "https://api.github.com/users/smithto1/orgs", "received_events_url": "https://api.github.com/users/smithto1/received_events", "repos_url": "https://api.github.com/users/smithto1/repos", "site_admin": false, "starred_url": "https://api.github.com/users/smithto1/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/smithto1/subscriptions", "type": "User", "url": "https://api.github.com/users/smithto1" }
[]
closed
false
null
[]
null
3
2020-07-11T22:42:16Z
2020-07-14T08:20:53Z
2020-07-14T08:20:53Z
MEMBER
null
- [x] closes #31422 - [x] closes #35028 - [x] tests added / passed - [x] passes `black pandas` - [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff` - [x] whatsnew entry _Behavioural Changes_ Fixing two related bugs: when grouping on multiple categoricals, .sum() and .count() would return NaN for the missing categories, but they are expected to return 0 for the missing categories. Both these bugs are fixed. _Tests_ Tests were added in PR #35022 when these bugs were discovered and the tests were marked with an xfail. For this PR the xfails are removed and the tests are passing normally. As well, a few other existing tests were expecting `sum()` to return `NaN`; these have been updated so that the tests now expect to get `0` (which is the desired behaviour). One new test is added to ensure that the exception handling of the new `try-except-finally` block behaves as expected. _df.pivot_table_ The changes to `.sum()` & `.count()` also impacts the `df.pivot_table()` if it is called with `aggfunc=sum/count` and is pivoted on a Categorical column with observed=False. This is not explicitly mentioned in either of the bugs, but it does make the behaviour consistent (i.e. the sum of a missing category is zero, not NaN). Two tests on test_pivot.py was updated to reflect this change.
{ "+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/35241/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35241/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35241.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35241", "merged_at": null, "patch_url": "https://github.com/pandas-dev/pandas/pull/35241.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35241" }
https://api.github.com/repos/pandas-dev/pandas/issues/35242
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35242/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35242/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35242/events
https://github.com/pandas-dev/pandas/pull/35242
655,299,818
MDExOlB1bGxSZXF1ZXN0NDQ3ODMwNjk0
35,242
CLN: annotate
{ "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" }, { "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-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
2020-07-11T23:51:52Z
2020-07-13T14:43:33Z
2020-07-13T12:35:01Z
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/35242/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35242/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35242.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35242", "merged_at": "2020-07-13T12:35:01Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35242.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35242" }
https://api.github.com/repos/pandas-dev/pandas/issues/35243
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35243/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35243/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35243/events
https://github.com/pandas-dev/pandas/pull/35243
655,305,880
MDExOlB1bGxSZXF1ZXN0NDQ3ODM0NzY2
35,243
Update asv default to 3.8
{ "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" }
[]
closed
false
null
[]
null
1
2020-07-12T00:43:46Z
2020-07-12T19:54:30Z
2020-07-12T19:54:23Z
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/35243/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35243/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35243.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35243", "merged_at": null, "patch_url": "https://github.com/pandas-dev/pandas/pull/35243.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35243" }
https://api.github.com/repos/pandas-dev/pandas/issues/35244
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35244/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35244/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35244/events
https://github.com/pandas-dev/pandas/pull/35244
655,312,487
MDExOlB1bGxSZXF1ZXN0NDQ3ODM5MDUz
35,244
ASV: dt64arr_to_periodarr
{ "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": "Period data type", "id": 60635328, "name": "Period", "node_id": "MDU6TGFiZWw2MDYzNTMyOA==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Period" }, { "color": "ae68cc", "default": false, "description": "Performance (ASV) benchmarks", "id": 732775912, "name": "Benchmark", "node_id": "MDU6TGFiZWw3MzI3NzU5MTI=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Benchmark" } ]
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" }
1
2020-07-12T01:47:05Z
2020-07-14T18:43:27Z
2020-07-14T17:16:30Z
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/35244/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35244/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35244.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35244", "merged_at": "2020-07-14T17:16:30Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35244.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35244" }
https://api.github.com/repos/pandas-dev/pandas/issues/35245
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35245/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35245/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35245/events
https://github.com/pandas-dev/pandas/pull/35245
655,329,265
MDExOlB1bGxSZXF1ZXN0NDQ3ODQ5Njc3
35,245
REF: de-duplicate get_resolution
{ "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": "5319e7", "default": false, "description": "Timezone data dtype", "id": 60458168, "name": "Timezones", "node_id": "MDU6TGFiZWw2MDQ1ODE2OA==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Timezones" } ]
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
2020-07-12T04:33:31Z
2020-08-04T02:01:27Z
2020-08-03T23:22:04Z
MEMBER
null
This changes get_resolution to use the same less-verbose pattern as ints_to_pydatetime; hopefully we'll be able to refactor out a couple of helper functions. asv run says this is perf-neutral
{ "+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/35245/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35245/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35245.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35245", "merged_at": "2020-08-03T23:22:04Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35245.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35245" }
https://api.github.com/repos/pandas-dev/pandas/issues/35246
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35246/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35246/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35246/events
https://github.com/pandas-dev/pandas/issues/35246
655,332,504
MDU6SXNzdWU2NTUzMzI1MDQ=
35,246
BUG: AttributeError when doing groupby with as_index=False on Empty DataFrame
{ "avatar_url": "https://avatars.githubusercontent.com/u/46143571?v=4", "events_url": "https://api.github.com/users/salem3358/events{/privacy}", "followers_url": "https://api.github.com/users/salem3358/followers", "following_url": "https://api.github.com/users/salem3358/following{/other_user}", "gists_url": "https://api.github.com/users/salem3358/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/salem3358", "id": 46143571, "login": "salem3358", "node_id": "MDQ6VXNlcjQ2MTQzNTcx", "organizations_url": "https://api.github.com/users/salem3358/orgs", "received_events_url": "https://api.github.com/users/salem3358/received_events", "repos_url": "https://api.github.com/users/salem3358/repos", "site_admin": false, "starred_url": "https://api.github.com/users/salem3358/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/salem3358/subscriptions", "type": "User", "url": "https://api.github.com/users/salem3358" }
[ { "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": "729FCF", "default": false, "description": null, "id": 233160, "name": "Groupby", "node_id": "MDU6TGFiZWwyMzMxNjA=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Groupby" }, { "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" } ]
closed
false
{ "avatar_url": "https://avatars.githubusercontent.com/u/46143571?v=4", "events_url": "https://api.github.com/users/salem3358/events{/privacy}", "followers_url": "https://api.github.com/users/salem3358/followers", "following_url": "https://api.github.com/users/salem3358/following{/other_user}", "gists_url": "https://api.github.com/users/salem3358/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/salem3358", "id": 46143571, "login": "salem3358", "node_id": "MDQ6VXNlcjQ2MTQzNTcx", "organizations_url": "https://api.github.com/users/salem3358/orgs", "received_events_url": "https://api.github.com/users/salem3358/received_events", "repos_url": "https://api.github.com/users/salem3358/repos", "site_admin": false, "starred_url": "https://api.github.com/users/salem3358/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/salem3358/subscriptions", "type": "User", "url": "https://api.github.com/users/salem3358" }
[ { "avatar_url": "https://avatars.githubusercontent.com/u/46143571?v=4", "events_url": "https://api.github.com/users/salem3358/events{/privacy}", "followers_url": "https://api.github.com/users/salem3358/followers", "following_url": "https://api.github.com/users/salem3358/following{/other_user}", "gists_url": "https://api.github.com/users/salem3358/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/salem3358", "id": 46143571, "login": "salem3358", "node_id": "MDQ6VXNlcjQ2MTQzNTcx", "organizations_url": "https://api.github.com/users/salem3358/orgs", "received_events_url": "https://api.github.com/users/salem3358/received_events", "repos_url": "https://api.github.com/users/salem3358/repos", "site_admin": false, "starred_url": "https://api.github.com/users/salem3358/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/salem3358/subscriptions", "type": "User", "url": "https://api.github.com/users/salem3358" } ]
{ "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" }
9
2020-07-12T05:08:24Z
2020-07-17T18:49:54Z
2020-07-17T18:49:54Z
CONTRIBUTOR
null
- [x] I have checked that this issue has not already been reported. - [x] I have confirmed this bug exists on the latest version of pandas. - [x] (optional) I have confirmed this bug exists on the master branch of pandas. --- **Note**: Please read [this guide](https://matthewrocklin.com/blog/work/2018/02/28/minimal-bug-reports) detailing how to provide the necessary information for us to reproduce your bug. #### Code Sample, a copy-pastable example ```python # Your code here import pandas as pd pd.DataFrame(columns=["a", "b"]).groupby(by="a", as_index=False)["b"].sum() ``` #### Problem description in version 0.25.3, this code return an empty DataFrame with columns=["a", "b"] #### Expected Output an empty DataFrame with columns=["a", "b"] #### Output of ``pd.show_versions()`` <details> [paste the output of ``pd.show_versions()`` here leaving a blank line after the details tag] </details> INSTALLED VERSIONS ------------------ commit : None python : 3.6.2.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 : 1.0.5 numpy : 1.19.0 pytz : 2020.1 dateutil : 2.8.1 pip : 19.0.3 setuptools : 40.8.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 : None numexpr : None odfpy : None openpyxl : None pandas_gbq : None pyarrow : None pytables : None pytest : None pyxlsb : None s3fs : None scipy : None sqlalchemy : None tables : None tabulate : None xarray : None xlrd : None xlwt : None xlsxwriter : None numba : None
{ "+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/35246/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35246/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/35247
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35247/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35247/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35247/events
https://github.com/pandas-dev/pandas/issues/35247
655,339,567
MDU6SXNzdWU2NTUzMzk1Njc=
35,247
PERF: DataFrame.query slow when it contains PeriodIndex/Array
{ "avatar_url": "https://avatars.githubusercontent.com/u/351856?v=4", "events_url": "https://api.github.com/users/semio/events{/privacy}", "followers_url": "https://api.github.com/users/semio/followers", "following_url": "https://api.github.com/users/semio/following{/other_user}", "gists_url": "https://api.github.com/users/semio/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/semio", "id": 351856, "login": "semio", "node_id": "MDQ6VXNlcjM1MTg1Ng==", "organizations_url": "https://api.github.com/users/semio/orgs", "received_events_url": "https://api.github.com/users/semio/received_events", "repos_url": "https://api.github.com/users/semio/repos", "site_admin": false, "starred_url": "https://api.github.com/users/semio/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/semio/subscriptions", "type": "User", "url": "https://api.github.com/users/semio" }
[ { "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": "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" } ]
open
false
null
[]
null
2
2020-07-12T06:14:10Z
2020-09-02T23:57:32Z
null
NONE
null
- [x] I have checked that this issue has not already been reported. - [x] I have confirmed this bug exists on the latest version of pandas. - [ ] (optional) I have confirmed this bug exists on the master branch of pandas. #### Code Sample, a copy-pastable example ```python In [1]: import numpy as np In [2]: import pandas as pd In [23]: country = list(range(200)) In [24]: year = list(range(1600, 2100)) In [25]: idx = pd.MultiIndex.from_product([country, year], names=['country', 'year']) In [27]: values = np.random.rand(idx.shape[0], 1) In [30]: df = pd.DataFrame(values, index=idx, columns=['values']).reset_index() In [41]: df2 = df.copy() In [42]: df2['year'] = df2['year'].astype(str).apply(lambda x: pd.Period(x, 'Y')) # performance when year column is int dtype In [47]: %timeit df.query("year > 2020") 3.48 ms ± 80.2 µs per loop (mean ± std. dev. of 7 runs, 100 loops each) In [48]: %timeit df[df.year > 2020] 1.07 ms ± 16.7 µs per loop (mean ± std. dev. of 7 runs, 1000 loops each) # performance when year column is Peroid dtype In [49]: %timeit df2.query("year > '2020'") 1.03 s ± 18.3 ms per loop (mean ± std. dev. of 7 runs, 1 loop each) In [50]: %timeit df2[df2.year > '2020'] 1.46 ms ± 21.8 µs per loop (mean ± std. dev. of 7 runs, 1000 loops each) ``` #### Problem description In above example, the `year` column of `df2` is a Series of Period objects. Running query() on the year column is a lot slower than running indexing (1.03s vs 1.46ms). Changing `engine` and `parser` for query() doesn't help. #### Expected Output I was expecting performance difference between querying and boolean indexing is similar to that when the year column's dtype is int (~3x) #### Output of ``pd.show_versions()`` <details> INSTALLED VERSIONS ------------------ commit : None python : 3.8.1.final.0 python-bits : 64 OS : Darwin OS-release : 18.7.0 machine : x86_64 processor : i386 byteorder : little LC_ALL : en_US.UTF-8 LANG : zh_CN.UTF-8 LOCALE : en_US.UTF-8 pandas : 1.0.5 numpy : 1.18.4 pytz : 2020.1 dateutil : 2.8.1 pip : 20.1.1 setuptools : 41.2.0 Cython : None pytest : 5.4.2 hypothesis : 5.16.0 sphinx : 3.0.4 blosc : None feather : None xlsxwriter : None lxml.etree : 4.5.1 html5lib : None pymysql : None psycopg2 : None jinja2 : 2.11.2 IPython : 7.14.0 pandas_datareader: None bs4 : None bottleneck : None fastparquet : None gcsfs : None lxml.etree : 4.5.1 matplotlib : None numexpr : 2.7.1 odfpy : None openpyxl : None pandas_gbq : None pyarrow : None pytables : None pytest : 5.4.2 pyxlsb : None s3fs : None scipy : None sqlalchemy : None tables : None tabulate : 0.8.7 xarray : None xlrd : 1.2.0 xlwt : None xlsxwriter : None numba : 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/35247/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35247/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/35248
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35248/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35248/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35248/events
https://github.com/pandas-dev/pandas/issues/35248
655,376,322
MDU6SXNzdWU2NTUzNzYzMjI=
35,248
BUG: Resampling a Series with a DST to 24 hours gives a different result depending on whether timedelta(hours=24) or "24H" was used.
{ "avatar_url": "https://avatars.githubusercontent.com/u/30658763?v=4", "events_url": "https://api.github.com/users/Flix6x/events{/privacy}", "followers_url": "https://api.github.com/users/Flix6x/followers", "following_url": "https://api.github.com/users/Flix6x/following{/other_user}", "gists_url": "https://api.github.com/users/Flix6x/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/Flix6x", "id": 30658763, "login": "Flix6x", "node_id": "MDQ6VXNlcjMwNjU4NzYz", "organizations_url": "https://api.github.com/users/Flix6x/orgs", "received_events_url": "https://api.github.com/users/Flix6x/received_events", "repos_url": "https://api.github.com/users/Flix6x/repos", "site_admin": false, "starred_url": "https://api.github.com/users/Flix6x/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Flix6x/subscriptions", "type": "User", "url": "https://api.github.com/users/Flix6x" }
[ { "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": "207de5", "default": false, "description": "resample method", "id": 74975453, "name": "Resample", "node_id": "MDU6TGFiZWw3NDk3NTQ1Mw==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Resample" } ]
open
false
null
[]
null
3
2020-07-12T10:52:06Z
2020-07-13T01:47:34Z
null
CONTRIBUTOR
null
- [X] I have checked that this issue has not already been reported. - [X] I have confirmed this bug exists on the latest version of pandas. - [ ] (optional) I have confirmed this bug exists on the master branch of pandas. --- #### Code Sample, a copy-pastable example ```python >>> import pandas as pd >>> from datetime import timedelta >>> # works as expected given a DST (second index is 24 hours after the first index) >>> pd.Series(1, index=pd.date_range("2020-03-29", "2020-03-30 01:00", freq="H", tz="Europe/Amsterdam")).resample("24H").asfreq() 2020-03-29 00:00:00+01:00 1 2020-03-30 01:00:00+02:00 1 Freq: 24H, dtype: int64 >>> # works, but not as expected (second index is 23 hours after the first index) >>> pd.Series(1, index=pd.date_range("2020-03-29", "2020-03-30 01:00", freq="H", tz="Europe/Amsterdam")).resample(timedelta(hours=24)).asfreq() 2020-03-29 00:00:00+01:00 1 2020-03-30 00:00:00+02:00 1 Freq: D, dtype: int64 ``` #### Problem description Resampling to a timedelta of 24 hours gives a result as if it's resampling to a timedelta of 1 calendar day. Using a `freq_str` of 24H does give the expected behaviour. Possibly related issues: - #22864 - #35219 #### Expected Output ```python >>> pd.Series(1, index=pd.date_range("2020-03-29", "2020-03-30 01:00", freq="H", tz="Europe/Amsterdam")).resample(timedelta(hours=24)).asfreq() 2020-03-29 00:00:00+01:00 1 2020-03-30 01:00:00+02:00 1 Freq: 24H, dtype: int64 ``` #### Output of ``pd.show_versions()`` <details> INSTALLED VERSIONS ------------------ commit : None python : 3.7.7.final.0 python-bits : 64 OS : Linux OS-release : 4.9.0-11-amd64 machine : x86_64 processor : byteorder : little LC_ALL : None LANG : en_US.UTF-8 LOCALE : en_US.UTF-8 pandas : 1.0.5 numpy : 1.19.0 pytz : 2020.1 dateutil : 2.8.1 pip : 20.1.1 setuptools : 47.3.1.post20200622 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 : None numexpr : None odfpy : None openpyxl : None pandas_gbq : None pyarrow : None pytables : None pytest : None pyxlsb : None s3fs : None scipy : None sqlalchemy : None tables : None tabulate : None xarray : None xlrd : None xlwt : None xlsxwriter : None numba : 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/35248/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35248/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/35249
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35249/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35249/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35249/events
https://github.com/pandas-dev/pandas/issues/35249
655,426,034
MDU6SXNzdWU2NTU0MjYwMzQ=
35,249
Performance Regression in frame_methods.Equals.time_frame_float_equal
{ "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": "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-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
2020-07-12T15:54:15Z
2020-07-17T18:49:28Z
2020-07-17T18:49:28Z
CONTRIBUTOR
null
https://pandas.pydata.org/speed/pandas/index.html#frame_methods.Equals.time_frame_float_equal?commits=77f4a4d673e2d2b3f7396a94818771d332bd913c Some discussion starting at https://github.com/pandas-dev/pandas/pull/34962#issuecomment-655456601 @jbrockmendel what needs to be done for 1.1, just optimize `array_equivalent` or something larger? Is this a blocker (if so can you add the blocker tag)?
{ "+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/35249/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35249/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/35250
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35250/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35250/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35250/events
https://github.com/pandas-dev/pandas/pull/35250
655,469,159
MDExOlB1bGxSZXF1ZXN0NDQ3OTQ5NDk5
35,250
REF: de-duplicate vectorized normalize functions
{ "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" }
[]
closed
false
null
[]
null
0
2020-07-12T20:18:10Z
2021-11-20T23:22:39Z
2020-07-12T22:42:44Z
MEMBER
null
xref #35245. I think we lose some ground on UTC/naive because a `with nogil` is removed here. Im OK with this tradeoff since it moves us towards being able to de-duplicate a bunch of code in this file; im hopeful we can eventually get the nogil back (in fact, i think we may be able to get it back for everything but the tzlocal case, and maybe even that pending https://github.com/cython/cython/issues/3733) ``` before after ratio [37662ea3] [bbdbaae2] <ref-fields-offsets> <ref-normalize> + 25.2±0.4μs 29.6±2μs 1.17 tslibs.normalize.Normalize.time_normalize_i8_timestamps(10000, None) + 25.9±0.9μs 29.8±0.9μs 1.15 tslibs.normalize.Normalize.time_normalize_i8_timestamps(10000, datetime.timezone.utc) - 7.51±0.2μs 6.59±0.3μs 0.88 tslibs.normalize.Normalize.time_is_date_array_normalized(1, tzfile('/usr/share/zoneinfo/Asia/Tokyo')) - 5.43±0.08ms 4.69±0.1ms 0.86 tslibs.normalize.Normalize.time_normalize_i8_timestamps(100, tzlocal()) - 6.73±0.2μs 5.68±0.2μs 0.84 tslibs.normalize.Normalize.time_is_date_array_normalized(0, <DstTzInfo 'US/Pacific' LMT-1 day, 16:07:00 STD>) - 1.13±0.03μs 939±20ns 0.83 tslibs.normalize.Normalize.time_is_date_array_normalized(1, datetime.timezone.utc) - 1.29±0.07μs 1.01±0.01μs 0.79 tslibs.normalize.Normalize.time_is_date_array_normalized(0, datetime.timezone.utc) ```
{ "+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/35250/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35250/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35250.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35250", "merged_at": null, "patch_url": "https://github.com/pandas-dev/pandas/pull/35250.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35250" }
https://api.github.com/repos/pandas-dev/pandas/issues/35251
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35251/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35251/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35251/events
https://github.com/pandas-dev/pandas/issues/35251
655,473,208
MDU6SXNzdWU2NTU0NzMyMDg=
35,251
Inconsistent NA handling for BinGrouper and Grouper
{ "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": "e10c02", "default": false, "description": null, "id": 76811, "name": "Bug", "node_id": "MDU6TGFiZWw3NjgxMQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug" }, { "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": "b60205", "default": false, "description": "Internal Consistency of API/Behavior", "id": 1741841389, "name": "API - Consistency", "node_id": "MDU6TGFiZWwxNzQxODQxMzg5", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/API%20-%20Consistency" } ]
open
false
null
[]
{ "closed_at": null, "closed_issues": 786, "created_at": "2015-01-13T10:53:19Z", "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": "Changes that would be nice to have in the next release. These issues are not blocking. They will be pushed to the next release if no one has time to fix them.", "due_on": null, "html_url": "https://github.com/pandas-dev/pandas/milestone/32", "id": 933188, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/32/labels", "node_id": "MDk6TWlsZXN0b25lOTMzMTg4", "number": 32, "open_issues": 1053, "state": "open", "title": "Contributions Welcome", "updated_at": "2021-11-21T00:50:06Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/32" }
3
2020-07-12T20:43:58Z
2020-07-20T01:29:45Z
null
CONTRIBUTOR
null
BinGrouper and Grouper handle NA values differently when looking at the codes. ```python In [79]: df = pd.DataFrame({"A": [1, 2, 3]}, index=pd.PeriodIndex([pd.NaT, pd.NaT, pd.NaT], freq="D")) In [80]: a = df.groupby(df.index).grouper In [81]: b = df.resample("1D")._get_binner()[1] In [82]: a.codes Out[82]: [array([-1, -1, -1])] In [83]: b.codes Out[83]: [array([], dtype=int64)] ``` With https://github.com/pandas-dev/pandas/pull/34998, this can cause a false positive on the apply `group_index` warning if you have an all NA group. Ideally they have the same representation (I think all `-1` is correct). xref https://github.com/pandas-dev/pandas/pull/34998#issuecomment-652497050.
{ "+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/35251/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35251/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/35252
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35252/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35252/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35252/events
https://github.com/pandas-dev/pandas/issues/35252
655,479,485
MDU6SXNzdWU2NTU0Nzk0ODU=
35,252
CI: warning from setuptools (Numpy Dev Build Failures)
{ "avatar_url": "https://avatars.githubusercontent.com/u/16733618?v=4", "events_url": "https://api.github.com/users/alimcmaster1/events{/privacy}", "followers_url": "https://api.github.com/users/alimcmaster1/followers", "following_url": "https://api.github.com/users/alimcmaster1/following{/other_user}", "gists_url": "https://api.github.com/users/alimcmaster1/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/alimcmaster1", "id": 16733618, "login": "alimcmaster1", "node_id": "MDQ6VXNlcjE2NzMzNjE4", "organizations_url": "https://api.github.com/users/alimcmaster1/orgs", "received_events_url": "https://api.github.com/users/alimcmaster1/received_events", "repos_url": "https://api.github.com/users/alimcmaster1/repos", "site_admin": false, "starred_url": "https://api.github.com/users/alimcmaster1/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/alimcmaster1/subscriptions", "type": "User", "url": "https://api.github.com/users/alimcmaster1" }
[ { "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
[]
null
6
2020-07-12T21:24:48Z
2020-07-13T19:55:48Z
null
CONTRIBUTOR
null
``` def warn_distutils_present(): if 'distutils' not in sys.modules: return if is_pypy and sys.version_info < (3, 7): # PyPy for 3.6 unconditionally imports distutils, so bypass the warning # https://foss.heptapod.net/pypy/pypy/-/blob/be829135bc0d758997b3566062999ee8b23872b4/lib-python/3/site.py#L250 return warnings.warn( > "Distutils was imported before Setuptools. This usage is discouraged " "and may exhibit undesirable behaviors or errors. Please use " "Setuptools' objects directly or at least import Setuptools first.") E UserWarning: Distutils was imported before Setuptools. This usage is discouraged and may exhibit undesirable behaviors or errors. Please use Setuptools' objects directly or at least import Setuptools first. ``` e.g : https://dev.azure.com/pandas-dev/pandas/_build/results?buildId=39110&view=logs&j=3a03f79d-0b41-5610-1aa4-b4a014d0bc70&t=4d05ed0e-1ed3-5bff-dd63-1e957f2766a9&l=195
{ "+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/35252/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35252/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/35253
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35253/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35253/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35253/events
https://github.com/pandas-dev/pandas/pull/35253
655,489,044
MDExOlB1bGxSZXF1ZXN0NDQ3OTYzNTAx
35,253
BUG: ValueError on groupby with categoricals
{ "avatar_url": "https://avatars.githubusercontent.com/u/3813175?v=4", "events_url": "https://api.github.com/users/smithto1/events{/privacy}", "followers_url": "https://api.github.com/users/smithto1/followers", "following_url": "https://api.github.com/users/smithto1/following{/other_user}", "gists_url": "https://api.github.com/users/smithto1/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/smithto1", "id": 3813175, "login": "smithto1", "node_id": "MDQ6VXNlcjM4MTMxNzU=", "organizations_url": "https://api.github.com/users/smithto1/orgs", "received_events_url": "https://api.github.com/users/smithto1/received_events", "repos_url": "https://api.github.com/users/smithto1/repos", "site_admin": false, "starred_url": "https://api.github.com/users/smithto1/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/smithto1/subscriptions", "type": "User", "url": "https://api.github.com/users/smithto1" }
[ { "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": "729FCF", "default": false, "description": null, "id": 233160, "name": "Groupby", "node_id": "MDU6TGFiZWwyMzMxNjA=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Groupby" }, { "color": "e11d21", "default": false, "description": "Categorical Data Type", "id": 78527356, "name": "Categorical", "node_id": "MDU6TGFiZWw3ODUyNzM1Ng==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Categorical" } ]
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" }
3
2020-07-12T22:31:33Z
2020-07-13T22:22:54Z
2020-07-13T22:22:46Z
MEMBER
null
- [x] closes #34951 - [x] tests added / passed - [x] passes `black pandas` - [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff` - [x] whatsnew entry Within `DataFrameGroupBy._cython_agg_blocks`, if it is aggregating a one-column DataFrame, it creates a `SeriresGroupBy`, calls the function on that and takes the returned values. But the `SeriesGroupBy` also does the missing-categories reindexing. The `DataFrameGroupBy` ends up with values that contain the missing categories, and an index that does not. When they are passed into a BlockManager it raises a `ValueError` stating that their lengths don't match. Solutions is to have `_cython_agg_blocks` create a `SeriesGroupBy` with `observed=True` so it doesn't do any reindexing. The reindexing is left to the calling `DataFrameGroupBy` This also explains why error only occurred in `DataFrameGroupBy` but not `SeriesGroupBy`.
{ "+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/35253/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35253/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35253.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35253", "merged_at": "2020-07-13T22:22:45Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35253.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35253" }
https://api.github.com/repos/pandas-dev/pandas/issues/35254
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35254/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35254/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35254/events
https://github.com/pandas-dev/pandas/pull/35254
655,491,381
MDExOlB1bGxSZXF1ZXN0NDQ3OTY1MTY4
35,254
BUG: Use correct ExtensionArray reductions in DataFrame 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": "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" }, { "color": "6138b5", "default": false, "description": "Extending pandas with custom dtypes or arrays.", "id": 849023693, "name": "ExtensionArray", "node_id": "MDU6TGFiZWw4NDkwMjM2OTM=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/ExtensionArray" } ]
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" }
10
2020-07-12T22:48:34Z
2020-07-15T22:44:19Z
2020-07-15T22:17:58Z
MEMBER
null
- [x] closes #34520 - [x] 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/35254/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35254/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35254.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35254", "merged_at": "2020-07-15T22:17:58Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35254.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35254" }
https://api.github.com/repos/pandas-dev/pandas/issues/35255
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35255/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35255/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35255/events
https://github.com/pandas-dev/pandas/pull/35255
655,493,097
MDExOlB1bGxSZXF1ZXN0NDQ3OTY2NDIx
35,255
REF: make tz_convert match pattern elsewhere
{ "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": "5319e7", "default": false, "description": "Timezone data dtype", "id": 60458168, "name": "Timezones", "node_id": "MDU6TGFiZWw2MDQ1ODE2OA==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Timezones" } ]
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" }
1
2020-07-12T23:00:59Z
2020-07-13T20:13:24Z
2020-07-13T16:42:47Z
MEMBER
null
asvs for tslibs.tz_convert show this as perf-neutral
{ "+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/35255/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35255/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35255.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35255", "merged_at": "2020-07-13T16:42:47Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35255.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35255" }
https://api.github.com/repos/pandas-dev/pandas/issues/35256
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35256/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35256/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35256/events
https://github.com/pandas-dev/pandas/pull/35256
655,493,598
MDExOlB1bGxSZXF1ZXN0NDQ3OTY2Nzkz
35,256
PERF: array_equivalent
{ "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": "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": "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
3
2020-07-12T23:04:16Z
2020-07-14T20:15:34Z
2020-07-14T20:15:15Z
MEMBER
null
xref #35249, this gives about a 3x speedup in the asv reported there cc @jorisvandenbossche EA.equals doesn't support a strict_nan arg, is there anything we need to do to account for that 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/35256/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35256/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35256.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35256", "merged_at": null, "patch_url": "https://github.com/pandas-dev/pandas/pull/35256.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35256" }
https://api.github.com/repos/pandas-dev/pandas/issues/35257
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35257/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35257/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35257/events
https://github.com/pandas-dev/pandas/pull/35257
655,502,373
MDExOlB1bGxSZXF1ZXN0NDQ3OTczMjU5
35,257
Add keep parameter for duplicates values in idxmax, idxmin, argmax, and argmin
{ "avatar_url": "https://avatars.githubusercontent.com/u/31222951?v=4", "events_url": "https://api.github.com/users/MatthewMoye/events{/privacy}", "followers_url": "https://api.github.com/users/MatthewMoye/followers", "following_url": "https://api.github.com/users/MatthewMoye/following{/other_user}", "gists_url": "https://api.github.com/users/MatthewMoye/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/MatthewMoye", "id": 31222951, "login": "MatthewMoye", "node_id": "MDQ6VXNlcjMxMjIyOTUx", "organizations_url": "https://api.github.com/users/MatthewMoye/orgs", "received_events_url": "https://api.github.com/users/MatthewMoye/received_events", "repos_url": "https://api.github.com/users/MatthewMoye/repos", "site_admin": false, "starred_url": "https://api.github.com/users/MatthewMoye/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/MatthewMoye/subscriptions", "type": "User", "url": "https://api.github.com/users/MatthewMoye" }
[ { "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, "id": 35818298, "name": "API Design", "node_id": "MDU6TGFiZWwzNTgxODI5OA==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/API%20Design" }, { "color": "78bced", "default": false, "description": "Waiting for review/response from a maintainer.", "id": 2324533627, "name": "Needs Review", "node_id": "MDU6TGFiZWwyMzI0NTMzNjI3", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Needs%20Review" } ]
closed
false
null
[]
null
7
2020-07-13T00:01:14Z
2020-11-26T18:59:27Z
2020-11-26T18:59:27Z
NONE
null
- [x] closes #34205 - [ ] tests added / passed - [x] passes `black pandas` - [ ] 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/35257/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35257/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35257.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35257", "merged_at": null, "patch_url": "https://github.com/pandas-dev/pandas/pull/35257.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35257" }
https://api.github.com/repos/pandas-dev/pandas/issues/35258
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35258/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35258/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35258/events
https://github.com/pandas-dev/pandas/pull/35258
655,635,938
MDExOlB1bGxSZXF1ZXN0NDQ4MDc5NDM3
35,258
[BUG] fixed DateOffset pickle bug when months >= 12
{ "avatar_url": "https://avatars.githubusercontent.com/u/5236149?v=4", "events_url": "https://api.github.com/users/fujiaxiang/events{/privacy}", "followers_url": "https://api.github.com/users/fujiaxiang/followers", "following_url": "https://api.github.com/users/fujiaxiang/following{/other_user}", "gists_url": "https://api.github.com/users/fujiaxiang/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/fujiaxiang", "id": 5236149, "login": "fujiaxiang", "node_id": "MDQ6VXNlcjUyMzYxNDk=", "organizations_url": "https://api.github.com/users/fujiaxiang/orgs", "received_events_url": "https://api.github.com/users/fujiaxiang/received_events", "repos_url": "https://api.github.com/users/fujiaxiang/repos", "site_admin": false, "starred_url": "https://api.github.com/users/fujiaxiang/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/fujiaxiang/subscriptions", "type": "User", "url": "https://api.github.com/users/fujiaxiang" }
[ { "color": "0052cc", "default": false, "description": "DateOffsets", "id": 53181044, "name": "Frequency", "node_id": "MDU6TGFiZWw1MzE4MTA0NA==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Frequency" }, { "color": "0052cc", "default": false, "description": "pandas objects compatability with Numpy or Python functions", "id": 76865106, "name": "Compat", "node_id": "MDU6TGFiZWw3Njg2NTEwNg==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Compat" } ]
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" }
9
2020-07-13T08:13:54Z
2021-03-20T02:35:50Z
2020-08-14T16:17:38Z
MEMBER
null
- [x] closes #34511 - [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/35258/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35258/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35258.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35258", "merged_at": "2020-08-14T16:17:38Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35258.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35258" }
https://api.github.com/repos/pandas-dev/pandas/issues/35259
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35259/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35259/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35259/events
https://github.com/pandas-dev/pandas/pull/35259
655,733,457
MDExOlB1bGxSZXF1ZXN0NDQ4MTU5OTk0
35,259
ENH: Basis for a StringDtype using Arrow
{ "avatar_url": "https://avatars.githubusercontent.com/u/70274?v=4", "events_url": "https://api.github.com/users/xhochy/events{/privacy}", "followers_url": "https://api.github.com/users/xhochy/followers", "following_url": "https://api.github.com/users/xhochy/following{/other_user}", "gists_url": "https://api.github.com/users/xhochy/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/xhochy", "id": 70274, "login": "xhochy", "node_id": "MDQ6VXNlcjcwMjc0", "organizations_url": "https://api.github.com/users/xhochy/orgs", "received_events_url": "https://api.github.com/users/xhochy/received_events", "repos_url": "https://api.github.com/users/xhochy/repos", "site_admin": false, "starred_url": "https://api.github.com/users/xhochy/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/xhochy/subscriptions", "type": "User", "url": "https://api.github.com/users/xhochy" }
[ { "color": "5319e7", "default": false, "description": "String extension data type and string data", "id": 57522093, "name": "Strings", "node_id": "MDU6TGFiZWw1NzUyMjA5Mw==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Strings" }, { "color": "6138b5", "default": false, "description": "Extending pandas with custom dtypes or arrays.", "id": 849023693, "name": "ExtensionArray", "node_id": "MDU6TGFiZWw4NDkwMjM2OTM=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/ExtensionArray" } ]
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" }
30
2020-07-13T10:20:01Z
2020-11-20T20:50:34Z
2020-11-20T14:20:24Z
CONTRIBUTOR
null
- [x] xref #35169 - [x] 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/35259/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35259/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35259.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35259", "merged_at": "2020-11-20T14:20:24Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35259.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35259" }
https://api.github.com/repos/pandas-dev/pandas/issues/35260
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35260/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35260/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35260/events
https://github.com/pandas-dev/pandas/pull/35260
655,801,212
MDExOlB1bGxSZXF1ZXN0NDQ4MjE1NjMx
35,260
CI: Ignore setuptools distutils warning
{ "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" } ]
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
2020-07-13T12:12:36Z
2020-07-14T13:15:47Z
2020-07-13T15:27:00Z
CONTRIBUTOR
null
xref https://github.com/pandas-dev/pandas/issues/35252. Just ignoring in the test. Can discuss a proper solution in the 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/35260/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35260/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35260.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35260", "merged_at": "2020-07-13T15:27:00Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35260.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35260" }
https://api.github.com/repos/pandas-dev/pandas/issues/35261
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35261/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35261/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35261/events
https://github.com/pandas-dev/pandas/issues/35261
655,856,099
MDU6SXNzdWU2NTU4NTYwOTk=
35,261
Failures with pytest 6.0.0rc1
{ "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": "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": "a2bca7", "default": false, "description": "Continuous Integration", "id": 48070600, "name": "CI", "node_id": "MDU6TGFiZWw0ODA3MDYwMA==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/CI" } ]
closed
false
null
[]
null
2
2020-07-13T13:33:12Z
2020-07-29T15:59:29Z
2020-07-29T15:59:28Z
CONTRIBUTOR
null
https://dev.azure.com/pandas-dev/pandas/_build/results?buildId=39140&view=logs&j=a3a13ea8-7cf0-5bdb-71bb-6ac8830ae35c&t=add65f64-6c25-5783-8fd6-d9aa1b63d9d4 ``` =================================== FAILURES =================================== ____ TestStringMethods.test_api_per_method[index-empty0-get_dummies-object] ____ [gw0] linux -- Python 3.7.6 /home/vsts/miniconda3/envs/pandas-dev/bin/python copy=False, name=None, verify_integrity: bool = True, _set_identity: bool = True, ): # compat with Index if name is not None: names = name if levels is None or codes is None: raise TypeError("Must pass both levels and codes") if len(levels) != len(codes): raise ValueError("Length of levels and codes must be the same.") if len(levels) == 0: > raise ValueError("Must pass non-zero number of levels/codes") E ValueError: Must pass non-zero number of levels/codes pandas/core/indexes/multi.py:271: ValueError ``` In the failing cases we dynamically add a an xfail marker: https://github.com/pandas-dev/pandas/blob/f477a0e8146e3f249d2a5c08031020c15c1ecd95/pandas/tests/test_strings.py#L266-L268. Reported at https://github.com/pytest-dev/pytest/issues/7486. For now we can pin pytest.
{ "+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/35261/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35261/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/35262
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35262/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35262/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35262/events
https://github.com/pandas-dev/pandas/issues/35262
655,856,100
MDU6SXNzdWU2NTU4NTYxMDA=
35,262
Failures with pytest 6.0.0rc1
{ "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": "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": "a2bca7", "default": false, "description": "Continuous Integration", "id": 48070600, "name": "CI", "node_id": "MDU6TGFiZWw0ODA3MDYwMA==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/CI" } ]
closed
false
null
[]
null
0
2020-07-13T13:33:12Z
2020-07-13T13:39:24Z
2020-07-13T13:39:24Z
CONTRIBUTOR
null
https://dev.azure.com/pandas-dev/pandas/_build/results?buildId=39140&view=logs&j=a3a13ea8-7cf0-5bdb-71bb-6ac8830ae35c&t=add65f64-6c25-5783-8fd6-d9aa1b63d9d4 ``` =================================== FAILURES =================================== ____ TestStringMethods.test_api_per_method[index-empty0-get_dummies-object] ____ [gw0] linux -- Python 3.7.6 /home/vsts/miniconda3/envs/pandas-dev/bin/python copy=False, name=None, verify_integrity: bool = True, _set_identity: bool = True, ): # compat with Index if name is not None: names = name if levels is None or codes is None: raise TypeError("Must pass both levels and codes") if len(levels) != len(codes): raise ValueError("Length of levels and codes must be the same.") if len(levels) == 0: > raise ValueError("Must pass non-zero number of levels/codes") E ValueError: Must pass non-zero number of levels/codes pandas/core/indexes/multi.py:271: ValueError ``` In the failing cases we dynamically add a an xfail marker: https://github.com/pandas-dev/pandas/blob/f477a0e8146e3f249d2a5c08031020c15c1ecd95/pandas/tests/test_strings.py#L266-L268. Reported at https://github.com/pytest-dev/pytest/issues/7486. For now we can pin pytest.
{ "+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/35262/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35262/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/35263
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35263/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35263/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35263/events
https://github.com/pandas-dev/pandas/issues/35263
655,952,894
MDU6SXNzdWU2NTU5NTI4OTQ=
35,263
nan + nan = 0 when skipna=True or when groupby().sum()
{ "avatar_url": "https://avatars.githubusercontent.com/u/44190900?v=4", "events_url": "https://api.github.com/users/raholler/events{/privacy}", "followers_url": "https://api.github.com/users/raholler/followers", "following_url": "https://api.github.com/users/raholler/following{/other_user}", "gists_url": "https://api.github.com/users/raholler/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/raholler", "id": 44190900, "login": "raholler", "node_id": "MDQ6VXNlcjQ0MTkwOTAw", "organizations_url": "https://api.github.com/users/raholler/orgs", "received_events_url": "https://api.github.com/users/raholler/received_events", "repos_url": "https://api.github.com/users/raholler/repos", "site_admin": false, "starred_url": "https://api.github.com/users/raholler/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/raholler/subscriptions", "type": "User", "url": "https://api.github.com/users/raholler" }
[ { "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
2020-07-13T15:43:19Z
2020-07-13T19:33:54Z
2020-07-13T19:33:54Z
NONE
null
**Disclaimer**: Not sure whether this is expected behavior. I would have not expected it though and it is always bad in my use cases (survey data). Example: ```python data = pd.DataFrame( data = { "var1": [np.nan, 1000, 2000], "var2": [np.nan, 100, np.nan], "hh_id" : [1, 2, 2] } ) ``` **Normal sum** ``` data[["var1", "var2"]].sum(axis=1) ``` Expected output: ``` 0 np.nan 1 1100.0 2 2000.0 dtype: float64 ``` Output: ``` 0 0.0 1 1100.0 2 2000.0 dtype: float64 ``` **Groupby sum** ```python data.groupby("hh_id")["var2"].sum() ``` Expected output: ``` hh_id 1 np.nan 2 100.0 Name: var2, dtype: float64 ``` Output ``` hh_id 1 0.0 2 100.0 Name: var2, dtype: float64 ```
{ "+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/35263/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35263/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/35264
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35264/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35264/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35264/events
https://github.com/pandas-dev/pandas/issues/35264
655,997,559
MDU6SXNzdWU2NTU5OTc1NTk=
35,264
DOC: Incomplete method description for str.match
{ "avatar_url": "https://avatars.githubusercontent.com/u/11415411?v=4", "events_url": "https://api.github.com/users/Uvatha/events{/privacy}", "followers_url": "https://api.github.com/users/Uvatha/followers", "following_url": "https://api.github.com/users/Uvatha/following{/other_user}", "gists_url": "https://api.github.com/users/Uvatha/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/Uvatha", "id": 11415411, "login": "Uvatha", "node_id": "MDQ6VXNlcjExNDE1NDEx", "organizations_url": "https://api.github.com/users/Uvatha/orgs", "received_events_url": "https://api.github.com/users/Uvatha/received_events", "repos_url": "https://api.github.com/users/Uvatha/repos", "site_admin": false, "starred_url": "https://api.github.com/users/Uvatha/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Uvatha/subscriptions", "type": "User", "url": "https://api.github.com/users/Uvatha" }
[ { "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": 717120670, "name": "good first issue", "node_id": "MDU6TGFiZWw3MTcxMjA2NzA=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/good%20first%20issue" } ]
closed
false
null
[]
null
2
2020-07-13T16:52:59Z
2020-09-04T15:05:13Z
2020-09-04T15:05:13Z
NONE
null
#### Location of the documentation https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.Series.str.match.html #### Documentation problem The current method description is: "Determine if each string matches a regular expression." This description does not specify that str.match only matches the beginning of a string. This leads to confusion when regex does not function as expected. #### Suggested fix for documentation Change method description to: "Determine if the beginning of each string matches a regular expression." This makes the documentation more accurate, and also makes the method description align with the match function from the re module, from which it is taken.
{ "+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/35264/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35264/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/35265
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35265/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35265/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35265/events
https://github.com/pandas-dev/pandas/issues/35265
656,024,438
MDU6SXNzdWU2NTYwMjQ0Mzg=
35,265
ENH: Add `into` argument for `to_xarray` method?
{ "avatar_url": "https://avatars.githubusercontent.com/u/9061708?v=4", "events_url": "https://api.github.com/users/jolespin/events{/privacy}", "followers_url": "https://api.github.com/users/jolespin/followers", "following_url": "https://api.github.com/users/jolespin/following{/other_user}", "gists_url": "https://api.github.com/users/jolespin/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/jolespin", "id": 9061708, "login": "jolespin", "node_id": "MDQ6VXNlcjkwNjE3MDg=", "organizations_url": "https://api.github.com/users/jolespin/orgs", "received_events_url": "https://api.github.com/users/jolespin/received_events", "repos_url": "https://api.github.com/users/jolespin/repos", "site_admin": false, "starred_url": "https://api.github.com/users/jolespin/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jolespin/subscriptions", "type": "User", "url": "https://api.github.com/users/jolespin" }
[ { "color": "4E9A06", "default": false, "description": null, "id": 76812, "name": "Enhancement", "node_id": "MDU6TGFiZWw3NjgxMg==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Enhancement" } ]
closed
false
null
[]
null
8
2020-07-13T17:38:28Z
2020-08-21T17:05:24Z
2020-07-14T00:57:17Z
NONE
null
#### Is your feature request related to a problem? I would like to able to specify the object used for creating `xarray` objects. #### Describe the solution you'd like Right now, the only option is `xr.Dataset` but I tend to prefer `xr.DataArray` objects. #### API breaking implications It shouldn't affect the API in any complicated ways. #### Describe alternatives you've considered Create a `xr.Dataset` and then convert that to `xr.DataArray`. However, this step could be obviated by usage similar to [`to_dict`](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.to_dict.html) method. #### Additional context ```python import pandas as pd import xarray as xr df = pd.read_csv("https://pastebin.com/raw/dR59vTD4", sep="\t", index_col=0) da = df.to_xarray(into=xr.DataArray) ```
{ "+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/35265/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35265/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/35266
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35266/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35266/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35266/events
https://github.com/pandas-dev/pandas/pull/35266
656,124,107
MDExOlB1bGxSZXF1ZXN0NDQ4NDc3NjY1
35,266
REGR: setting column with setitem should not modify existing array inplace
{ "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": "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": "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" } ]
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" }
5
2020-07-13T20:39:20Z
2020-08-18T13:37:46Z
2020-07-28T13:12:17Z
MEMBER
null
Closes #33457 This changes `ExtensionBlock.setitem` to how it was before #32831: updating the Block itself inplace, but not the array. @jbrockmendel I know you won't like that this update the Block inplace (it's also not exactly what you suggested at https://github.com/pandas-dev/pandas/issues/33457#issuecomment-654367183). But this was the smallest change I could find to fix the issue. The alternative is probably changing `BlockManager.iset` to not use Block.set in case of an existing ExtensionBlock, but `BlockManager.iset` is quite complex ..
{ "+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/35266/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35266/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35266.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35266", "merged_at": null, "patch_url": "https://github.com/pandas-dev/pandas/pull/35266.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35266" }
https://api.github.com/repos/pandas-dev/pandas/issues/35267
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35267/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35267/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35267/events
https://github.com/pandas-dev/pandas/issues/35267
656,157,107
MDU6SXNzdWU2NTYxNTcxMDc=
35,267
BUG: Series.equals fails when comparing numpy arrays to scalars
{ "avatar_url": "https://avatars.githubusercontent.com/u/44933366?v=4", "events_url": "https://api.github.com/users/avinashpancham/events{/privacy}", "followers_url": "https://api.github.com/users/avinashpancham/followers", "following_url": "https://api.github.com/users/avinashpancham/following{/other_user}", "gists_url": "https://api.github.com/users/avinashpancham/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/avinashpancham", "id": 44933366, "login": "avinashpancham", "node_id": "MDQ6VXNlcjQ0OTMzMzY2", "organizations_url": "https://api.github.com/users/avinashpancham/orgs", "received_events_url": "https://api.github.com/users/avinashpancham/received_events", "repos_url": "https://api.github.com/users/avinashpancham/repos", "site_admin": false, "starred_url": "https://api.github.com/users/avinashpancham/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/avinashpancham/subscriptions", "type": "User", "url": "https://api.github.com/users/avinashpancham" }
[ { "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": "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" } ]
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" }
6
2020-07-13T21:29:19Z
2020-09-19T20:29:43Z
2020-09-19T20:29:43Z
CONTRIBUTOR
null
- [x] I have checked that this issue has not already been reported. - [x] I have confirmed this bug exists on the latest version of pandas. - [x] (optional) I have confirmed this bug exists on the master branch of pandas. --- **Note**: Please read [this guide](https://matthewrocklin.com/blog/work/2018/02/28/minimal-bug-reports) detailing how to provide the necessary information for us to reproduce your bug. #### Code Sample, a copy-pastable example ```python import pandas as pd import numpy as np arr = np.array([1, 2]) s1 = pd.Series([arr, arr]) s2 = s1.copy() s1[1] = 9 s1.equals(s2) # This throws a ValueError ValueError: The truth value of an array with more than one element is ambiguous. Use a.any() or a.all() ``` #### Problem description Series.equals operation fails when comparing two Series that at the same position respectively have a single value and a list. Pandas then throws a ValueError since it cannot compare a single value to a list. Related issues #20676 and #35237 #### Expected Output False, since the two series are not equal #### Output of ``pd.show_versions()`` <details> INSTALLED VERSIONS ------------------ commit : 9827ce00f95927ddf6a0565450bc175879454d4e python : 3.8.3.final.0 python-bits : 64 OS : Darwin OS-release : 19.5.0 Version : Darwin Kernel Version 19.5.0: Tue May 26 20:41:44 PDT 2020; root:xnu-6153.121.2~2/RELEASE_X86_64 machine : x86_64 processor : i386 byteorder : little LC_ALL : None LANG : None LOCALE : None.UTF-8 pandas : 1.1.0.dev0+2088.g9827ce00f numpy : 1.18.5 pytz : 2020.1 dateutil : 2.8.1 pip : 20.1.1 setuptools : 49.2.0.post20200712 Cython : 0.29.21 pytest : 5.4.3 hypothesis : 5.19.1 sphinx : 3.1.1 blosc : None feather : None xlsxwriter : 1.2.9 lxml.etree : 4.5.2 html5lib : 1.1 pymysql : None psycopg2 : None jinja2 : 2.11.2 IPython : 7.16.1 pandas_datareader: None bs4 : 4.9.1 bottleneck : 1.3.2 fsspec : 0.7.4 fastparquet : 0.4.0 gcsfs : 0.6.2 matplotlib : 3.2.2 numexpr : 2.7.1 odfpy : None openpyxl : 3.0.4 pandas_gbq : None pyarrow : 0.17.1 pytables : None pyxlsb : None s3fs : 0.4.2 scipy : 1.5.0 sqlalchemy : 1.3.18 tables : 3.6.1 tabulate : 0.8.7 xarray : 0.16.0 xlrd : 1.2.0 xlwt : 1.3.0 numba : 0.50.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/35267/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35267/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/35268
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35268/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35268/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35268/events
https://github.com/pandas-dev/pandas/issues/35268
656,261,199
MDU6SXNzdWU2NTYyNjExOTk=
35,268
BUG: pd.replace changes category dtype to object when using a dict to replace values
{ "avatar_url": "https://avatars.githubusercontent.com/u/22126205?v=4", "events_url": "https://api.github.com/users/mathurk1/events{/privacy}", "followers_url": "https://api.github.com/users/mathurk1/followers", "following_url": "https://api.github.com/users/mathurk1/following{/other_user}", "gists_url": "https://api.github.com/users/mathurk1/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/mathurk1", "id": 22126205, "login": "mathurk1", "node_id": "MDQ6VXNlcjIyMTI2MjA1", "organizations_url": "https://api.github.com/users/mathurk1/orgs", "received_events_url": "https://api.github.com/users/mathurk1/received_events", "repos_url": "https://api.github.com/users/mathurk1/repos", "site_admin": false, "starred_url": "https://api.github.com/users/mathurk1/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/mathurk1/subscriptions", "type": "User", "url": "https://api.github.com/users/mathurk1" }
[ { "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": "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": "e11d21", "default": false, "description": "Categorical Data Type", "id": 78527356, "name": "Categorical", "node_id": "MDU6TGFiZWw3ODUyNzM1Ng==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Categorical" }, { "color": "6138b5", "default": false, "description": "Extending pandas with custom dtypes or arrays.", "id": 849023693, "name": "ExtensionArray", "node_id": "MDU6TGFiZWw4NDkwMjM2OTM=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/ExtensionArray" }, { "color": "01a886", "default": false, "description": "replace method", "id": 1652721180, "name": "replace", "node_id": "MDU6TGFiZWwxNjUyNzIxMTgw", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/replace" } ]
open
false
null
[]
null
4
2020-07-14T01:45:05Z
2020-10-21T23:08:48Z
null
CONTRIBUTOR
null
- [x] I have checked that this issue has not already been reported. - [x] I have confirmed this bug exists on the latest version of pandas. - [x] (optional) I have confirmed this bug exists on the master branch of pandas. --- **Note**: Please read [this guide](https://matthewrocklin.com/blog/work/2018/02/28/minimal-bug-reports) detailing how to provide the necessary information for us to reproduce your bug. #### Code Sample, a copy-pastable example ```python >>> import pandas as pd >>> pd.__version__ '1.0.5' >>> input_dict = {"col1": ["a"], "col2": ["obj1"], "col3": ["cat1"]} >>> input_df = pd.DataFrame(data=input_dict).astype({"col1": "category", "col2": "category", "col3": "category"}) >>> input_df col1 col2 col3 0 a obj1 cat1 >>> input_df.dtypes col1 category col2 category col3 category dtype: object >>> input_df = input_df.replace({"a": "z", "obj1": "obj9", "cat1": "catX"}) >>> input_df col1 col2 col3 0 z obj9 catX >>> input_df.dtypes col1 object col2 object col3 object dtype: object ``` #### Problem description Currently, the category dtypes are lost when we use pandas replace. This loss of category dtype is observed only when a dictionary is used to replace multiple values. I was able to recreate the issue for `pd.__version__ == '1.1.0.dev0+2073.g280efbfcc'` as well. Also, please see related issue: https://github.com/pandas-dev/pandas/issues/23305 #### Expected Output I would expect the categorical columns to keep their category dtype after replace is called on the dataframe. Thanks! #### Output of ``pd.show_versions()`` <details> INSTALLED VERSIONS ------------------ commit : None python : 3.7.3.final.0 python-bits : 64 OS : Darwin OS-release : 19.5.0 machine : x86_64 processor : i386 byteorder : little LC_ALL : None LANG : None LOCALE : en_US.UTF-8 pandas : 1.0.5 numpy : 1.19.0 pytz : 2020.1 dateutil : 2.8.1 pip : 19.0.3 setuptools : 40.8.0 Cython : None pytest : 5.4.3 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 : None numexpr : None odfpy : None openpyxl : None pandas_gbq : None pyarrow : None pytables : None pytest : 5.4.3 pyxlsb : None s3fs : None scipy : None sqlalchemy : None tables : None tabulate : None xarray : None xlrd : None xlwt : None xlsxwriter : None numba : 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/35268/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35268/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/35269
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35269/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35269/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35269/events
https://github.com/pandas-dev/pandas/issues/35269
656,333,261
MDU6SXNzdWU2NTYzMzMyNjE=
35,269
BUG: merge_ordered fails when left_by is set to more than one column
{ "avatar_url": "https://avatars.githubusercontent.com/u/6571068?v=4", "events_url": "https://api.github.com/users/Rufflewind/events{/privacy}", "followers_url": "https://api.github.com/users/Rufflewind/followers", "following_url": "https://api.github.com/users/Rufflewind/following{/other_user}", "gists_url": "https://api.github.com/users/Rufflewind/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/Rufflewind", "id": 6571068, "login": "Rufflewind", "node_id": "MDQ6VXNlcjY1NzEwNjg=", "organizations_url": "https://api.github.com/users/Rufflewind/orgs", "received_events_url": "https://api.github.com/users/Rufflewind/received_events", "repos_url": "https://api.github.com/users/Rufflewind/repos", "site_admin": false, "starred_url": "https://api.github.com/users/Rufflewind/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Rufflewind/subscriptions", "type": "User", "url": "https://api.github.com/users/Rufflewind" }
[ { "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, Stack/Unstack, Explode", "id": 13098779, "name": "Reshaping", "node_id": "MDU6TGFiZWwxMzA5ODc3OQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Reshaping" } ]
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" }
1
2020-07-14T05:19:32Z
2020-11-29T17:45:40Z
2020-11-29T17:45:40Z
CONTRIBUTOR
null
- [x] I have checked that this issue has not already been reported. - [x] I have confirmed this bug exists on the latest version of pandas. - [ ] (optional) I have confirmed this bug exists on the master branch of pandas. --- **Note**: Please read [this guide](https://matthewrocklin.com/blog/work/2018/02/28/minimal-bug-reports) detailing how to provide the necessary information for us to reproduce your bug. #### Code Sample, a copy-pastable example ```python import io, pandas l = pandas.read_csv(io.StringIO(''' G H T g h 1 g h 3 '''), delim_whitespace=True) r = pandas.read_csv(io.StringIO(''' T 2 '''), delim_whitespace=True) pandas.merge_ordered(l, r, on=['T'], left_by=['G', 'H']) ``` #### Problem description This fails: ``` Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/lib/python3.8/site-packages/pandas/core/reshape/merge.py", line 290, in merge_ordered result, _ = _groupby_and_merge( File "/usr/lib/python3.8/site-packages/pandas/core/reshape/merge.py", line 162, in _groupby_and_merge merged[k] = key File "/usr/lib/python3.8/site-packages/pandas/core/frame.py", line 2938, in __setitem__ self._set_item(key, value) File "/usr/lib/python3.8/site-packages/pandas/core/frame.py", line 3000, in _set_item value = self._sanitize_column(key, value) File "/usr/lib/python3.8/site-packages/pandas/core/frame.py", line 3636, in _sanitize_column value = sanitize_index(value, self.index, copy=False) File "/usr/lib/python3.8/site-packages/pandas/core/internals/construction.py", line 611, in sanitize_index raise ValueError("Length of values does not match length of index") ValueError: Length of values does not match length of index ``` #### Expected Output Not failing. Should return: G H T 0 g h 1 1 g h 3 For comparison, the above works fine if we use `left_by=['G']` and omit the `H` column entirely. #### Output of ``pd.show_versions()`` <details> INSTALLED VERSIONS ------------------ commit : None python : 3.8.3.final.0 python-bits : 64 OS : Linux OS-release : 5.7.7-arch1-1 machine : x86_64 processor : byteorder : little LC_ALL : None LANG : en_FYL.UTF-8 LOCALE : en_US.UTF-8 pandas : 1.0.5 numpy : 1.19.0 pytz : 2020.1 dateutil : 2.8.1 pip : 20.1.1 setuptools : 49.1.0 Cython : None pytest : None hypothesis : None sphinx : None blosc : None feather : None xlsxwriter : None lxml.etree : 4.5.1 html5lib : 1.1 pymysql : None psycopg2 : None jinja2 : 2.11.2 IPython : 7.16.1 pandas_datareader: None bs4 : 4.9.1 bottleneck : None fastparquet : None gcsfs : None lxml.etree : 4.5.1 matplotlib : 3.2.2 numexpr : None odfpy : None openpyxl : None pandas_gbq : None pyarrow : None pytables : None pytest : None pyxlsb : None s3fs : None scipy : 1.5.0 sqlalchemy : 1.3.18 tables : None tabulate : None xarray : None xlrd : None xlwt : None xlsxwriter : None numba : 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/35269/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35269/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/35270
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35270/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35270/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35270/events
https://github.com/pandas-dev/pandas/pull/35270
656,402,511
MDExOlB1bGxSZXF1ZXN0NDQ4NzA4MDEw
35,270
TST: Add test to ensure DF describe does not throw an error (#32409)
{ "avatar_url": "https://avatars.githubusercontent.com/u/25218389?v=4", "events_url": "https://api.github.com/users/luckyvs1/events{/privacy}", "followers_url": "https://api.github.com/users/luckyvs1/followers", "following_url": "https://api.github.com/users/luckyvs1/following{/other_user}", "gists_url": "https://api.github.com/users/luckyvs1/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/luckyvs1", "id": 25218389, "login": "luckyvs1", "node_id": "MDQ6VXNlcjI1MjE4Mzg5", "organizations_url": "https://api.github.com/users/luckyvs1/orgs", "received_events_url": "https://api.github.com/users/luckyvs1/received_events", "repos_url": "https://api.github.com/users/luckyvs1/repos", "site_admin": false, "starred_url": "https://api.github.com/users/luckyvs1/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/luckyvs1/subscriptions", "type": "User", "url": "https://api.github.com/users/luckyvs1" }
[ { "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
[]
null
11
2020-07-14T07:45:02Z
2021-01-20T07:38:37Z
2020-12-10T20:57:53Z
CONTRIBUTOR
null
- [x] closes #32409 - [x] tests added / passed - [x] passes `black pandas` - [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff` - [ ] whatsnew entry Notes: - Tested using `pytest pandas/tests/frame/methods/test_describe.py::TestDataFrameDescribe::test_describe_does_not_raise_error` and tested error format by calling a raise error line in the try block `raise TypeError("Test message")`
{ "+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/35270/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35270/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35270.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35270", "merged_at": null, "patch_url": "https://github.com/pandas-dev/pandas/pull/35270.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35270" }
https://api.github.com/repos/pandas-dev/pandas/issues/35271
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35271/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35271/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35271/events
https://github.com/pandas-dev/pandas/pull/35271
656,412,210
MDExOlB1bGxSZXF1ZXN0NDQ4NzE2MDA3
35,271
REGR: revert ExtensionBlock.set to be in-place
{ "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": "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": "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" } ]
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" }
17
2020-07-14T08:01:29Z
2020-08-18T13:40:30Z
2020-07-27T18:00:06Z
MEMBER
null
Alternative for https://github.com/pandas-dev/pandas/pull/35266 and closes #35369
{ "+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/35271/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35271/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35271.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35271", "merged_at": "2020-07-27T18:00:06Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35271.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35271" }
https://api.github.com/repos/pandas-dev/pandas/issues/35272
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35272/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35272/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35272/events
https://github.com/pandas-dev/pandas/pull/35272
656,435,169
MDExOlB1bGxSZXF1ZXN0NDQ4NzM1MDEy
35,272
CI: Unpin pytest
{ "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": "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": "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": "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-08-21T08:34:54Z", "closed_issues": 110, "created_at": "2020-07-10T13:54:44Z", "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.1.x", "due_on": "2020-08-22T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/75", "id": 5640672, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/75/labels", "node_id": "MDk6TWlsZXN0b25lNTY0MDY3Mg==", "number": 75, "open_issues": 0, "state": "closed", "title": "1.1.1", "updated_at": "2020-08-25T06:31:23Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/75" }
11
2020-07-14T08:35:44Z
2020-07-30T12:20:14Z
2020-07-29T15:59:29Z
MEMBER
null
- [ ] closes #35261 have made a start working through the failures. we should be able to get mypy to green here and then when pytest 6.0.0 is released the upstream fixes should cause ci to go red since we have `warn_unused_ignores = True` in setup.cfg.
{ "+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/35272/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35272/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35272.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35272", "merged_at": "2020-07-29T15:59:28Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35272.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35272" }
https://api.github.com/repos/pandas-dev/pandas/issues/35273
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35273/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35273/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35273/events
https://github.com/pandas-dev/pandas/pull/35273
656,578,579
MDExOlB1bGxSZXF1ZXN0NDQ4ODUyOTYy
35,273
Move API changes to appropriate sections
{ "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": "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" }
2
2020-07-14T12:35:38Z
2020-07-14T17:10:00Z
2020-07-14T17:09:42Z
CONTRIBUTOR
null
xref https://github.com/pandas-dev/pandas/issues/34801
{ "+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/35273/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35273/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35273.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35273", "merged_at": "2020-07-14T17:09:42Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35273.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35273" }
https://api.github.com/repos/pandas-dev/pandas/issues/35274
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35274/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35274/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35274/events
https://github.com/pandas-dev/pandas/pull/35274
656,599,600
MDExOlB1bGxSZXF1ZXN0NDQ4ODcwMzAw
35,274
CI: pin pytest in minimum versions
{ "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" } ]
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
2020-07-14T13:09:29Z
2020-07-14T13:56:57Z
2020-07-14T13:56:50Z
MEMBER
null
xref https://github.com/pandas-dev/pandas/pull/35260#discussion_r454293041
{ "+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/35274/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35274/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35274.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35274", "merged_at": "2020-07-14T13:56:50Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35274.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35274" }
https://api.github.com/repos/pandas-dev/pandas/issues/35275
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35275/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35275/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35275/events
https://github.com/pandas-dev/pandas/issues/35275
656,644,676
MDU6SXNzdWU2NTY2NDQ2NzY=
35,275
BUG: agg on groups with different sizes fails with out of bounds IndexError
{ "avatar_url": "https://avatars.githubusercontent.com/u/169155?v=4", "events_url": "https://api.github.com/users/valkum/events{/privacy}", "followers_url": "https://api.github.com/users/valkum/followers", "following_url": "https://api.github.com/users/valkum/following{/other_user}", "gists_url": "https://api.github.com/users/valkum/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/valkum", "id": 169155, "login": "valkum", "node_id": "MDQ6VXNlcjE2OTE1NQ==", "organizations_url": "https://api.github.com/users/valkum/orgs", "received_events_url": "https://api.github.com/users/valkum/received_events", "repos_url": "https://api.github.com/users/valkum/repos", "site_admin": false, "starred_url": "https://api.github.com/users/valkum/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/valkum/subscriptions", "type": "User", "url": "https://api.github.com/users/valkum" }
[ { "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": "729FCF", "default": false, "description": null, "id": 233160, "name": "Groupby", "node_id": "MDU6TGFiZWwyMzMxNjA=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Groupby" }, { "color": "207de5", "default": false, "description": "resample method", "id": 74975453, "name": "Resample", "node_id": "MDU6TGFiZWw3NDk3NTQ1Mw==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Resample" }, { "color": "fbca04", "default": false, "description": "Apply, Aggregate, Transform", "id": 697792067, "name": "Apply", "node_id": "MDU6TGFiZWw2OTc3OTIwNjc=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Apply" } ]
open
false
null
[]
null
14
2020-07-14T14:12:20Z
2021-08-08T17:03:30Z
null
NONE
null
- [X] I have checked that this issue has not already been reported. - [X] I have confirmed this bug exists on the latest version of pandas. - [ ] (optional) I have confirmed this bug exists on the master branch of pandas. --- #### Code Sample, a copy-pastable example See here as well: https://repl.it/@valkum/WrithingNotablePascal ```python import numpy as np import pandas as pd data = { 'date': ['2000-01-01', '2000-01-02', '2000-01-01', '2000-01-02'], 'team': ['client1', 'client1', 'client2', 'client2'], 'temp': [0.780302, 0.035013, 0.355633, 0.243835], } df = pd.DataFrame( data ) df['date'] = pd.to_datetime(df['date']) df = df.drop(df.index[1]) sampled=df.groupby('team').resample("1D", on='date') #Returns IndexError sampled.agg({'temp': np.mean}) #Returns IndexError as well sampled['temp'].mean() ``` #### Problem description agg fails with `IndexError: index 3 is out of bounds for axis 0 with size 3` Note that this does work as expected when I do not drop a row after createing the DataFrame, so I assume it is caused by the index. #### Expected Output No fail. #### Output of ``pd.show_versions()`` <details> INSTALLED VERSIONS ------------------ commit : None python : 3.8.3.final.0 python-bits : 64 OS : Linux OS-release : 5.4.0-1009-gcp machine : x86_64 processor : x86_64 byteorder : little LC_ALL : en_US.UTF-8 LANG : en_US.UTF-8 LOCALE : en_US.UTF-8 pandas : 1.0.5 numpy : 1.19.0 pytz : 2020.1 dateutil : 2.8.1 pip : 20.1.1 setuptools : 47.3.1 Cython : None pytest : None hypothesis : None sphinx : None blosc : None feather : None xlsxwriter : None lxml.etree : None html5lib : 1.1 pymysql : None psycopg2 : None jinja2 : 2.11.2 IPython : None pandas_datareader: None bs4 : None bottleneck : None fastparquet : None gcsfs : None lxml.etree : None matplotlib : 3.2.2 numexpr : None odfpy : None openpyxl : None pandas_gbq : None pyarrow : None pytables : None pytest : None pyxlsb : None s3fs : None scipy : 1.5.0 sqlalchemy : 1.3.17 tables : None tabulate : None xarray : None xlrd : None xlwt : None xlsxwriter : None numba : 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/35275/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35275/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/35276
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35276/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35276/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35276/events
https://github.com/pandas-dev/pandas/issues/35276
656,765,698
MDU6SXNzdWU2NTY3NjU2OTg=
35,276
DOC: remove Bug Fix / Other section in whatsnew in favor of correct placement of issues
{ "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" }
[ { "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": 717120670, "name": "good first issue", "node_id": "MDU6TGFiZWw3MTcxMjA2NzA=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/good%20first%20issue" } ]
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
2020-07-14T17:07:00Z
2020-07-17T17:32:56Z
2020-07-17T17:32:56Z
CONTRIBUTOR
null
*very* few of the current whatsnew notes in Bug Fixes / Other actually belong. Should move everything out.
{ "+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/35276/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35276/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/35277
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35277/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35277/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35277/events
https://github.com/pandas-dev/pandas/pull/35277
656,876,088
MDExOlB1bGxSZXF1ZXN0NDQ5MDk1MDM3
35,277
Revert "BUG: fix union_indexes not supporting sort=False for Index subclasses"
{ "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": "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" } ]
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
2020-07-14T20:23:45Z
2020-07-15T12:31:17Z
2020-07-15T12:24:40Z
CONTRIBUTOR
null
Reverts pandas-dev/pandas#35098 Closes https://github.com/pandas-dev/pandas/issues/35238 I'll also push a test from https://github.com/pandas-dev/pandas/issues/35238 here, and add the xfailing tests from #35098.
{ "+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/35277/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35277/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35277.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35277", "merged_at": "2020-07-15T12:24:40Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35277.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35277" }
https://api.github.com/repos/pandas-dev/pandas/issues/35278
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35278/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35278/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35278/events
https://github.com/pandas-dev/pandas/issues/35278
656,896,548
MDU6SXNzdWU2NTY4OTY1NDg=
35,278
BUG: values-dependent reindex behavior in Groupby.apply
{ "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": "e10c02", "default": false, "description": null, "id": 76811, "name": "Bug", "node_id": "MDU6TGFiZWw3NjgxMQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug" }, { "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": "fbca04", "default": false, "description": "Apply, Aggregate, Transform", "id": 697792067, "name": "Apply", "node_id": "MDU6TGFiZWw2OTc3OTIwNjc=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Apply" } ]
open
false
null
[]
null
0
2020-07-14T21:01:29Z
2021-08-08T17:04:02Z
null
CONTRIBUTOR
null
xref https://github.com/pandas-dev/pandas/pull/34998#issuecomment-658318898. Currently (on master and in my PR at https://github.com/pandas-dev/pandas/pull/34998), `.groupby(...).apply` has some value-dependent behavior. Specifically ```python In [1]: import pandas as pd In [2]: df1 = pd.DataFrame({"A": [2, 1, 2], "B": [1, 2, 3]}) ...: df2 = pd.DataFrame({"A": [2, 1, 2], "B": [1, 2, 1]}) # duplicates in group "2" In [3]: df1.groupby("A", group_keys=False).apply(lambda x: x.drop_duplicates()) Out[3]: A B 0 2 1 1 1 2 2 2 3 In [4]: df2.groupby("A", group_keys=False).apply(lambda x: x.drop_duplicates()) Out[4]: A B 1 1 2 0 2 1 ``` Internally, groupby constructs a list of DataFrames, one per group, that are the results of the UDF applied to each group. Those are concatenated together, and are at this point in "group" order. If we detect that the `.apply` was actually a transform, we reindex the concatenated result back to the original index. https://github.com/pandas-dev/pandas/blob/b6222ec976a71b4ba0c643411606e2376e744c4d/pandas/core/groupby/groupby.py#L1114-L1128 Out[3] has been viewed as a transform and so was reindexed. Whether or not the UDF was a transform depends on the values, and we generally discourage this type of values-dependent behavior. To solve this, we have a few options 1. Implement a "table-wise" transform. This solves the usecase where people are using `.apply` rather than transform just because it operates on dataframes rather than columns. We could do this through `.groupby(..., axis=None).transform()` or through `.groupby(...).transform_table()` / `transform_frame()`. This doesn't help with the `drop_duplicates` example, which is more of a filter (that sometimes doesn't filter anything). 2. Implement a "table-wise" filter. Currently `.groupby().filter()` expects the UDF to return a scalar, and filters *groups* based on that. It could be expanded to also allow the UDF to return an array. In this case it would filter *rows* where the returned value evaluates to True. This would solve the `drop_duplicates` use case, but not all use cases. 3. Regardless of whether 1 or 2 are implemented, add a `reindex_output` keyword to groupby to control this very narrow case. This would only be relevant when `group_keys=False` and we've detected an apply. It gives users control over whether or not the result is reindexed. ```python >>> df1.groupby("A", group_keys=False, reindex_output=True).apply(lambda x: x.drop_duplicates()) A B 0 2 1 1 1 2 2 2 3 >>> df1.groupby("A", group_keys=False, reindex_output=False).apply(lambda x: x.drop_duplicates()) A B 1 1 2 0 2 1 2 2 3 ``` It has no effect in any other case, including `group_keys=False`. By default, it can be `None` to preserve the values-dependent behavior on master. Though we can explore deprecating it if there's any desire.
{ "+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/35278/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35278/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/35279
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35279/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35279/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35279/events
https://github.com/pandas-dev/pandas/issues/35279
656,980,251
MDU6SXNzdWU2NTY5ODAyNTE=
35,279
pandas/tests/io/json/test_pandas.py::TestPandasContainer::test_read_json_large_numbers failing for 32-bit system
{ "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": "e10c02", "default": false, "description": null, "id": 76811, "name": "Bug", "node_id": "MDU6TGFiZWw3NjgxMQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug" }, { "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": "0e8a16", "default": false, "description": "32-bit systems", "id": 563047854, "name": "32bit", "node_id": "MDU6TGFiZWw1NjMwNDc4NTQ=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/32bit" } ]
open
false
null
[]
null
1
2020-07-15T00:40:28Z
2020-07-15T00:43:22Z
null
CONTRIBUTOR
null
``` @pytest.mark.parametrize("bigNum", [sys.maxsize + 1, -(sys.maxsize + 2)]) # @pytest.mark.xfail(sys.maxsize == 2**32, reason="") def test_read_json_large_numbers(self, bigNum): # GH20599 series = Series(bigNum, dtype=object, index=["articleId"]) json = '{"articleId":' + str(bigNum) + "}" with pytest.raises(ValueError): json = StringIO(json) result = read_json(json) tm.assert_series_equal(series, result) df = DataFrame(bigNum, dtype=object, index=["articleId"], columns=[0]) json = '{"0":{"articleId":' + str(bigNum) + "}}" with pytest.raises(ValueError): json = StringIO(json) result = read_json(json) > tm.assert_frame_equal(df, result) E AssertionError: Attributes of DataFrame.iloc[:, 0] (column name="0") are different E E Attribute "dtype" are different E [left]: object E [right]: int64 ``` We have ``` -> tm.assert_frame_equal(df, result) (Pdb) result 0 articleId 1 (Pdb) df 0 articleId 18446744073709551617 ```
{ "+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/35279/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35279/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/35280
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35280/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35280/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35280/events
https://github.com/pandas-dev/pandas/pull/35280
656,998,425
MDExOlB1bGxSZXF1ZXN0NDQ5MTk0NDUw
35,280
BUG: GroupBy.count() and GroupBy.sum() incorreclty return NaN instead of 0 for missing categories
{ "avatar_url": "https://avatars.githubusercontent.com/u/3813175?v=4", "events_url": "https://api.github.com/users/smithto1/events{/privacy}", "followers_url": "https://api.github.com/users/smithto1/followers", "following_url": "https://api.github.com/users/smithto1/following{/other_user}", "gists_url": "https://api.github.com/users/smithto1/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/smithto1", "id": 3813175, "login": "smithto1", "node_id": "MDQ6VXNlcjM4MTMxNzU=", "organizations_url": "https://api.github.com/users/smithto1/orgs", "received_events_url": "https://api.github.com/users/smithto1/received_events", "repos_url": "https://api.github.com/users/smithto1/repos", "site_admin": false, "starred_url": "https://api.github.com/users/smithto1/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/smithto1/subscriptions", "type": "User", "url": "https://api.github.com/users/smithto1" }
[ { "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": "d7e102", "default": false, "description": "np.nan, pd.NaT, pd.NA, dropna, isnull, interpolate", "id": 2822342, "name": "Missing-data", "node_id": "MDU6TGFiZWwyODIyMzQy", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Missing-data" } ]
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" }
8
2020-07-15T01:40:16Z
2020-08-07T15:21:19Z
2020-08-07T15:21:13Z
MEMBER
null
- [x] closes #31422 - [x] closes #35028 - [x] tests added / passed - [x] passes `black pandas` - [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff` - [x] whatsnew entry *Behavioural Changes* Fixing two related bugs: when grouping on multiple categoricals, `.sum()` and `.count()` would return `NaN` for the missing categories, but they are expected to return `0` for the missing categories. Both these bugs are fixed. *Tests* Tests were added in PR #35022 when these bugs were discovered and the tests were marked with an `xfail`. For this PR the `xfails` are removed and the tests are passing normally. As well, a few other existing tests were expecting `sum()` to return `NaN`; these have been updated so that the tests now expect to get `0` (which is the desired behaviour). *Pivot* The change to `.sum()` also impacts the `df.pivot_table()` if it is called with `aggfunc=sum` and is pivoted on a Categorical column with `observed=False`. This is not explicitly mentioned in either of the bugs, but it does make the behaviour consistent (i.e. the sum of a missing category is zero, not `NaN`). One test on test_pivot.py was updated to reflect this change.
{ "+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/35280/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35280/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35280.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35280", "merged_at": "2020-08-07T15:21:12Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35280.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35280" }
https://api.github.com/repos/pandas-dev/pandas/issues/35281
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35281/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35281/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35281/events
https://github.com/pandas-dev/pandas/issues/35281
657,127,275
MDU6SXNzdWU2NTcxMjcyNzU=
35,281
ENH: to_latex positional argument
{ "avatar_url": "https://avatars.githubusercontent.com/u/23078199?v=4", "events_url": "https://api.github.com/users/SylvainLan/events{/privacy}", "followers_url": "https://api.github.com/users/SylvainLan/followers", "following_url": "https://api.github.com/users/SylvainLan/following{/other_user}", "gists_url": "https://api.github.com/users/SylvainLan/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/SylvainLan", "id": 23078199, "login": "SylvainLan", "node_id": "MDQ6VXNlcjIzMDc4MTk5", "organizations_url": "https://api.github.com/users/SylvainLan/orgs", "received_events_url": "https://api.github.com/users/SylvainLan/received_events", "repos_url": "https://api.github.com/users/SylvainLan/repos", "site_admin": false, "starred_url": "https://api.github.com/users/SylvainLan/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/SylvainLan/subscriptions", "type": "User", "url": "https://api.github.com/users/SylvainLan" }
[ { "color": "4E9A06", "default": false, "description": null, "id": 76812, "name": "Enhancement", "node_id": "MDU6TGFiZWw3NjgxMg==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Enhancement" } ]
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" }
0
2020-07-15T07:26:40Z
2020-08-21T17:04:36Z
2020-08-07T15:32:27Z
CONTRIBUTOR
null
#### Is your feature request related to a problem? I would like to have the possibility to specify the location of the table I'm saving, or instead of having ``` \begin{table} ... \end{table} ``` be able to have ``` \begin{table}[h] ... \end{table} ``` #### Describe the solution you'd like I guess the solution would be to add another argument in the `to_latex` API which could take values in `(None, 'h', 'H', 'h!'...)` #### Describe alternatives you've considered I'm saving my tables to `.tex` files and then use the `\input{path/to/tex}` command, I did not find the possibility to give the [h] argument with input...
{ "+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/35281/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35281/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/35282
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35282/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35282/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35282/events
https://github.com/pandas-dev/pandas/issues/35282
657,220,029
MDU6SXNzdWU2NTcyMjAwMjk=
35,282
DOC: DataFrame.equals: (row) indices are also compared
{ "avatar_url": "https://avatars.githubusercontent.com/u/1063219?v=4", "events_url": "https://api.github.com/users/kuraga/events{/privacy}", "followers_url": "https://api.github.com/users/kuraga/followers", "following_url": "https://api.github.com/users/kuraga/following{/other_user}", "gists_url": "https://api.github.com/users/kuraga/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/kuraga", "id": 1063219, "login": "kuraga", "node_id": "MDQ6VXNlcjEwNjMyMTk=", "organizations_url": "https://api.github.com/users/kuraga/orgs", "received_events_url": "https://api.github.com/users/kuraga/received_events", "repos_url": "https://api.github.com/users/kuraga/repos", "site_admin": false, "starred_url": "https://api.github.com/users/kuraga/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/kuraga/subscriptions", "type": "User", "url": "https://api.github.com/users/kuraga" }
[ { "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": "0052cc", "default": false, "description": "Issue that has not been reviewed by a pandas team member", "id": 1954720290, "name": "Needs Triage", "node_id": "MDU6TGFiZWwxOTU0NzIwMjkw", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Needs%20Triage" } ]
closed
false
null
[]
null
1
2020-07-15T09:52:20Z
2020-09-04T15:17:34Z
2020-09-04T15:17:33Z
NONE
null
#### Location of the documentation https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.equals.html #### Documentation problem ``` DataFrame.equals(self, other) Test whether two objects contain the same elements. This function allows two Series or DataFrames to be compared against each other to see if they have the same shape and elements. NaNs in the same location are considered equal. The column headers do not need to have the same type, but the elements within the columns must be the same dtype. ``` #### Suggested fix for documentation But in fact, (row) indices are also compared: ```python df = pd.DataFrame([ [1] ], columns=['a'], index=[0]) not_exactly_equal = pd.DataFrame([ [1] ], columns=['a'], index=[1]) df.equals(not_exactly_equal) # => False ``` P.S. And what is `column header type`? One more: does `the elements within the columns must be the same dtype` mean `columns should have the same dtype`? Or: `type(df1.iloc[i, j]) == type(df2.iloc[i, j])`?
{ "+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/35282/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35282/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/35283
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35283/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35283/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35283/events
https://github.com/pandas-dev/pandas/issues/35283
657,221,706
MDU6SXNzdWU2NTcyMjE3MDY=
35,283
ENH: Implement PandasArray.equals
{ "avatar_url": "https://avatars.githubusercontent.com/u/1063219?v=4", "events_url": "https://api.github.com/users/kuraga/events{/privacy}", "followers_url": "https://api.github.com/users/kuraga/followers", "following_url": "https://api.github.com/users/kuraga/following{/other_user}", "gists_url": "https://api.github.com/users/kuraga/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/kuraga", "id": 1063219, "login": "kuraga", "node_id": "MDQ6VXNlcjEwNjMyMTk=", "organizations_url": "https://api.github.com/users/kuraga/orgs", "received_events_url": "https://api.github.com/users/kuraga/received_events", "repos_url": "https://api.github.com/users/kuraga/repos", "site_admin": false, "starred_url": "https://api.github.com/users/kuraga/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/kuraga/subscriptions", "type": "User", "url": "https://api.github.com/users/kuraga" }
[ { "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": "Requires discussion from core team before further action", "id": 219960758, "name": "Needs Discussion", "node_id": "MDU6TGFiZWwyMTk5NjA3NTg=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Needs%20Discussion" }, { "color": "6138b5", "default": false, "description": "Extending pandas with custom dtypes or arrays.", "id": 849023693, "name": "ExtensionArray", "node_id": "MDU6TGFiZWw4NDkwMjM2OTM=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/ExtensionArray" } ]
closed
false
null
[]
null
3
2020-07-15T09:54:58Z
2020-07-16T14:21:09Z
2020-07-16T14:21:09Z
NONE
null
Feature request: implement `PandasArray.equals` for consistency (in addition to `Series.equals` and `DataFrame.equals`).
{ "+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/35283/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35283/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/35284
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35284/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35284/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35284/events
https://github.com/pandas-dev/pandas/pull/35284
657,293,269
MDExOlB1bGxSZXF1ZXN0NDQ5NDM0MDIz
35,284
To latex position
{ "avatar_url": "https://avatars.githubusercontent.com/u/23078199?v=4", "events_url": "https://api.github.com/users/SylvainLan/events{/privacy}", "followers_url": "https://api.github.com/users/SylvainLan/followers", "following_url": "https://api.github.com/users/SylvainLan/following{/other_user}", "gists_url": "https://api.github.com/users/SylvainLan/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/SylvainLan", "id": 23078199, "login": "SylvainLan", "node_id": "MDQ6VXNlcjIzMDc4MTk5", "organizations_url": "https://api.github.com/users/SylvainLan/orgs", "received_events_url": "https://api.github.com/users/SylvainLan/received_events", "repos_url": "https://api.github.com/users/SylvainLan/repos", "site_admin": false, "starred_url": "https://api.github.com/users/SylvainLan/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/SylvainLan/subscriptions", "type": "User", "url": "https://api.github.com/users/SylvainLan" }
[ { "color": "006b75", "default": false, "description": "to_latex", "id": 251382258, "name": "IO LaTeX", "node_id": "MDU6TGFiZWwyNTEzODIyNTg=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20LaTeX" } ]
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" }
9
2020-07-15T11:57:25Z
2020-08-10T06:20:08Z
2020-08-07T15:32:27Z
CONTRIBUTOR
null
- [ ] closes #35281 - [ ] 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/35284/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35284/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35284.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35284", "merged_at": "2020-08-07T15:32:27Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35284.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35284" }
https://api.github.com/repos/pandas-dev/pandas/issues/35285
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35285/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35285/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35285/events
https://github.com/pandas-dev/pandas/issues/35285
657,331,930
MDU6SXNzdWU2NTczMzE5MzA=
35,285
Incorrect behavior in `pandas.merge` function
{ "avatar_url": "https://avatars.githubusercontent.com/u/26389732?v=4", "events_url": "https://api.github.com/users/YarShev/events{/privacy}", "followers_url": "https://api.github.com/users/YarShev/followers", "following_url": "https://api.github.com/users/YarShev/following{/other_user}", "gists_url": "https://api.github.com/users/YarShev/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/YarShev", "id": 26389732, "login": "YarShev", "node_id": "MDQ6VXNlcjI2Mzg5NzMy", "organizations_url": "https://api.github.com/users/YarShev/orgs", "received_events_url": "https://api.github.com/users/YarShev/received_events", "repos_url": "https://api.github.com/users/YarShev/repos", "site_admin": false, "starred_url": "https://api.github.com/users/YarShev/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/YarShev/subscriptions", "type": "User", "url": "https://api.github.com/users/YarShev" }
[ { "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
[]
null
3
2020-07-15T13:01:29Z
2020-08-21T17:04:36Z
2020-07-23T10:30:33Z
NONE
null
- [x] I have checked that this issue has not already been reported. - [x] I have confirmed this bug exists on the latest version of pandas. - [ ] (optional) I have confirmed this bug exists on the master branch of pandas. --- **Note**: Please read [this guide](https://matthewrocklin.com/blog/work/2018/02/28/minimal-bug-reports) detailing how to provide the necessary information for us to reproduce your bug. #### Code Sample, a copy-pastable example ```python import pandas import numpy as np test_data = np.random.uniform(0, 100, size=(2 ** 7, 2 ** 6)) test_data2 = np.random.uniform(0, 100, size=(2 ** 6, 2 ** 6)) pandas_df = pandas.DataFrame( test_data, columns=["col{}".format(i) for i in range(test_data.shape[1])], index=pandas.Index( [i for i in range(1, test_data.shape[0] + 1)], name="key" ), ) pandas_df2 = pandas.DataFrame( test_data2, columns=["col{}".format(i) for i in range(test_data2.shape[1])], index=pandas.Index( [i for i in range(1, test_data2.shape[0] + 1)], name="key" ), ) pandas_result = pandas_df.merge(pandas_df2,how="left",right_on="key",left_index=True,sort=False) pandas_result2 = pandas_df.merge(pandas_df2,how="inner",right_on="key",left_index=True,sort=False) pandas_result key col0_x col1_x col2_x col3_x col4_x col5_x col6_x col7_x ... col55_y col56_y col57_y col58_y col59_y col60_y col61_y col62_y col63_y 1.0 1 22.268792 91.710456 35.425585 5.998272 7.616223 50.855316 70.778027 39.345351 ... 79.470662 1.139462 82.394800 49.279405 71.492669 19.118798 8.338031 15.240684 96.935519 2.0 2 24.359239 24.789241 83.329200 24.369174 92.494368 48.520427 73.401821 47.736986 ... 77.504507 83.228024 16.743863 28.598973 89.282114 24.783087 94.681264 76.430020 49.957027 3.0 3 66.973326 85.911902 85.839220 39.444853 43.164051 0.711455 1.728169 67.356380 ... 82.361473 69.188814 19.254839 80.721210 97.038337 50.344042 47.969856 33.863619 22.711405 4.0 4 64.578630 64.185421 97.307670 10.697612 38.090190 63.198376 91.842608 58.068671 ... 10.917623 98.375547 69.298407 69.486654 26.956081 14.512972 38.663965 44.573867 67.612123 5.0 5 73.212801 41.605993 79.149803 0.545511 61.767295 80.562112 78.970619 89.752911 ... 36.965341 99.078379 72.797682 28.273150 50.379084 14.131667 33.817043 64.267731 15.687369 .. ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... NaN 124 13.955523 91.797658 44.563825 60.746861 28.904216 71.772330 28.841887 89.951210 ... NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 125 49.694130 56.604940 92.628512 14.191864 31.197524 82.710209 95.428222 35.449014 ... NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 126 58.950112 76.638796 89.459637 86.865600 93.866105 3.612650 88.072591 20.871411 ... NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 127 76.472780 72.939919 24.263068 71.021804 89.470422 29.811838 14.484325 51.755485 ... NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 128 97.720457 31.118757 85.992609 85.823341 69.280047 71.261342 62.747467 23.256187 ... NaN NaN NaN NaN NaN NaN NaN NaN NaN [128 rows x 129 columns] pandas_result2 col0_x col1_x col2_x col3_x col4_x col5_x col6_x col7_x col8_x ... col55_y col56_y col57_y col58_y col59_y col60_y col61_y col62_y col63_y key ... 1 22.268792 91.710456 35.425585 5.998272 7.616223 50.855316 70.778027 39.345351 25.069931 ... 79.470662 1.139462 82.394800 49.279405 71.492669 19.118798 8.338031 15.240684 96.935519 2 24.359239 24.789241 83.329200 24.369174 92.494368 48.520427 73.401821 47.736986 32.137170 ... 77.504507 83.228024 16.743863 28.598973 89.282114 24.783087 94.681264 76.430020 49.957027 3 66.973326 85.911902 85.839220 39.444853 43.164051 0.711455 1.728169 67.356380 83.307993 ... 82.361473 69.188814 19.254839 80.721210 97.038337 50.344042 47.969856 33.863619 22.711405 4 64.578630 64.185421 97.307670 10.697612 38.090190 63.198376 91.842608 58.068671 17.910149 ... 10.917623 98.375547 69.298407 69.486654 26.956081 14.512972 38.663965 44.573867 67.612123 5 73.212801 41.605993 79.149803 0.545511 61.767295 80.562112 78.970619 89.752911 44.926515 ... 36.965341 99.078379 72.797682 28.273150 50.379084 14.131667 33.817043 64.267731 15.687369 .. ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... 60 40.822611 50.875277 84.380647 26.325878 46.883415 0.048349 94.366177 10.860537 95.910254 ... 16.139270 16.442644 38.910856 52.139794 75.130737 79.407901 9.574825 43.741220 71.341946 61 79.372509 92.123416 60.440763 24.429257 58.681905 27.281294 24.816561 53.338771 37.340585 ... 17.580590 49.181221 23.445983 46.408847 1.805793 72.093458 46.068460 86.171202 67.535472 62 73.059258 86.432887 52.869162 26.113074 21.653439 18.971489 86.998840 36.259379 55.659895 ... 34.785796 2.524984 63.754044 21.315063 26.431136 9.647946 9.740197 55.826159 81.770851 63 73.177085 48.520687 6.165317 75.703392 32.593617 15.452280 0.227452 1.036644 90.657810 ... 30.676622 2.000542 6.701021 78.782964 50.210517 71.748162 43.102752 89.775608 51.033208 64 30.236389 10.706612 31.498764 0.872496 88.008391 65.306584 92.053531 98.306667 28.063389 ... 90.833733 35.615374 12.593278 4.371464 66.767380 11.140186 79.031274 23.489189 56.079695 [64 rows x 128 columns] ``` #### Problem description My expectation was that both `pandas_result` and `pandas_result2` will preserve index with name `key` after performing the operations mentioned above. It turned out that `index` will be preserved if `how="inner"`, whereas when `how="left"` index will be moved into column. #### Expected Output ```python col0_x col1_x col2_x col3_x col4_x col5_x col6_x col7_x col8_x ... col55_y col56_y col57_y col58_y col59_y col60_y col61_y col62_y col63_y key ... 1 22.268792 91.710456 35.425585 5.998272 7.616223 50.855316 70.778027 39.345351 25.069931 ... 79.470662 1.139462 82.394800 49.279405 71.492669 19.118798 8.338031 15.240684 96.935519 2 24.359239 24.789241 83.329200 24.369174 92.494368 48.520427 73.401821 47.736986 32.137170 ... 77.504507 83.228024 16.743863 28.598973 89.282114 24.783087 94.681264 76.430020 49.957027 3 66.973326 85.911902 85.839220 39.444853 43.164051 0.711455 1.728169 67.356380 83.307993 ... 82.361473 69.188814 19.254839 80.721210 97.038337 50.344042 47.969856 33.863619 22.711405 4 64.578630 64.185421 97.307670 10.697612 38.090190 63.198376 91.842608 58.068671 17.910149 ... 10.917623 98.375547 69.298407 69.486654 26.956081 14.512972 38.663965 44.573867 67.612123 5 73.212801 41.605993 79.149803 0.545511 61.767295 80.562112 78.970619 89.752911 44.926515 ... 36.965341 99.078379 72.797682 28.273150 50.379084 14.131667 33.817043 64.267731 15.687369 .. ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... 124 13.955523 91.797658 44.563825 60.746861 28.904216 71.772330 28.841887 89.951210 69.801427 ... NaN NaN NaN NaN NaN NaN NaN NaN NaN 125 49.694130 56.604940 92.628512 14.191864 31.197524 82.710209 95.428222 35.449014 84.495449 ... NaN NaN NaN NaN NaN NaN NaN NaN NaN 126 58.950112 76.638796 89.459637 86.865600 93.866105 3.612650 88.072591 20.871411 9.433378 ... NaN NaN NaN NaN NaN NaN NaN NaN NaN 127 76.472780 72.939919 24.263068 71.021804 89.470422 29.811838 14.484325 51.755485 41.570147 ... NaN NaN NaN NaN NaN NaN NaN NaN NaN 128 97.720457 31.118757 85.992609 85.823341 69.280047 71.261342 62.747467 23.256187 87.411083 ... NaN NaN NaN NaN NaN NaN NaN NaN NaN [128 rows x 128 columns] ``` #### Output of ``pd.show_versions()`` <details> INSTALLED VERSIONS ------------------ commit : None python : 3.7.7.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 : 1.0.5 numpy : 1.18.4 pytz : 2020.1 dateutil : 2.8.1 pip : 20.1.1 setuptools : 41.2.0 Cython : None pytest : 5.4.2 hypothesis : None sphinx : None blosc : None feather : 0.4.1 xlsxwriter : None lxml.etree : 4.5.0 html5lib : None pymysql : None psycopg2 : None jinja2 : 2.11.2 IPython : 7.14.0 pandas_datareader: None bs4 : 4.9.1 bottleneck : None fastparquet : None gcsfs : None lxml.etree : 4.5.0 matplotlib : 3.2.1 numexpr : 2.7.1 odfpy : None openpyxl : 3.0.3 pandas_gbq : None pyarrow : 0.16.0 pytables : None pytest : 5.4.2 pyxlsb : None s3fs : 0.4.2 scipy : 1.4.1 sqlalchemy : 1.3.17 tables : 3.6.1 tabulate : None xarray : 0.15.1 xlrd : 1.2.0 xlwt : None xlsxwriter : None numba : 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/35285/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35285/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/35286
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35286/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35286/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35286/events
https://github.com/pandas-dev/pandas/issues/35286
657,338,605
MDU6SXNzdWU2NTczMzg2MDU=
35,286
REGR: reindex with sparse data
{ "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": "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": "009800", "default": false, "description": "Sparse Data Type", "id": 49182326, "name": "Sparse", "node_id": "MDU6TGFiZWw0OTE4MjMyNg==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Sparse" } ]
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" }
3
2020-07-15T13:11:34Z
2020-07-16T11:17:06Z
2020-07-16T11:17:06Z
MEMBER
null
See discussion at https://github.com/pandas-dev/pandas/pull/34158#issuecomment-636641583 and below. There was some discussion on the PR, but I think we didn't yet create an issue to track this regression. The PR introduced a regression in `reindex` when having sparse data. Based on the linked discussion, there doesn't seem to direct / easy solution (but I didn't look into it again). So we might want to revert the PR for 1.1 until we figure out a correct solution. cc @TomAugspurger
{ "+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/35286/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35286/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/35287
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35287/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35287/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35287/events
https://github.com/pandas-dev/pandas/pull/35287
657,382,346
MDExOlB1bGxSZXF1ZXN0NDQ5NTA3NTI2
35,287
Fix indexing, reindex on all-sparse SparseArray.
{ "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": "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": "009800", "default": false, "description": "Sparse Data Type", "id": 49182326, "name": "Sparse", "node_id": "MDU6TGFiZWw0OTE4MjMyNg==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Sparse" } ]
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
2020-07-15T14:11:23Z
2020-07-16T11:17:10Z
2020-07-16T11:17:07Z
CONTRIBUTOR
null
Closes https://github.com/pandas-dev/pandas/issues/35286. Also added a regression tests for the issue reported there.
{ "+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/35287/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35287/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35287.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35287", "merged_at": "2020-07-16T11:17:06Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35287.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35287" }
https://api.github.com/repos/pandas-dev/pandas/issues/35288
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35288/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35288/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35288/events
https://github.com/pandas-dev/pandas/issues/35288
657,443,705
MDU6SXNzdWU2NTc0NDM3MDU=
35,288
TestUltraJSONTests.test_dumps_ints_larger_than_maxsize fails for 32-bit
{ "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": "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", "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": "0e8a16", "default": false, "description": "32-bit systems", "id": 563047854, "name": "32bit", "node_id": "MDU6TGFiZWw1NjMwNDc4NTQ=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/32bit" } ]
open
false
null
[]
null
0
2020-07-15T15:28:48Z
2020-07-15T15:28:48Z
null
CONTRIBUTOR
null
test_dumps_ints_larger_than_maxsize is failing on the MacPython 32-bit tests: https://dev.azure.com/pandas-dev/pandas-wheels/_build/results?buildId=39266&view=logs&j=bb1c2637-64c6-57bd-9ea6-93823b2df951&t=9c62e7ff-391e-517d-ede1-af63bc6a25da&l=1307 ``` =================================== FAILURES =================================== ______ TestUltraJSONTests.test_dumps_ints_larger_than_maxsize[2147483648] ______ [gw1] linux -- Python 3.8.0 /venv/bin/python self = <pandas.tests.io.json.test_ujson.TestUltraJSONTests object at 0xd19d2e38> bigNum = 2147483648 @pytest.mark.parametrize("bigNum", [sys.maxsize + 1, -(sys.maxsize + 2)]) def test_dumps_ints_larger_than_maxsize(self, bigNum): # GH34395 bigNum = sys.maxsize + 1 encoding = ujson.encode(bigNum) assert str(bigNum) == encoding # GH20599 with pytest.raises(ValueError): > assert ujson.loads(encoding) == bigNum E Failed: DID NOT RAISE <class 'ValueError'> ``` Adding a skip for now. Will get proper 32-bit testing set up sometime (or we just drop support officially)
{ "+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/35288/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35288/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/35289
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35289/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35289/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35289/events
https://github.com/pandas-dev/pandas/pull/35289
657,447,920
MDExOlB1bGxSZXF1ZXN0NDQ5NTYyMDY4
35,289
xfail failing 32-bit tests
{ "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": "0e8a16", "default": false, "description": "32-bit systems", "id": 563047854, "name": "32bit", "node_id": "MDU6TGFiZWw1NjMwNDc4NTQ=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/32bit" } ]
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
2020-07-15T15:34:14Z
2020-07-15T20:27:02Z
2020-07-15T18:04:48Z
CONTRIBUTOR
null
We need MacPython to be passing for the wheels to be built.
{ "+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/35289/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35289/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35289.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35289", "merged_at": "2020-07-15T18:04:48Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35289.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35289" }
https://api.github.com/repos/pandas-dev/pandas/issues/35290
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35290/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35290/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35290/events
https://github.com/pandas-dev/pandas/issues/35290
657,456,225
MDU6SXNzdWU2NTc0NTYyMjU=
35,290
BUG: Inversion of True is -2
{ "avatar_url": "https://avatars.githubusercontent.com/u/39766326?v=4", "events_url": "https://api.github.com/users/gitPrinz/events{/privacy}", "followers_url": "https://api.github.com/users/gitPrinz/followers", "following_url": "https://api.github.com/users/gitPrinz/following{/other_user}", "gists_url": "https://api.github.com/users/gitPrinz/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/gitPrinz", "id": 39766326, "login": "gitPrinz", "node_id": "MDQ6VXNlcjM5NzY2MzI2", "organizations_url": "https://api.github.com/users/gitPrinz/orgs", "received_events_url": "https://api.github.com/users/gitPrinz/received_events", "repos_url": "https://api.github.com/users/gitPrinz/repos", "site_admin": false, "starred_url": "https://api.github.com/users/gitPrinz/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/gitPrinz/subscriptions", "type": "User", "url": "https://api.github.com/users/gitPrinz" }
[ { "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
[]
null
1
2020-07-15T15:45:13Z
2020-08-21T17:04:37Z
2020-07-15T16:08:25Z
NONE
null
- [x] I have checked that this issue has not already been reported. - [x] I have confirmed this bug exists on the latest version of pandas. - [ ] (optional) I have confirmed this bug exists on the master branch of pandas. --- #### Code Sample, a copy-pastable example ```python import pandas as pd df = pd.DataFrame() df.equals(df) Out: True ~df.equals(df) Out: -2 ``` #### Problem description The inversion of a boolean result from df1.equals(df2) is an integer which will be recognized as True. #### Expected Output False #### Output of ``pd.show_versions()`` <details> INSTALLED VERSIONS ------------------ commit : None python : 3.6.9.final.0 python-bits : 64 OS : Linux OS-release : 5.3.0-61-generic machine : x86_64 processor : x86_64 byteorder : little LC_ALL : None LANG : en_US.UTF-8 LOCALE : en_US.UTF-8 pandas : 1.0.5 numpy : 1.19.0 pytz : 2020.1 dateutil : 2.8.1 pip : 9.0.1 setuptools : 41.6.0 Cython : None pytest : 5.3.2 hypothesis : None sphinx : 2.2.1 blosc : None feather : None xlsxwriter : None lxml.etree : None html5lib : 0.999999999 pymysql : None psycopg2 : None jinja2 : 2.10.3 IPython : 7.9.0 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 pytest : 5.3.2 pyxlsb : None s3fs : None scipy : 1.3.1 sqlalchemy : None tables : None tabulate : None xarray : None xlrd : None xlwt : None xlsxwriter : None numba : 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/35290/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35290/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/35291
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35291/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35291/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35291/events
https://github.com/pandas-dev/pandas/issues/35291
657,514,136
MDU6SXNzdWU2NTc1MTQxMzY=
35,291
[QST] What should `ExtensionDtype.type` return?
{ "avatar_url": "https://avatars.githubusercontent.com/u/3190405?v=4", "events_url": "https://api.github.com/users/shwina/events{/privacy}", "followers_url": "https://api.github.com/users/shwina/followers", "following_url": "https://api.github.com/users/shwina/following{/other_user}", "gists_url": "https://api.github.com/users/shwina/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/shwina", "id": 3190405, "login": "shwina", "node_id": "MDQ6VXNlcjMxOTA0MDU=", "organizations_url": "https://api.github.com/users/shwina/orgs", "received_events_url": "https://api.github.com/users/shwina/received_events", "repos_url": "https://api.github.com/users/shwina/repos", "site_admin": false, "starred_url": "https://api.github.com/users/shwina/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/shwina/subscriptions", "type": "User", "url": "https://api.github.com/users/shwina" }
[ { "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": "6138b5", "default": false, "description": "Extending pandas with custom dtypes or arrays.", "id": 849023693, "name": "ExtensionArray", "node_id": "MDU6TGFiZWw4NDkwMjM2OTM=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/ExtensionArray" } ]
closed
false
null
[]
null
2
2020-07-15T17:07:16Z
2020-07-16T00:16:13Z
2020-07-16T00:16:12Z
CONTRIBUTOR
null
Greetings, Pandas devs! cuDF is building out additional dtypes such as `cudf.CategoricalDtype` and `cudf.ListDtype` based on `pd.ExtensionDtype`, and this is one question that came up. The [documentation](https://pandas.pydata.org/docs/reference/api/pandas.api.extensions.ExtensionDtype.type.html#pandas.api.extensions.ExtensionDtype.type) states: > It’s expected ExtensionArray[item] returns an instance of ExtensionDtype.type for scalar item, assuming that value is valid (not NA). NA values do not need to be instances of type. However, I note that `pd.CategoricalDtype` for instance does not adhere to this: ```python In [47]: import pandas as pd In [48]: a = pd.Series(['a', 'b'], dtype='category') In [49]: type(a[0]) Out[49]: str In [50]: type(a.array[0]) Out[50]: str In [51]: isinstance(a.array, pd.api.extensions.ExtensionArray) Out[51]: True In [52]: isinstance(a.dtype, pd.api.extensions.ExtensionDtype) Out[52]: True ``` On the other hand, [NumPy](https://numpy.org/doc/stable/reference/generated/numpy.dtype.type.html#numpy.dtype.type) defines `dtype.type` somewhat differently: > The type object used to instantiate a scalar of this data-type. Would love any insights as to the appropriate return value of `.type`.
{ "+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/35291/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35291/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/35292
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35292/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35292/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35292/events
https://github.com/pandas-dev/pandas/pull/35292
657,531,275
MDExOlB1bGxSZXF1ZXN0NDQ5NjMxNzQ4
35,292
ENH: Add orient=tight format for dictionaries
{ "avatar_url": "https://avatars.githubusercontent.com/u/15113894?v=4", "events_url": "https://api.github.com/users/Dr-Irv/events{/privacy}", "followers_url": "https://api.github.com/users/Dr-Irv/followers", "following_url": "https://api.github.com/users/Dr-Irv/following{/other_user}", "gists_url": "https://api.github.com/users/Dr-Irv/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/Dr-Irv", "id": 15113894, "login": "Dr-Irv", "node_id": "MDQ6VXNlcjE1MTEzODk0", "organizations_url": "https://api.github.com/users/Dr-Irv/orgs", "received_events_url": "https://api.github.com/users/Dr-Irv/received_events", "repos_url": "https://api.github.com/users/Dr-Irv/repos", "site_admin": false, "starred_url": "https://api.github.com/users/Dr-Irv/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Dr-Irv/subscriptions", "type": "User", "url": "https://api.github.com/users/Dr-Irv" }
[ { "color": "06909A", "default": false, "description": "IO issues that don't fit into a more specific label", "id": 2301354, "name": "IO Data", "node_id": "MDU6TGFiZWwyMzAxMzU0", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20Data" }, { "color": "207de5", "default": false, "description": "Requires discussion from core team before further action", "id": 219960758, "name": "Needs Discussion", "node_id": "MDU6TGFiZWwyMTk5NjA3NTg=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Needs%20Discussion" } ]
closed
false
null
[]
null
8
2020-07-15T17:36:26Z
2021-10-16T15:51:03Z
2021-10-16T15:50:53Z
CONTRIBUTOR
null
- [x] xref #4889 (see below) - [x] tests added / passed - tests.frame.methods.test_to_dict.test_to_dict_orient_tight() - [x] passes `black pandas` - [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff` - [x] whatsnew entry The issue in #4889 contains examples of how the JSON format doesn't support `MultiIndex` for the index or the columns, independent of the `orient` chosen. Also, none of the orientations support index names (or `MultiIndex` names). Finally, if you want to have a JSON format that is "tight" (or "compact"), the `split` is the closest thing, but it is incomplete due to the indexing issues. As a first step to addressing this, I have created a `orient='tight'` option to `DataFrame.to_dict()` and `DataFrame.from_dict()` . If we agree that this is a reasonable representation, the next step (which I'd prefer to do in a second PR) would be to also support it with JSON. The challenge there is that `to_json()` is currently implemented in C. Right now, one can just use `json.dumps(df.to_dict(orient='tight'))` to get the needed JSON as a workaround. I'm open to changing the word `'tight'` to something else, but I wanted it to start with a different letter than the other orientations.
{ "+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/35292/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35292/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35292.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35292", "merged_at": "2021-10-16T15:50:53Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35292.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35292" }
https://api.github.com/repos/pandas-dev/pandas/issues/35293
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35293/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35293/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35293/events
https://github.com/pandas-dev/pandas/issues/35293
657,546,310
MDU6SXNzdWU2NTc1NDYzMTA=
35,293
BUG: upsampling returns less rows than expected
{ "avatar_url": "https://avatars.githubusercontent.com/u/4106013?v=4", "events_url": "https://api.github.com/users/rwijtvliet/events{/privacy}", "followers_url": "https://api.github.com/users/rwijtvliet/followers", "following_url": "https://api.github.com/users/rwijtvliet/following{/other_user}", "gists_url": "https://api.github.com/users/rwijtvliet/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/rwijtvliet", "id": 4106013, "login": "rwijtvliet", "node_id": "MDQ6VXNlcjQxMDYwMTM=", "organizations_url": "https://api.github.com/users/rwijtvliet/orgs", "received_events_url": "https://api.github.com/users/rwijtvliet/received_events", "repos_url": "https://api.github.com/users/rwijtvliet/repos", "site_admin": false, "starred_url": "https://api.github.com/users/rwijtvliet/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/rwijtvliet/subscriptions", "type": "User", "url": "https://api.github.com/users/rwijtvliet" }
[ { "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
[]
null
3
2020-07-15T18:01:11Z
2020-08-21T17:04:37Z
2020-07-26T15:34:21Z
NONE
null
- [x] I have checked that this issue has not already been reported. - [x] I have confirmed this bug exists on the latest version of pandas. - [ ] (optional) I have confirmed this bug exists on the master branch of pandas. --- #### Code Sample, a copy-pastable example I have a pandas Series with a (tz-localized) DateTimeIndex with one value per day, which I want to upsample to hourly values, so that each value is repeated 24 times (or 23 or 25, depending on summer/wintertime changeover). ```python s = pd.Series([1,2,3,4], index=pd.date_range('2020-03-28 00:00:00', periods=4, freq='D', tz='Europe/Berlin')) r = s.resample('H').ffill() #misses the last 23 hours of March ``` ``` s: 2020-03-28 00:00:00+01:00 1 2020-03-29 00:00:00+01:00 2 2020-03-30 00:00:00+02:00 3 2020-03-31 00:00:00+02:00 4 Freq: D, dtype: int64 r: 2020-03-28 00:00:00+01:00 1 2020-03-28 01:00:00+01:00 1 2020-03-28 02:00:00+01:00 1 .. 2020-03-30 22:00:00+02:00 3 2020-03-30 23:00:00+02:00 3 2020-03-31 00:00:00+02:00 4 #<-- ! Freq: H, Length: 72, dtype: int64 ``` #### Problem description Each row in series `s` has the correct number of corresponding rows in series `r` - expect for the final row. The final row in `s` has only 1 corresponding row in `r`, where 24 would be expected. #### Additional information / observations a) I've tried various combinations of having the original and/or the resampled timeseries be open or closed on the right side, but no setting gave me the wanted result. b) I assume the reason for the observed behaviour in `r`, above, is the following: I suppose that `freq == D` on a `DatetimeIndex` means, that the values are spaced one calendar day apart, and not, that they are valid for the entire calender day. Using a `PeriodIndex` instead does indeed solve this, see below. However, using a `PeriodIndex` instead of a `DateTimeIndex` is not an option. It solves the problem with the missing hours, but loses the timezoneawareness that I need: ```python s2 = pd.Series(s.values, pd.PeriodIndex(s.index, freq='D')) #misses timezoneawareness. r2 = s2.resample('H').ffill() #does not miss last 23 hours of March, but is still incorrect. ``` ``` s2: 2020-03-28 1 2020-03-29 2 2020-03-30 3 2020-03-31 4 Freq: D, dtype: int64 r2: 2020-03-28 00:00 1 2020-03-28 01:00 1 2020-03-28 02:00 1 .. 2020-03-31 21:00 4 2020-03-31 22:00 4 2020-03-31 23:00 4 Freq: H, Length: 96, dtype: int64 ``` c) Full disclosure: I've asked this questions before, on [stackoverflow](https://stackoverflow.com/questions/61761237/keep-24h-for-each-day-when-resampling-pandas-series-from-daily-to-hourly), but did not receive a satisfactory answer - just a workaround. #### Output of ``pd.show_versions()`` <details> INSTALLED VERSIONS ------------------ commit : None python : 3.8.2.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 LOCALE : de_DE.cp1252 pandas : 1.0.5 numpy : 1.18.5 pytz : 2020.1 dateutil : 2.8.1 pip : 20.1.1 setuptools : 49.2.0.post20200714 Cython : None pytest : 5.4.1 hypothesis : None sphinx : None blosc : None feather : None xlsxwriter : None lxml.etree : None html5lib : 1.0.1 pymysql : None psycopg2 : None jinja2 : 2.11.2 IPython : 7.16.1 pandas_datareader: None bs4 : 4.9.1 bottleneck : None fastparquet : None gcsfs : None lxml.etree : None matplotlib : 3.1.3 numexpr : None odfpy : None openpyxl : 3.0.3 pandas_gbq : None pyarrow : None pytables : None pytest : 5.4.1 pyxlsb : None s3fs : None scipy : 1.4.1 sqlalchemy : 1.3.17 tables : None tabulate : None xarray : None xlrd : 1.2.0 xlwt : None xlsxwriter : None numba : 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/35293/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35293/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/35294
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35294/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35294/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35294/events
https://github.com/pandas-dev/pandas/issues/35294
657,597,800
MDU6SXNzdWU2NTc1OTc4MDA=
35,294
Various 32-bit failures at MacPython/pandas-wheels
{ "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" }, { "color": "0e8a16", "default": false, "description": "32-bit systems", "id": 563047854, "name": "32bit", "node_id": "MDU6TGFiZWw1NjMwNDc4NTQ=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/32bit" } ]
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" }
0
2020-07-15T19:30:42Z
2020-08-24T23:42:02Z
2020-08-24T23:42:02Z
CONTRIBUTOR
null
https://dev.azure.com/pandas-dev/pandas-wheels/_build/results?buildId=39280&view=logs&j=a846d25a-e32c-5640-1b53-e815fab94407&t=8fc25549-8157-5c9c-f998-0884bd2e8ccb&l=3099 ``` FAILED test_venv/lib/site-packages/pandas/tests/window/test_api.py::test_multiple_agg_funcs[rolling-2-expected_vals0] FAILED test_venv/lib/site-packages/pandas/tests/window/test_apply.py::test_rolling_apply_args_kwargs[args_kwargs0] FAILED test_venv/lib/site-packages/pandas/tests/window/test_apply.py::test_rolling_apply_args_kwargs[args_kwargs1] FAILED test_venv/lib/site-packages/pandas/tests/window/test_grouper.py::TestGrouperGrouping::test_groupby_rolling[1.0-True] FAILED test_venv/lib/site-packages/pandas/tests/window/test_grouper.py::TestGrouperGrouping::test_groupby_rolling[0.0-False] FAILED test_venv/lib/site-packages/pandas/tests/window/test_grouper.py::TestGrouperGrouping::test_getitem FAILED test_venv/lib/site-packages/pandas/tests/window/test_grouper.py::TestGrouperGrouping::test_rolling FAILED test_venv/lib/site-packages/pandas/tests/window/test_grouper.py::TestGrouperGrouping::test_rolling_quantile[linear] FAILED test_venv/lib/site-packages/pandas/tests/window/test_grouper.py::TestGrouperGrouping::test_rolling_quantile[lower] FAILED test_venv/lib/site-packages/pandas/tests/window/test_grouper.py::TestGrouperGrouping::test_rolling_quantile[higher] FAILED test_venv/lib/site-packages/pandas/tests/window/test_grouper.py::TestGrouperGrouping::test_rolling_quantile[midpoint] FAILED test_venv/lib/site-packages/pandas/tests/window/test_grouper.py::TestGrouperGrouping::test_rolling_quantile[nearest] FAILED test_venv/lib/site-packages/pandas/tests/window/test_grouper.py::TestGrouperGrouping::test_rolling_apply[True] FAILED test_venv/lib/site-packages/pandas/tests/window/test_grouper.py::TestGrouperGrouping::test_rolling_apply[False] FAILED test_venv/lib/site-packages/pandas/tests/window/test_grouper.py::TestGrouperGrouping::test_rolling_apply_mutability FAILED test_venv/lib/site-packages/pandas/tests/window/test_rolling.py::test_closed_one_entry_groupby[min] FAILED test_venv/lib/site-packages/pandas/tests/window/test_rolling.py::test_closed_one_entry_groupby[max] FAILED test_venv/lib/site-packages/pandas/tests/window/test_rolling.py::test_rolling_positional_argument[True-grouping0-_index0] FAILED test_venv/lib/site-packages/pandas/tests/window/test_rolling.py::test_rolling_positional_argument[True-grouping1-_index1] FAILED test_venv/lib/site-packages/pandas/tests/window/test_rolling.py::test_rolling_positional_argument[False-grouping0-_index0] FAILED test_venv/lib/site-packages/pandas/tests/window/test_rolling.py::test_rolling_positional_argument[False-grouping1-_index1] FAILED test_venv/lib/site-packages/pandas/tests/window/test_timeseries_window.py::TestRollingTS::test_groupby_monotonic FAILED test_venv/lib/site-packages/pandas/tests/window/test_timeseries_window.py::TestRollingTS::test_non_monotonic ``` Just going to skip these for now. Maybe (probably?) some overlap with #35148 @mroeschke. Not sure.
{ "+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/35294/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35294/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/35295
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35295/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35295/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35295/events
https://github.com/pandas-dev/pandas/pull/35295
657,606,466
MDExOlB1bGxSZXF1ZXN0NDQ5Njk0NTI4
35,295
CI: xfail failing 32-bit tests
{ "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" }, { "color": "0e8a16", "default": false, "description": "32-bit systems", "id": 563047854, "name": "32bit", "node_id": "MDU6TGFiZWw1NjMwNDc4NTQ=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/32bit" } ]
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
2020-07-15T19:44:33Z
2020-07-15T21:09:19Z
2020-07-15T21:09:15Z
CONTRIBUTOR
null
https://github.com/pandas-dev/pandas/issues/35294
{ "+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/35295/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35295/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35295.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35295", "merged_at": "2020-07-15T21:09:15Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35295.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35295" }
https://api.github.com/repos/pandas-dev/pandas/issues/35296
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35296/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35296/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35296/events
https://github.com/pandas-dev/pandas/issues/35296
657,610,610
MDU6SXNzdWU2NTc2MTA2MTA=
35,296
DOC: Reccomended use of read_csv's date_parser parameter is very slow
{ "avatar_url": "https://avatars.githubusercontent.com/u/516999?v=4", "events_url": "https://api.github.com/users/sm-Fifteen/events{/privacy}", "followers_url": "https://api.github.com/users/sm-Fifteen/followers", "following_url": "https://api.github.com/users/sm-Fifteen/following{/other_user}", "gists_url": "https://api.github.com/users/sm-Fifteen/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/sm-Fifteen", "id": 516999, "login": "sm-Fifteen", "node_id": "MDQ6VXNlcjUxNjk5OQ==", "organizations_url": "https://api.github.com/users/sm-Fifteen/orgs", "received_events_url": "https://api.github.com/users/sm-Fifteen/received_events", "repos_url": "https://api.github.com/users/sm-Fifteen/repos", "site_admin": false, "starred_url": "https://api.github.com/users/sm-Fifteen/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/sm-Fifteen/subscriptions", "type": "User", "url": "https://api.github.com/users/sm-Fifteen" }
[ { "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": "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": false, "description": "read_csv, to_csv", "id": 47229171, "name": "IO CSV", "node_id": "MDU6TGFiZWw0NzIyOTE3MQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20CSV" } ]
open
false
null
[]
null
1
2020-07-15T19:51:10Z
2020-09-04T15:20:30Z
null
NONE
null
#### Location of the documentation The [Date parsing functions](https://pandas.pydata.org/pandas-docs/stable/user_guide/io.html#date-parsing-functions) section of the CSV file parsing section, specifically the reccomended use of `date_parser` in cases where the user knows what format the date will be in in advance and/or that format is non-standard ans not supported by Pandas. > If you know the format, use `pd.to_datetime()`: `date_parser=lambda x: pd.to_datetime(x, format=...)`. #### Demonstration of the problem <details> I'm trying to parse a CSV file that contains signal power data keyed by timestamp-frequency pairs in a vertical format (376 frequencies by 14300 samples, so about 5.3 million rows, with only one timestamp per row) with the intent of pivoting it into a columnar format. The time format is rather unpleasant to deal with and is stored as 2 separate columns, but pandas' CSV parser has all the tools I need to reconstruct the timestamps correctly, so I'm not worried there. Based on what the documentation, I tried something like this: ```py import pandas as pd def read_csv_slow(in_path: str): df = pd.read_csv( in_path, nrows=376 * 500, usecols=['Date','Time', 'Frequency', 'Power'], index_col=['Date_Time', 'Frequency'] dtype={'Frequency': 'int32', 'Power': 'float32'}, parse_dates=[['Date','Time']], # Extremely slow date_parser=lambda x: pd.to_datetime(x, format='%m/%d/%Y %H:%M:%S:%f'), # 06/17/2020 + 11:47:22:746 ) ``` For testing, I limited the amount of rows parsed to 500 time samples (188000 rows/timestamps), about 3.5% of the total file, which takes a surprising 43 seconds to process, mostly due to datetime parsing according to `cProfile`: ``` > python -m cProfile -s tottime .\read_csv_slow.py 61508066 function calls (61501857 primitive calls) in 43.756 seconds Ordered by: internal time ncalls tottime percall cumtime percall filename:lineno(function) 188000 4.507 0.000 5.728 0.000 {pandas._libs.tslibs.strptime.array_strptime} 15247920 3.286 0.000 5.884 0.000 {built-in method builtins.isinstance} 188000 2.358 0.000 2.358 0.000 {pandas._libs.tslibs.parsing._format_is_iso} 5264920 1.851 0.000 2.432 0.000 generic.py:10(_check) 1316199 1.828 0.000 3.879 0.000 common.py:1708(_is_dtype_type) 188001 1.650 0.000 34.982 0.000 datetimes.py:246(_convert_listlike_datetimes) 376150 1.400 0.000 1.400 0.000 {built-in method numpy.array} 188006 1.348 0.000 8.870 0.000 datetimes.py:1678(sequence_to_dt64ns) 188001 1.292 0.000 42.474 0.000 datetimes.py:530(to_datetime) ``` Using `date_parser` like this simply does not scale and blocks the entire CSV decoding process. ---- Meanwhile, here's an alternative version that bypasses `date_parser` and converts the datetime column in a single batch after parsing finishes: ```py import pandas as pd def read_mxflex_csv_fast(in_path: str): df = pd.read_csv( in_path, nrows=376 * 10000, usecols=['Date','Time', 'Frequency', 'Power'], index_col=['Date_Time', 'Frequency'] dtype={'Frequency': 'int32', 'Power': 'float32'}, parse_dates=[['Date','Time']], ) date_data = df.index.get_level_values(0) date_idx = pd.to_datetime(date_data, exact=True, cache=True, format='%m/%d/%Y %H:%M:%S:%f') # 06/17/2020 + 11:47:22:746 freq_idx = df.index.get_level_values(1) df.index = pd.MultiIndex.from_arrays([date_idx, freq_idx]) ``` This one completes in 6 seconds despite running on *20 times as much data* (10000 samples instead of 500, notice the change in `nrows`) than the first example. ``` > python -m cProfile -s tottime .\read_csv_fast.py 236167 function calls (229787 primitive calls) in 5.957 seconds Ordered by: internal time ncalls tottime percall cumtime percall filename:lineno(function) 1 2.353 2.353 2.412 2.412 {method 'read' of 'pandas._libs.parsers.TextReader' objects} 28 0.477 0.017 0.477 0.017 {pandas._libs.lib.infer_dtype} 2 0.442 0.221 0.442 0.221 {method 'unique' of 'pandas._libs.hashtable.StringHashTable' objects} 1 0.344 0.344 0.344 0.344 {pandas._libs.tslibs.parsing._concat_date_cols} 2 0.342 0.171 0.342 0.171 {method 'get_indexer' of 'pandas._libs.index.IndexEngine' objects} 1 0.235 0.235 0.235 0.235 {method 'factorize' of 'pandas._libs.hashtable.StringHashTable' objects} 60 0.179 0.003 0.182 0.003 {built-in method _imp.create_dynamic} 1667 0.177 0.000 0.177 0.000 {built-in method nt.stat} 3 0.136 0.045 0.136 0.045 {method 'factorize' of 'pandas._libs.hashtable.Int64HashTable' objects} ``` </details> #### Documentation problem Usage of the `date_parser` parameter tends to be a *huge* performance cliff given how it appears to run in an row-wise fashion (if the profiler's `ncalls` metric is to be believed), something the surrounding documentation heavily stresses as well: > If you have `parse_dates` enabled for some or all of your columns, and your datetime strings are all formatted the same way, you may get a large speed up by setting `infer_datetime_format=True`. If set, pandas will attempt to guess the format of your datetime strings, and then use a faster means of parsing the strings. 5-10x parsing speeds have been observed. The speedup described there isn't from Pandas having some sort of inferred date fast-path, but simply because the `date_parser` callback is being called in an extremely inefficient way for most workloads. There *is* a note above that section that could be considered as hinting at this: > If a column or index contains an unparsable date, the entire column or index will be returned unaltered as an object data type. For non-standard datetime parsing, use `to_datetime()` after `pd.read_csv`. All of those conflicting advices makes the current documentation fairly misleading on that topic, and people who don't profile their code might be led to believe that this is just a problem with pandas being too slow to handle their CSVs or something along those lines. #### Suggested fix for documentation One subsection of the Date Handling section (either appended to "Date parsing functions" or under a new subtitle) should give concrete examples on how to deal with files that contain non-standard or strange timestamp formats. > If your CSV file contains columns with timestamps in an unconventional format, it is usually significantly faster to > completely parse the file while leaving your dates as text (rather than specifying a `date_parser` callback when opening the file) and later converting the entire column as a single manipulation. > > ``` > print(open('buzz.csv').read()) > Date,Time,Value > 11261999,13h57m58s.345,0.0100 > 11261999,13h57m59s.999,-0.5900 > ``` > > ``` > ts_format = "%m%d%Y %Hh%Mm%Ss.%f" # 11261999 13h57m59s.999 > > df = pd.read_csv('buzz.csv' parse_dates=[['Date','Time']], index_col=['Date_Time'], infer_datetime_format=False) > df.index = pd.to_datetime(df.index, exact=True, cache=True, format=ts_format) > ``` This gives clear instructions for users dealing with a use case that's probably not all that uncommon, mentions the alternative and a reason why this is preferable and gives a code example. The code example itself also shows the interaction between `parse_dates` when combining columns and manually-specified date formats (the doc does not otherwise mention that this results in a column of space-separated values). I'm not certain how to change the above code example to make it work correctly for data columns, index columns and multi-indexes alike, if such a thing is possible.
{ "+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/35296/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35296/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/35297
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35297/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35297/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35297/events
https://github.com/pandas-dev/pandas/issues/35297
657,622,552
MDU6SXNzdWU2NTc2MjI1NTI=
35,297
BUG: AmbiguousTimeError when using date_range even when argument ambiguous is set
{ "avatar_url": "https://avatars.githubusercontent.com/u/40581023?v=4", "events_url": "https://api.github.com/users/aleisun/events{/privacy}", "followers_url": "https://api.github.com/users/aleisun/followers", "following_url": "https://api.github.com/users/aleisun/following{/other_user}", "gists_url": "https://api.github.com/users/aleisun/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/aleisun", "id": 40581023, "login": "aleisun", "node_id": "MDQ6VXNlcjQwNTgxMDIz", "organizations_url": "https://api.github.com/users/aleisun/orgs", "received_events_url": "https://api.github.com/users/aleisun/received_events", "repos_url": "https://api.github.com/users/aleisun/repos", "site_admin": false, "starred_url": "https://api.github.com/users/aleisun/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/aleisun/subscriptions", "type": "User", "url": "https://api.github.com/users/aleisun" }
[ { "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": "5319e7", "default": false, "description": "Timezone data dtype", "id": 60458168, "name": "Timezones", "node_id": "MDU6TGFiZWw2MDQ1ODE2OA==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Timezones" } ]
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
2020-07-15T20:11:40Z
2020-08-01T17:10:10Z
2020-08-01T17:10:10Z
NONE
null
- [x] I have checked that this issue has not already been reported. - [x] I have confirmed this bug exists on the latest version of pandas. - [ ] (optional) I have confirmed this bug exists on the master branch of pandas. --- **Note**: Please read [this guide](https://matthewrocklin.com/blog/work/2018/02/28/minimal-bug-reports) detailing how to provide the necessary information for us to reproduce your bug. #### Code Sample, a copy-pastable example ```python >>> import pandas as pd >>> timezone = 'America/New_York' >>> start = pd.Timestamp(year=2020, month=11, day=1, hour=1).tz_localize(timezone, ambiguous=False) >>> pd.date_range(start, periods=2, ambiguous=False) --------------------------------------------------------------------------- AmbiguousTimeError Traceback (most recent call last) <ipython-input-5-d142fd70e406> in <module> 2 timezone = 'America/New_York' 3 start = pd.Timestamp(year=2020, month=11, day=1, hour=1).tz_localize(timezone, ambiguous=False) ----> 4 pd.date_range(start, periods=2, ambiguous=False) ~/anaconda3/envs/oids_tst/lib/python3.6/site-packages/pandas/core/indexes/datetimes.py in date_range(start, end, periods, freq, tz, normalize, name, closed, **kwargs) 1178 normalize=normalize, 1179 closed=closed, -> 1180 **kwargs, 1181 ) 1182 return DatetimeIndex._simple_new(dtarr, tz=dtarr.tz, freq=dtarr.freq, name=name) ~/anaconda3/envs/oids_tst/lib/python3.6/site-packages/pandas/core/arrays/datetimes.py in _generate_range(cls, start, end, periods, freq, tz, normalize, ambiguous, nonexistent, closed) 419 # start/end as well to compare 420 if start is not None: --> 421 start = start.tz_localize(tz).asm8 422 if end is not None: 423 end = end.tz_localize(tz).asm8 pandas/_libs/tslibs/timestamps.pyx in pandas._libs.tslibs.timestamps.Timestamp.tz_localize() pandas/_libs/tslibs/tzconversion.pyx in pandas._libs.tslibs.tzconversion.tz_localize_to_utc() AmbiguousTimeError: Cannot infer dst time from 2020-11-01 01:00:00, try using the 'ambiguous' argument ``` #### Problem description When the start time is at the day light saving ambiguous time, date_range raises errors even when the argument 'ambiguous' is set. It should not be raising error when the argument is set. Issue could be due to the line https://github.com/pandas-dev/pandas/blob/32ed15d39312193a8c36171f0e120d0f46a26c2c/pandas/core/arrays/datetimes.py#L421 does not correctly pass the argument ambiguous to the function `tz_localize()`. #### Expected Output No error #### Output of ``pd.show_versions()`` AmbiguousTimeError: Cannot infer dst time from 2020-11-01 01:00:00, try using the 'ambiguous' argument
{ "+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/35297/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35297/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/35298
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35298/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35298/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35298/events
https://github.com/pandas-dev/pandas/pull/35298
657,624,935
MDExOlB1bGxSZXF1ZXN0NDQ5NzA5OTc4
35,298
TST: Remove deprecated use of apply_index
{ "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": "0052cc", "default": false, "description": "DateOffsets", "id": 53181044, "name": "Frequency", "node_id": "MDU6TGFiZWw1MzE4MTA0NA==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Frequency" } ]
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" }
1
2020-07-15T20:15:40Z
2020-07-16T19:39:05Z
2020-07-16T19:39:00Z
CONTRIBUTOR
null
Noticed this warning. apply_index is deprecated, so not likely to get attention anyway. Removing.
{ "+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/35298/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35298/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35298.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35298", "merged_at": "2020-07-16T19:39:00Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35298.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35298" }
https://api.github.com/repos/pandas-dev/pandas/issues/35299
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35299/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35299/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35299/events
https://github.com/pandas-dev/pandas/issues/35299
657,653,272
MDU6SXNzdWU2NTc2NTMyNzI=
35,299
ENH: add percentage threshold to DataFrame.dropna
{ "avatar_url": "https://avatars.githubusercontent.com/u/34067903?v=4", "events_url": "https://api.github.com/users/erfannariman/events{/privacy}", "followers_url": "https://api.github.com/users/erfannariman/followers", "following_url": "https://api.github.com/users/erfannariman/following{/other_user}", "gists_url": "https://api.github.com/users/erfannariman/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/erfannariman", "id": 34067903, "login": "erfannariman", "node_id": "MDQ6VXNlcjM0MDY3OTAz", "organizations_url": "https://api.github.com/users/erfannariman/orgs", "received_events_url": "https://api.github.com/users/erfannariman/received_events", "repos_url": "https://api.github.com/users/erfannariman/repos", "site_admin": false, "starred_url": "https://api.github.com/users/erfannariman/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/erfannariman/subscriptions", "type": "User", "url": "https://api.github.com/users/erfannariman" }
[ { "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": "d7e102", "default": false, "description": "np.nan, pd.NaT, pd.NA, dropna, isnull, interpolate", "id": 2822342, "name": "Missing-data", "node_id": "MDU6TGFiZWwyODIyMzQy", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Missing-data" }, { "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": "207de5", "default": false, "description": "Requires discussion from core team before further action", "id": 219960758, "name": "Needs Discussion", "node_id": "MDU6TGFiZWwyMTk5NjA3NTg=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Needs%20Discussion" } ]
closed
false
null
[]
null
42
2020-07-15T21:01:28Z
2021-03-30T12:24:57Z
2020-09-29T23:45:37Z
CONTRIBUTOR
null
**Is your feature request related to a problem?** When doing feature selection for models, or with handling missing data, in most cases you want to dynamically set a threshold to drop column which exceed this. A percentage is a more general metric to use to see how many data is missing data per row or per column. Right now we have the `thresh` argument, which accepts an int, but in most cases this is not desirable. For example when running the code in production, the shape of the data changes over time and thus a percentage threshold would make more sense to me. Or when you don't know the data well enough, what does "a number" mean in this case. Percentage is standarized. Besides that, the thresh right now is not flexible to go over column or index axis. For data cleaning you might want to drop rows which exceed the threshold, but for feature selection, you want to treat each column separately. **Describe the solution you'd like** Have a percentage threshold for both column and index axis. **API breaking implications** Not that I can think of, but not 100% sure. **Describe alternatives you've considered** Writing own custom functions. **Additional context** Locally I created a version where the `perc` argument is created (see linked draft PR): **example 1**: ```python >>> df = pd.DataFrame({'col': ["A", "A", "B", "B"], ... 'A': [80, np.nan, np.nan, np.nan], ... 'B': [80, np.nan, 76, 67]}) >>> df col A B 0 A 80.0 80.0 1 A NaN NaN 2 B NaN 76.0 3 B NaN 67.0 >>> df.dropna(perc=0.5) col A B 0 A 80.0 80.0 2 B NaN 76.0 3 B NaN 67.0 >>> df.dropna(perc=0.5, axis=1) col B 0 A 80.0 1 A NaN 2 B 76.0 3 B 67.0 ``` --- **example 2**: ```python >>> df = pd.DataFrame(np.random.randint(1, 10, (10,4)), columns=list('ABCD')) >>> df.loc[3, 'B':] = np.nan >>> df.loc[8, :'B'] = np.nan >>> df.loc[1:6, 'C'] = np.nan >>> df A B C D 0 7.0 2.0 3.0 7.0 1 3.0 2.0 NaN 9.0 2 2.0 2.0 NaN 2.0 3 7.0 NaN NaN NaN 4 1.0 9.0 NaN 4.0 5 9.0 9.0 NaN 1.0 6 2.0 2.0 NaN 6.0 7 9.0 3.0 5.0 6.0 8 NaN NaN 9.0 5.0 9 7.0 7.0 3.0 1.0 ``` As we can see, index 3 (`axis=0`) has 75% missing values and column C (`axis=1`) has 60% missing values. With the `percentage` argument we can specify what the threshold is, but also consider row wise or column wise: Example consider **per row**: ```python >>> df.dropna(perc=.4, axis=0) A B C D 0 7.0 2.0 3.0 7.0 1 3.0 2.0 NaN 9.0 2 2.0 2.0 NaN 2.0 4 1.0 9.0 NaN 4.0 5 9.0 9.0 NaN 1.0 6 2.0 2.0 NaN 6.0 7 9.0 3.0 5.0 6.0 9 7.0 7.0 3.0 1.0 ``` Above we can see row 3 and 8 got dropped because these had ` > 40%` missing values. ```python >>> df.dropna(perc=.4, axis=1) A B D 0 7.0 2.0 7.0 1 3.0 2.0 9.0 2 2.0 2.0 2.0 3 7.0 NaN NaN 4 1.0 9.0 4.0 5 9.0 9.0 1.0 6 2.0 2.0 6.0 7 9.0 3.0 6.0 8 NaN NaN 5.0 9 7.0 7.0 1.0 ``` Same command but with `axis=1`, so we can consider percentage threshold **per column**, and we see that column C got dropped because it had 60% missing values
{ "+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/35299/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35299/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/35300
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35300/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35300/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35300/events
https://github.com/pandas-dev/pandas/pull/35300
657,696,528
MDExOlB1bGxSZXF1ZXN0NDQ5NzcxMDc3
35,300
ENH: add percentage threshold to dropna
{ "avatar_url": "https://avatars.githubusercontent.com/u/34067903?v=4", "events_url": "https://api.github.com/users/erfannariman/events{/privacy}", "followers_url": "https://api.github.com/users/erfannariman/followers", "following_url": "https://api.github.com/users/erfannariman/following{/other_user}", "gists_url": "https://api.github.com/users/erfannariman/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/erfannariman", "id": 34067903, "login": "erfannariman", "node_id": "MDQ6VXNlcjM0MDY3OTAz", "organizations_url": "https://api.github.com/users/erfannariman/orgs", "received_events_url": "https://api.github.com/users/erfannariman/received_events", "repos_url": "https://api.github.com/users/erfannariman/repos", "site_admin": false, "starred_url": "https://api.github.com/users/erfannariman/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/erfannariman/subscriptions", "type": "User", "url": "https://api.github.com/users/erfannariman" }
[ { "color": "207de5", "default": false, "description": "Requires discussion from core team before further action", "id": 219960758, "name": "Needs Discussion", "node_id": "MDU6TGFiZWwyMTk5NjA3NTg=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Needs%20Discussion" } ]
closed
false
null
[]
null
2
2020-07-15T22:19:41Z
2020-09-29T23:45:56Z
2020-09-29T23:45:50Z
CONTRIBUTOR
null
- [x] closes #35299 - [x] 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/35300/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35300/timeline
null
1
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35300.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35300", "merged_at": null, "patch_url": "https://github.com/pandas-dev/pandas/pull/35300.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35300" }
https://api.github.com/repos/pandas-dev/pandas/issues/35301
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35301/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35301/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35301/events
https://github.com/pandas-dev/pandas/issues/35301
657,717,188
MDU6SXNzdWU2NTc3MTcxODg=
35,301
BUG: xs not working with slice
{ "avatar_url": "https://avatars.githubusercontent.com/u/143389?v=4", "events_url": "https://api.github.com/users/wiso/events{/privacy}", "followers_url": "https://api.github.com/users/wiso/followers", "following_url": "https://api.github.com/users/wiso/following{/other_user}", "gists_url": "https://api.github.com/users/wiso/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/wiso", "id": 143389, "login": "wiso", "node_id": "MDQ6VXNlcjE0MzM4OQ==", "organizations_url": "https://api.github.com/users/wiso/orgs", "received_events_url": "https://api.github.com/users/wiso/received_events", "repos_url": "https://api.github.com/users/wiso/repos", "site_admin": false, "starred_url": "https://api.github.com/users/wiso/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/wiso/subscriptions", "type": "User", "url": "https://api.github.com/users/wiso" }
[ { "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": "ffa0ff", "default": false, "description": "Incorrect or improved errors from pandas", "id": 42670965, "name": "Error Reporting", "node_id": "MDU6TGFiZWw0MjY3MDk2NQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Error%20Reporting" } ]
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" }
13
2020-07-15T23:09:33Z
2020-08-07T16:58:25Z
2020-08-07T16:58:25Z
NONE
null
- [x] I have checked that this issue has not already been reported. - [x] I have confirmed this bug exists on the latest version of pandas. - [ ] (optional) I have confirmed this bug exists on the master branch of pandas. #### Code Sample, a copy-pastable example ```python data = """ C1 C2 V A1 0 10 A1 1 20 A2 0 2 A2 1 3 B1 0 2 B2 1 3 """ import pandas as pd from io import StringIO df = pd.read_csv(StringIO(data), sep=' +').set_index(['C1', 'C2']) df.xs(pd.IndexSlice['A1', :]) ``` #### Problem description ``` Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/home/***/lib/python3.7/site-packages/pandas/core/generic.py", line 3535, in xs loc, new_index = self.index.get_loc_level(key, drop_level=drop_level) File "/home/***/lib/python3.7/site-packages/pandas/core/indexes/multi.py", line 2835, in get_loc_level raise TypeError(key) TypeError: ('A1', slice(None, None, None)) ``` also similar code produce the same problem (`df.xs(('A1', slice(None)))`). Strangely this works: ```python df = pd.DataFrame({'a': [1, 2, 3, 1], 'b': ['a', 'b', 'c', 'd'], 'v': [2, 3, 4, 5]}).set_index(['a', 'b']) df.xs(pd.IndexSlice[1, :]) ``` #### Output of ``pd.show_versions()`` <details> INSTALLED VERSIONS ------------------ commit : None python : 3.7.7.final.0 python-bits : 64 OS : Linux OS-release : 5.7.7-100.fc31.x86_64 machine : x86_64 processor : x86_64 byteorder : little LC_ALL : None LANG : it_IT.UTF-8 LOCALE : it_IT.UTF-8 pandas : 1.0.5 numpy : 1.19.0 pytz : 2019.2 dateutil : 2.7.5 pip : 20.1.1 setuptools : 41.6.0 Cython : 0.29.15 pytest : 4.0.0 hypothesis : None sphinx : 3.1.1 blosc : None feather : None xlsxwriter : None lxml.etree : 4.4.0 html5lib : 1.0.1 pymysql : None psycopg2 : None jinja2 : 2.10 IPython : 7.16.1 pandas_datareader: 0.8.0 bs4 : 4.7.1 bottleneck : 1.2.1 fastparquet : None gcsfs : None lxml.etree : 4.4.0 matplotlib : 3.2.2 numexpr : 2.7.1 odfpy : None openpyxl : None pandas_gbq : None pyarrow : None pytables : None pytest : 4.0.0 pyxlsb : None s3fs : 0.4.2 scipy : 1.5.1 sqlalchemy : None tables : 3.5.2 tabulate : 0.8.5 xarray : 0.12.1 xlrd : 1.2.0 xlwt : 1.1.2 xlsxwriter : None numba : 0.48.0 </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/35301/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35301/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/35302
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35302/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35302/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35302/events
https://github.com/pandas-dev/pandas/pull/35302
657,969,933
MDExOlB1bGxSZXF1ZXN0NDUwMDAwMjgz
35,302
BUG: date_range doesn't propagate ambigous=False to tz_localize
{ "avatar_url": "https://avatars.githubusercontent.com/u/48889395?v=4", "events_url": "https://api.github.com/users/arw2019/events{/privacy}", "followers_url": "https://api.github.com/users/arw2019/followers", "following_url": "https://api.github.com/users/arw2019/following{/other_user}", "gists_url": "https://api.github.com/users/arw2019/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/arw2019", "id": 48889395, "login": "arw2019", "node_id": "MDQ6VXNlcjQ4ODg5Mzk1", "organizations_url": "https://api.github.com/users/arw2019/orgs", "received_events_url": "https://api.github.com/users/arw2019/received_events", "repos_url": "https://api.github.com/users/arw2019/repos", "site_admin": false, "starred_url": "https://api.github.com/users/arw2019/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/arw2019/subscriptions", "type": "User", "url": "https://api.github.com/users/arw2019" }
[ { "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": "5319e7", "default": false, "description": "Timezone data dtype", "id": 60458168, "name": "Timezones", "node_id": "MDU6TGFiZWw2MDQ1ODE2OA==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Timezones" } ]
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" }
3
2020-07-16T08:20:58Z
2020-08-01T17:18:24Z
2020-08-01T17:10:10Z
MEMBER
null
- [x] closes #35297 - [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/35302/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35302/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35302.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35302", "merged_at": "2020-08-01T17:10:10Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35302.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35302" }
https://api.github.com/repos/pandas-dev/pandas/issues/35303
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35303/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35303/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35303/events
https://github.com/pandas-dev/pandas/pull/35303
658,105,281
MDExOlB1bGxSZXF1ZXN0NDUwMTE1MDM2
35,303
Fixed reindexing arith with duplicates
{ "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": "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": "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" } ]
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
2020-07-16T11:20:33Z
2020-07-16T22:49:17Z
2020-07-16T22:49:14Z
CONTRIBUTOR
null
Closes https://github.com/pandas-dev/pandas/issues/35194 Still need to run ASV on this. This was a regression from 0.25.x to 1.0. It doesn't have to go in 1.1, but probably better for 1.1.0.rc0 than a 1.1.1 release.
{ "+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/35303/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35303/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35303.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35303", "merged_at": "2020-07-16T22:49:13Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35303.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35303" }
https://api.github.com/repos/pandas-dev/pandas/issues/35304
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35304/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35304/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35304/events
https://github.com/pandas-dev/pandas/pull/35304
658,112,198
MDExOlB1bGxSZXF1ZXN0NDUwMTIxMTQ5
35,304
TST: xfail more 32-bits
{ "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": "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": "0e8a16", "default": false, "description": "32-bit systems", "id": 563047854, "name": "32bit", "node_id": "MDU6TGFiZWw1NjMwNDc4NTQ=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/32bit" } ]
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
2020-07-16T11:29:48Z
2020-07-16T13:29:02Z
2020-07-16T13:04:54Z
CONTRIBUTOR
null
xref #35294
{ "+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/35304/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35304/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35304.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35304", "merged_at": "2020-07-16T13:04:53Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35304.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35304" }
https://api.github.com/repos/pandas-dev/pandas/issues/35305
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35305/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35305/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35305/events
https://github.com/pandas-dev/pandas/issues/35305
658,156,909
MDU6SXNzdWU2NTgxNTY5MDk=
35,305
QST:shape mismatch: objects cannot be broadcast to a single shape
{ "avatar_url": "https://avatars.githubusercontent.com/u/68257229?v=4", "events_url": "https://api.github.com/users/pooja565/events{/privacy}", "followers_url": "https://api.github.com/users/pooja565/followers", "following_url": "https://api.github.com/users/pooja565/following{/other_user}", "gists_url": "https://api.github.com/users/pooja565/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/pooja565", "id": 68257229, "login": "pooja565", "node_id": "MDQ6VXNlcjY4MjU3MjI5", "organizations_url": "https://api.github.com/users/pooja565/orgs", "received_events_url": "https://api.github.com/users/pooja565/received_events", "repos_url": "https://api.github.com/users/pooja565/repos", "site_admin": false, "starred_url": "https://api.github.com/users/pooja565/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/pooja565/subscriptions", "type": "User", "url": "https://api.github.com/users/pooja565" }
[ { "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
2020-07-16T12:33:11Z
2020-08-21T17:04:38Z
2020-07-16T14:11:03Z
NONE
null
Hi, Im having a problem using bar chart in python is "shape mismatch: objects cannot be broadcast to a single shape". and the code is: import pandas as pd import numpy as np import matplotlib.pyplot as plt df=pd.read_csv('2017Jaipur_month accidents.csv') data1=pd.DataFrame(df,columns=['acc_2017','acc_2016','Months']) data1 index=np.arange(2,13) bar_width=0.25 acc_2017=plt.bar(index,data1['acc_2017'],color='blue',width=0.25,label='Death in 2017') acc_2016=plt.bar(index+0.25,data1['2016'],color='red',width=0.25, label='Death in 2016') plt.title('2016-17 Death in Accident') plt.xticks(index, data1.Months, rotation=90) plt.xlabel('Time accidents') plt.ylabel('no of accidents') plt.show() and the error is: ValueError Traceback (most recent call last) <ipython-input-107-3c2ff406e777> in <module> 13 14 ---> 15 acc_2017=plt.bar(index,data1['acc_2017'],color='blue',width=0.25,label='Death in 2017') 16 acc_2016=plt.bar(index+0.25,data1['2016'],color='red',width=0.25, label='Death in 2016') 17 C:\ProgramData\Anaconda3\lib\site-packages\matplotlib\pyplot.py in bar(x, height, width, bottom, align, data, **kwargs) 2439 return gca().bar( 2440 x, height, width=width, bottom=bottom, align=align, -> 2441 **({"data": data} if data is not None else {}), **kwargs) 2442 2443 C:\ProgramData\Anaconda3\lib\site-packages\matplotlib\__init__.py in inner(ax, data, *args, **kwargs) 1597 def inner(ax, *args, data=None, **kwargs): 1598 if data is None: -> 1599 return func(ax, *map(sanitize_sequence, args), **kwargs) 1600 1601 bound = new_sig.bind(ax, *args, **kwargs) C:\ProgramData\Anaconda3\lib\site-packages\matplotlib\axes\_axes.py in bar(self, x, height, width, bottom, align, **kwargs) 2372 x, height, width, y, linewidth = np.broadcast_arrays( 2373 # Make args iterable too. -> 2374 np.atleast_1d(x), height, width, y, linewidth) 2375 2376 # Now that units have been converted, set the tick locations. <__array_function__ internals> in broadcast_arrays(*args, **kwargs) C:\ProgramData\Anaconda3\lib\site-packages\numpy\lib\stride_tricks.py in broadcast_arrays(*args, **kwargs) 262 args = [np.array(_m, copy=False, subok=subok) for _m in args] 263 --> 264 shape = _broadcast_shape(*args) 265 266 if all(array.shape == shape for array in args): C:\ProgramData\Anaconda3\lib\site-packages\numpy\lib\stride_tricks.py in _broadcast_shape(*args) 189 # use the old-iterator because np.nditer does not handle size 0 arrays 190 # consistently --> 191 b = np.broadcast(*args[:32]) 192 # unfortunately, it cannot handle 32 or more arguments directly 193 for pos in range(32, len(args), 31): ValueError: shape mismatch: objects cannot be broadcast to a single shape plz help to find out the 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/35305/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35305/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/35306
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35306/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35306/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35306/events
https://github.com/pandas-dev/pandas/pull/35306
658,214,171
MDExOlB1bGxSZXF1ZXN0NDUwMjA4NzQ4
35,306
Revert BUG: Ensure same index is returned for slow and fast path in …
{ "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": "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" } ]
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
2020-07-16T13:44:49Z
2020-07-16T15:06:59Z
2020-07-16T14:56:09Z
CONTRIBUTOR
null
…groupby.apply #31613 xref https://github.com/pandas-dev/pandas/pull/34998.
{ "+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/35306/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35306/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35306.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35306", "merged_at": "2020-07-16T14:56:09Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35306.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35306" }
https://api.github.com/repos/pandas-dev/pandas/issues/35307
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35307/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35307/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35307/events
https://github.com/pandas-dev/pandas/pull/35307
658,281,141
MDExOlB1bGxSZXF1ZXN0NDUwMjY1NzI1
35,307
TST: xfail 32-bit test
{ "avatar_url": "https://avatars.githubusercontent.com/u/34067903?v=4", "events_url": "https://api.github.com/users/erfannariman/events{/privacy}", "followers_url": "https://api.github.com/users/erfannariman/followers", "following_url": "https://api.github.com/users/erfannariman/following{/other_user}", "gists_url": "https://api.github.com/users/erfannariman/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/erfannariman", "id": 34067903, "login": "erfannariman", "node_id": "MDQ6VXNlcjM0MDY3OTAz", "organizations_url": "https://api.github.com/users/erfannariman/orgs", "received_events_url": "https://api.github.com/users/erfannariman/received_events", "repos_url": "https://api.github.com/users/erfannariman/repos", "site_admin": false, "starred_url": "https://api.github.com/users/erfannariman/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/erfannariman/subscriptions", "type": "User", "url": "https://api.github.com/users/erfannariman" }
[]
closed
false
null
[]
null
5
2020-07-16T15:00:56Z
2020-07-17T21:25:36Z
2020-07-17T11:16:45Z
CONTRIBUTOR
null
ref #35294
{ "+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/35307/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35307/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35307.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35307", "merged_at": null, "patch_url": "https://github.com/pandas-dev/pandas/pull/35307.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35307" }
https://api.github.com/repos/pandas-dev/pandas/issues/35308
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35308/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35308/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35308/events
https://github.com/pandas-dev/pandas/pull/35308
658,301,395
MDExOlB1bGxSZXF1ZXN0NDUwMjgyOTg2
35,308
CLN: consistent EA._reduce signatures
{ "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" }, { "color": "6138b5", "default": false, "description": "Extending pandas with custom dtypes or arrays.", "id": 849023693, "name": "ExtensionArray", "node_id": "MDU6TGFiZWw4NDkwMjM2OTM=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/ExtensionArray" }, { "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-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" }
1
2020-07-16T15:23:52Z
2020-07-17T07:58:50Z
2020-07-16T22:44:19Z
MEMBER
null
- [ ] 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/35308/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35308/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35308.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35308", "merged_at": "2020-07-16T22:44:19Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35308.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35308" }
https://api.github.com/repos/pandas-dev/pandas/issues/35309
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35309/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35309/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35309/events
https://github.com/pandas-dev/pandas/issues/35309
658,330,355
MDU6SXNzdWU2NTgzMzAzNTU=
35,309
Crashed Worker tracking issue
{ "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" }, { "color": "5319e7", "default": false, "description": "Unit tests that occasionally fail", "id": 76939933, "name": "Unreliable Test", "node_id": "MDU6TGFiZWw3NjkzOTkzMw==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Unreliable%20Test" } ]
closed
false
null
[]
null
5
2020-07-16T15:57:01Z
2021-08-08T17:07:44Z
2021-08-08T17:07:44Z
CONTRIBUTOR
null
I've been seeing a lot of CI builds failing recently, but I have no idea what's causing them. Can maintainers add them to the table here when they occur? | CI Job | Test | Count | | ------------------------- | ---- | ----- | | MacPython linux py_3.7_64 | `TestTableOrientReader::test_read_json_table_orient[vals0-index]` | 1 | | Windows py37_np18 | `testst_unique.py::test_unique_bad_unicode[idx_or_series_w_bad_unicode0]` | 1 |
{ "+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/35309/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35309/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/35310
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35310/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35310/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35310/events
https://github.com/pandas-dev/pandas/pull/35310
658,534,306
MDExOlB1bGxSZXF1ZXN0NDUwNDg0Nzcw
35,310
CI: Skip test for 3.7.0 exactly
{ "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" }
[]
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
2020-07-16T20:20:03Z
2020-07-17T15:13:58Z
2020-07-17T13:25:28Z
CONTRIBUTOR
null
xref https://github.com/pandas-dev/pandas/issues/35309 This test segfaults for python 3.7.0 exactly, but seems to pass for other versions. Just skipping in, to get MacPython all passing again.
{ "+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/35310/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35310/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35310.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35310", "merged_at": "2020-07-17T13:25:28Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35310.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35310" }
https://api.github.com/repos/pandas-dev/pandas/issues/35311
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35311/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35311/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35311/events
https://github.com/pandas-dev/pandas/pull/35311
658,567,029
MDExOlB1bGxSZXF1ZXN0NDUwNTEzNTUw
35,311
TYP: Add MyPy Error Codes
{ "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": "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": "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-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" }
3
2020-07-16T21:01:31Z
2020-08-06T15:57:50Z
2020-08-06T15:12:34Z
MEMBER
null
- [ ] closes #29197 - [ ] 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/35311/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35311/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35311.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35311", "merged_at": "2020-08-06T15:12:34Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35311.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35311" }
https://api.github.com/repos/pandas-dev/pandas/issues/35312
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35312/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35312/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35312/events
https://github.com/pandas-dev/pandas/pull/35312
658,589,125
MDExOlB1bGxSZXF1ZXN0NDUwNTMzMjAz
35,312
pin numpy<1.19 in doc 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": "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" }, { "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" }
1
2020-07-16T21:32:11Z
2020-07-17T15:13:38Z
2020-07-16T22:43:07Z
CONTRIBUTOR
null
Doc build is failing on master with a warning from NumPy via matplotlib. Waiting on a release with https://github.com/matplotlib/matplotlib/pull/17289 (3.3.0), so pinning numpy<1.19 for now.
{ "+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/35312/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35312/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35312.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35312", "merged_at": "2020-07-16T22:43:07Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35312.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35312" }
https://api.github.com/repos/pandas-dev/pandas/issues/35313
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35313/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35313/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35313/events
https://github.com/pandas-dev/pandas/issues/35313
658,608,634
MDU6SXNzdWU2NTg2MDg2MzQ=
35,313
ENH: pandas.DataFrame.pivot option to output hierarchically indexed rows
{ "avatar_url": "https://avatars.githubusercontent.com/u/14302923?v=4", "events_url": "https://api.github.com/users/rchurt/events{/privacy}", "followers_url": "https://api.github.com/users/rchurt/followers", "following_url": "https://api.github.com/users/rchurt/following{/other_user}", "gists_url": "https://api.github.com/users/rchurt/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/rchurt", "id": 14302923, "login": "rchurt", "node_id": "MDQ6VXNlcjE0MzAyOTIz", "organizations_url": "https://api.github.com/users/rchurt/orgs", "received_events_url": "https://api.github.com/users/rchurt/received_events", "repos_url": "https://api.github.com/users/rchurt/repos", "site_admin": false, "starred_url": "https://api.github.com/users/rchurt/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/rchurt/subscriptions", "type": "User", "url": "https://api.github.com/users/rchurt" }
[ { "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": "Clarification about behavior needed to assess issue", "id": 307649777, "name": "Needs Info", "node_id": "MDU6TGFiZWwzMDc2NDk3Nzc=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Needs%20Info" } ]
closed
false
null
[]
null
3
2020-07-16T22:01:56Z
2021-03-26T06:14:31Z
2021-03-26T06:14:30Z
NONE
null
#### Is your feature request related to a problem? When I use `pivot` or `pivot_table` and pass a list of `values`, I get a multiindex on the columns, as the docs say. However, in my case I want the output to be hierarchically indexed by rows. #### Describe the solution you'd like It would be nice to have a `indexing_axis` kwarg in `pivot` and `pivot_table` so I could pass `indexing_axis='rows'` and get a multiindex on the rows instead of on the columns. #### Describe alternatives you've considered Can be fixed by running `df_pivoted.stack()`, but it would be nice to not have to do this as a separate step. ```python df = pd.DataFrame({"A": ["foo", "foo", "foo", "foo", "foo", "bar", "bar", "bar", "bar"], "B": ["one", "one", "one", "two", "two", "one", "one", "two", "two"], "C": ["small", "large", "large", "small", "small", "large", "small", "small", "large"], "D": [1, 2, 2, 3, 3, 4, 5, 6, 7], "E": [2, 4, 5, 5, 6, 6, 8, 9, 9]}) df_pivoted = df.pivot_table(index=['A','C'], columns='B', values=['D','E']) # df_pivoted = df.pivot_table(index=['A','C'], columns='B', values=['D','E'], indexing_axis='rows') # this is what I want to be able to do df_pivoted.stack() # this is what I want the result to look like ```
{ "+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/35313/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35313/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/35314
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35314/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35314/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35314/events
https://github.com/pandas-dev/pandas/pull/35314
658,661,613
MDExOlB1bGxSZXF1ZXN0NDUwNTk3Mjcy
35,314
BUG: GroupBy.apply() returns different results if a different GroupBy method is called first
{ "avatar_url": "https://avatars.githubusercontent.com/u/3813175?v=4", "events_url": "https://api.github.com/users/smithto1/events{/privacy}", "followers_url": "https://api.github.com/users/smithto1/followers", "following_url": "https://api.github.com/users/smithto1/following{/other_user}", "gists_url": "https://api.github.com/users/smithto1/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/smithto1", "id": 3813175, "login": "smithto1", "node_id": "MDQ6VXNlcjM4MTMxNzU=", "organizations_url": "https://api.github.com/users/smithto1/orgs", "received_events_url": "https://api.github.com/users/smithto1/received_events", "repos_url": "https://api.github.com/users/smithto1/repos", "site_admin": false, "starred_url": "https://api.github.com/users/smithto1/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/smithto1/subscriptions", "type": "User", "url": "https://api.github.com/users/smithto1" }
[ { "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": "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-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" }
10
2020-07-16T23:28:41Z
2020-08-07T16:56:25Z
2020-08-07T16:56:13Z
MEMBER
null
- [x] closes #34656 - [x] closes #34271 - [x] tests added / passed - [x] passes `black pandas` - [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff` - [x] whatsnew entry _Behavioural Changes_ _.apply()_ Calls to `self._set_group_selection` have been replaced with `with _group_selection_context(self):` for `_agg_general`, `_make_wrapper`, and `nth`. Previously these calls to `self._set_group_selection` created a bug in `GroupBy.apply` where calling another method before `.apply` would change the output of `.apply`. This bug is now fixed. _Tests_ One new test is added to check that the output of `.apply` is constant whether another method is called on the same grouper first. Two existing tests were actually dependent on the old buggy-behaviour (i.e. they called GroupBy.sum first and then expected that GroupBy.apply(sum) would exclude the index columns from the results). All of these tests have been amended in a manner that enforces the new consistent output format while preserving the existing test. Both of the copy-pastable examples in the linked bug-reports are fixed.
{ "+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/35314/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35314/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35314.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35314", "merged_at": "2020-08-07T16:56:13Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35314.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35314" }
https://api.github.com/repos/pandas-dev/pandas/issues/35315
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35315/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35315/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35315/events
https://github.com/pandas-dev/pandas/pull/35315
658,679,696
MDExOlB1bGxSZXF1ZXN0NDUwNjEyODcy
35,315
DOC: whatsnew for 1.2
{ "avatar_url": "https://avatars.githubusercontent.com/u/48889395?v=4", "events_url": "https://api.github.com/users/arw2019/events{/privacy}", "followers_url": "https://api.github.com/users/arw2019/followers", "following_url": "https://api.github.com/users/arw2019/following{/other_user}", "gists_url": "https://api.github.com/users/arw2019/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/arw2019", "id": 48889395, "login": "arw2019", "node_id": "MDQ6VXNlcjQ4ODg5Mzk1", "organizations_url": "https://api.github.com/users/arw2019/orgs", "received_events_url": "https://api.github.com/users/arw2019/received_events", "repos_url": "https://api.github.com/users/arw2019/repos", "site_admin": false, "starred_url": "https://api.github.com/users/arw2019/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/arw2019/subscriptions", "type": "User", "url": "https://api.github.com/users/arw2019" }
[ { "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-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
2020-07-17T00:00:29Z
2020-07-29T19:07:43Z
2020-07-29T09:20:33Z
MEMBER
null
@mroeschke re: #35302
{ "+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/35315/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35315/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35315.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35315", "merged_at": "2020-07-29T09:20:33Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35315.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35315" }
https://api.github.com/repos/pandas-dev/pandas/issues/35316
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/35316/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/35316/comments
https://api.github.com/repos/pandas-dev/pandas/issues/35316/events
https://github.com/pandas-dev/pandas/pull/35316
658,732,134
MDExOlB1bGxSZXF1ZXN0NDUwNjU5OTQy
35,316
DOC: extra closing parens make example invalid.
{ "avatar_url": "https://avatars.githubusercontent.com/u/335567?v=4", "events_url": "https://api.github.com/users/Carreau/events{/privacy}", "followers_url": "https://api.github.com/users/Carreau/followers", "following_url": "https://api.github.com/users/Carreau/following{/other_user}", "gists_url": "https://api.github.com/users/Carreau/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/Carreau", "id": 335567, "login": "Carreau", "node_id": "MDQ6VXNlcjMzNTU2Nw==", "organizations_url": "https://api.github.com/users/Carreau/orgs", "received_events_url": "https://api.github.com/users/Carreau/received_events", "repos_url": "https://api.github.com/users/Carreau/repos", "site_admin": false, "starred_url": "https://api.github.com/users/Carreau/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Carreau/subscriptions", "type": "User", "url": "https://api.github.com/users/Carreau" }
[ { "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" } ]
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" }
1
2020-07-17T01:29:39Z
2020-07-17T10:25:52Z
2020-07-17T10:25:51Z
CONTRIBUTOR
null
No attached issues or need for what's new / test... unless you want to actually get a linter the parse the docstrings and make the the examples are syntactically correct ? - [ ] 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/35316/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/35316/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/35316.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/35316", "merged_at": "2020-07-17T10:25:51Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/35316.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/35316" }