url stringlengths 55 59 | repository_url stringclasses 1
value | labels_url stringlengths 69 73 | comments_url stringlengths 64 68 | events_url stringlengths 62 66 | html_url stringlengths 44 49 | id int64 338k 1.06B | node_id stringlengths 18 32 | number int64 1 44.6k | title stringlengths 1 590 | user dict | labels listlengths 0 9 | state stringclasses 2
values | locked bool 2
classes | assignee dict | assignees listlengths 0 5 | milestone dict | comments int64 0 477 | created_at timestamp[us, tz=UTC] | updated_at timestamp[us, tz=UTC] | closed_at timestamp[us, tz=UTC] | author_association stringclasses 3
values | active_lock_reason stringclasses 4
values | body stringlengths 0 251k ⌀ | reactions dict | timeline_url stringlengths 64 68 | performed_via_github_app float64 | draft float64 0 1 ⌀ | pull_request dict |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
https://api.github.com/repos/pandas-dev/pandas/issues/28813 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28813/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28813/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28813/events | https://github.com/pandas-dev/pandas/issues/28813 | 503,298,543 | MDU6SXNzdWU1MDMyOTg1NDM= | 28,813 | Diff on sparse dtype | {
"avatar_url": "https://avatars.githubusercontent.com/u/6419212?v=4",
"events_url": "https://api.github.com/users/thedimlebowski/events{/privacy}",
"followers_url": "https://api.github.com/users/thedimlebowski/followers",
"following_url": "https://api.github.com/users/thedimlebowski/following{/other_user}",
... | [
{
"color": "0e8a16",
"default": true,
"description": null,
"id": 717120670,
"name": "good first issue",
"node_id": "MDU6TGFiZWw3MTcxMjA2NzA=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/good%20first%20issue"
},
{
"color": "cdea3c",
"default": false,
"de... | closed | false | null | [] | {
"closed_at": "2020-07-28T18:13:47Z",
"closed_issues": 2378,
"created_at": "2019-12-02T12:52:48Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/j... | 2 | 2019-10-07T08:17:59Z | 2020-05-22T09:58:31Z | 2020-05-22T09:58:31Z | NONE | null | Correct behaviour without Sparse[int]:
```python
a = [[0, 1], [1, 0]]
print(pd.DataFrame(a).diff())
```
yields:
```
0 1
0 NaN NaN
1 1.0 -1.0
```
Current behaviour (doesn't work):
```python
a = [[0, 1], [1, 0]]
print(pd.DataFrame(a, dtype='Sparse[int]').diff())
```
yields:
```
--------... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28813/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28813/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28814 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28814/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28814/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28814/events | https://github.com/pandas-dev/pandas/issues/28814 | 503,298,832 | MDU6SXNzdWU1MDMyOTg4MzI= | 28,814 | infer_dtype() function slower in latest version | {
"avatar_url": "https://avatars.githubusercontent.com/u/11585453?v=4",
"events_url": "https://api.github.com/users/borisaltanov/events{/privacy}",
"followers_url": "https://api.github.com/users/borisaltanov/followers",
"following_url": "https://api.github.com/users/borisaltanov/following{/other_user}",
"gist... | [
{
"color": "a10c02",
"default": false,
"description": "Memory or execution speed performance",
"id": 8935311,
"name": "Performance",
"node_id": "MDU6TGFiZWw4OTM1MzEx",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Performance"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 2 | 2019-10-07T08:18:40Z | 2019-12-23T17:02:23Z | 2019-12-23T17:02:23Z | NONE | null | #### Code Sample
```python
from datetime import datetime
import numpy as np
import pandas as pd
from pandas.api.types import infer_dtype
print(pd.__version__)
RUN_COUNT = 5
df = pd.DataFrame(np.ones((100000, 1000)))
avg_times = []
for _ in range(RUN_COUNT):
start = datetime.now()
f... | {
"+1": 1,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 1,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28814/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28814/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28815 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28815/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28815/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28815/events | https://github.com/pandas-dev/pandas/pull/28815 | 503,310,459 | MDExOlB1bGxSZXF1ZXN0MzI1MTg4OTA0 | 28,815 | DOC: Fixes for SA04 errors in docstrings | {
"avatar_url": "https://avatars.githubusercontent.com/u/15952911?v=4",
"events_url": "https://api.github.com/users/suparnasnair/events{/privacy}",
"followers_url": "https://api.github.com/users/suparnasnair/followers",
"following_url": "https://api.github.com/users/suparnasnair/following{/other_user}",
"gist... | [
{
"color": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
}
] | closed | false | null | [] | null | 23 | 2019-10-07T08:43:32Z | 2019-12-29T13:59:48Z | 2019-12-29T13:59:48Z | NONE | null | - [x] Fixes for #28792
- [x] tested through ./scripts/validate_docstrings.py | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28815/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28815/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28815.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28815",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/28815.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28815"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28816 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28816/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28816/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28816/events | https://github.com/pandas-dev/pandas/issues/28816 | 503,336,665 | MDU6SXNzdWU1MDMzMzY2NjU= | 28,816 | .at not setting value | {
"avatar_url": "https://avatars.githubusercontent.com/u/32194462?v=4",
"events_url": "https://api.github.com/users/ma00/events{/privacy}",
"followers_url": "https://api.github.com/users/ma00/followers",
"following_url": "https://api.github.com/users/ma00/following{/other_user}",
"gists_url": "https://api.git... | [] | closed | false | null | [] | null | 4 | 2019-10-07T09:35:06Z | 2019-10-07T16:03:10Z | 2019-10-07T16:03:10Z | NONE | null | #### Code Sample, a copy-pastable example if possible
```python
# ff= 20
# df['B'] = 0
# df.at[4, 'B'] = -ff/100
# df.at[4, 'B']
#0
```
#### Problem description
the function Dataframe.at is not setting the value if passed as variable, instead if it's passed as number, it works
#### Expected Output
... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28816/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28816/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28817 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28817/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28817/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28817/events | https://github.com/pandas-dev/pandas/issues/28817 | 503,355,943 | MDU6SXNzdWU1MDMzNTU5NDM= | 28,817 | Faster SQL implementation in d6stack library | {
"avatar_url": "https://avatars.githubusercontent.com/u/31596773?v=4",
"events_url": "https://api.github.com/users/JulianWgs/events{/privacy}",
"followers_url": "https://api.github.com/users/JulianWgs/followers",
"following_url": "https://api.github.com/users/JulianWgs/following{/other_user}",
"gists_url": "... | [
{
"color": "a10c02",
"default": false,
"description": "Memory or execution speed performance",
"id": 8935311,
"name": "Performance",
"node_id": "MDU6TGFiZWw4OTM1MzEx",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Performance"
},
{
"color": "5319e7",
"default"... | closed | false | null | [] | null | 7 | 2019-10-07T10:12:30Z | 2021-07-21T05:25:28Z | 2021-07-21T05:25:28Z | NONE | null | #### Code Sample
https://github.com/d6t/d6tstack/blob/master/examples-sql.ipynb
#### Problem description
In the example it currently takes 28s to upload data to an SQL database. With the d6stack implementation it only takes 4.7s with postgres and 7.1s with mysql which is 4 to 6 times faster than standard panda... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28817/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28817/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28818 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28818/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28818/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28818/events | https://github.com/pandas-dev/pandas/issues/28818 | 503,405,381 | MDU6SXNzdWU1MDM0MDUzODE= | 28,818 | read_csv improvement | {
"avatar_url": "https://avatars.githubusercontent.com/u/3863744?v=4",
"events_url": "https://api.github.com/users/jeremy-rutman/events{/privacy}",
"followers_url": "https://api.github.com/users/jeremy-rutman/followers",
"following_url": "https://api.github.com/users/jeremy-rutman/following{/other_user}",
"gi... | [] | closed | false | null | [] | {
"closed_at": null,
"closed_issues": 2361,
"created_at": "2015-02-26T19:29:05Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/1020496?v=4",
"events_url": "https://api.github.com/users/jorisvandenbossche/events{/privacy}",
"followers_url": "https://api.github.com/users/jorisva... | 6 | 2019-10-07T11:57:43Z | 2019-10-26T06:50:25Z | 2019-10-07T15:33:45Z | NONE | null | #### Code Sample, a copy-pastable example if possible
```python
df = pd.read_csv(f,sep='\t')
```
#### Problem description
Not so much a problem as a feature possibility - when reading without the encoding= parameter, the default can be made a bit smarter; since utf-16 seems to generally start with unique chara... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28818/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28818/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28819 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28819/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28819/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28819/events | https://github.com/pandas-dev/pandas/issues/28819 | 503,441,086 | MDU6SXNzdWU1MDM0NDEwODY= | 28,819 | DOC: fix code-block in the reshaping docs | {
"avatar_url": "https://avatars.githubusercontent.com/u/1020496?v=4",
"events_url": "https://api.github.com/users/jorisvandenbossche/events{/privacy}",
"followers_url": "https://api.github.com/users/jorisvandenbossche/followers",
"following_url": "https://api.github.com/users/jorisvandenbossche/following{/othe... | [
{
"color": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
},
{
"color": "0e8a16",
"default": true,
"description": null,
"id": 7171206... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 2 | 2019-10-07T13:07:42Z | 2019-10-16T16:24:58Z | 2019-10-16T16:24:58Z | MEMBER | null | The code block at this location:
https://dev.pandas.io/docs/user_guide/reshaping.html#pivoting-with-single-aggregations
is not rendered correctly, as we accidentally try to render it as a note. The `.. note::` should be replaced with `.. code-block::` | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28819/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28819/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28820 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28820/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28820/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28820/events | https://github.com/pandas-dev/pandas/pull/28820 | 503,465,148 | MDExOlB1bGxSZXF1ZXN0MzI1MzExODg4 | 28,820 | DOC: fix code-block in the reshaping docs | {
"avatar_url": "https://avatars.githubusercontent.com/u/9424617?v=4",
"events_url": "https://api.github.com/users/oktaysabak/events{/privacy}",
"followers_url": "https://api.github.com/users/oktaysabak/followers",
"following_url": "https://api.github.com/users/oktaysabak/following{/other_user}",
"gists_url":... | [
{
"color": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
}
] | closed | false | null | [] | null | 1 | 2019-10-07T13:49:14Z | 2019-10-08T08:42:16Z | 2019-10-08T08:41:36Z | CONTRIBUTOR | null | - [ x] closes #28819
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28820/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28820/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28820.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28820",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/28820.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28820"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28821 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28821/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28821/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28821/events | https://github.com/pandas-dev/pandas/issues/28821 | 503,481,496 | MDU6SXNzdWU1MDM0ODE0OTY= | 28,821 | Call .max method on two timezone datetime columns results in nan | {
"avatar_url": "https://avatars.githubusercontent.com/u/16750831?v=4",
"events_url": "https://api.github.com/users/albb318/events{/privacy}",
"followers_url": "https://api.github.com/users/albb318/followers",
"following_url": "https://api.github.com/users/albb318/following{/other_user}",
"gists_url": "https:... | [] | closed | false | null | [] | null | 1 | 2019-10-07T14:16:23Z | 2019-10-07T15:12:31Z | 2019-10-07T15:12:20Z | NONE | null | #### Code Sample, a copy-pastable example if possible
This works when comparing two non-timezone datetime columns
```python
a = pd.DataFrame(
{
"a": [pd.Timestamp("20180101"), np.nan],
"b": [pd.Timestamp("20190101"), pd.Timestamp("20190101")],
}
)
a.max(axis=1)
```
Output:
0 2019... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28821/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28821/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28822 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28822/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28822/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28822/events | https://github.com/pandas-dev/pandas/issues/28822 | 503,527,135 | MDU6SXNzdWU1MDM1MjcxMzU= | 28,822 | validate_docstrings.py as a separate package? | {
"avatar_url": "https://avatars.githubusercontent.com/u/630936?v=4",
"events_url": "https://api.github.com/users/rth/events{/privacy}",
"followers_url": "https://api.github.com/users/rth/followers",
"following_url": "https://api.github.com/users/rth/following{/other_user}",
"gists_url": "https://api.github.c... | [] | closed | false | null | [] | null | 5 | 2019-10-07T15:28:43Z | 2019-10-25T16:39:01Z | 2019-10-25T16:39:01Z | CONTRIBUTOR | null | The docstring validation script is quite nice! I would like to use it for instance to validate docsting in scikit-learn, e.g.
```
python pandas/scripts/validate_docstrings.py sklearn.linear_model.LinearRegression
```
works, but then is a bit more difficult to customize being pandas specific.
In particular it woul... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28822/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28822/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28823 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28823/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28823/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28823/events | https://github.com/pandas-dev/pandas/issues/28823 | 503,553,839 | MDU6SXNzdWU1MDM1NTM4Mzk= | 28,823 | Feature Request: Population Covariance Calculation with ddof parameter for DataFrame.cov() | {
"avatar_url": "https://avatars.githubusercontent.com/u/7686641?v=4",
"events_url": "https://api.github.com/users/chrisyeh96/events{/privacy}",
"followers_url": "https://api.github.com/users/chrisyeh96/followers",
"following_url": "https://api.github.com/users/chrisyeh96/following{/other_user}",
"gists_url":... | [
{
"color": "4E9A06",
"default": false,
"description": null,
"id": 76812,
"name": "Enhancement",
"node_id": "MDU6TGFiZWw3NjgxMg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Enhancement"
},
{
"color": "370f77",
"default": false,
"description": "DataFram... | closed | false | null | [] | {
"closed_at": "2020-07-28T18:13:47Z",
"closed_issues": 2378,
"created_at": "2019-12-02T12:52:48Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/j... | 4 | 2019-10-07T16:16:12Z | 2020-06-23T17:37:58Z | 2020-06-23T17:37:58Z | CONTRIBUTOR | null | I propose adding a `bias` parameter in [`DataFrame.cov()`](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.cov.html). Currently, Pandas v0.25.1 does not have such a parameter.
The default would be `bias=False`, which would compute sample covariance with a `N-1` factor in the denominator. ... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28823/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28823/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28824 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28824/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28824/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28824/events | https://github.com/pandas-dev/pandas/pull/28824 | 503,609,272 | MDExOlB1bGxSZXF1ZXN0MzI1NDI4MjE1 | 28,824 | TST: Update test in #28798 to use a Categorical | {
"avatar_url": "https://avatars.githubusercontent.com/u/26364415?v=4",
"events_url": "https://api.github.com/users/topper-123/events{/privacy}",
"followers_url": "https://api.github.com/users/topper-123/followers",
"following_url": "https://api.github.com/users/topper-123/following{/other_user}",
"gists_url"... | [
{
"color": "C4A000",
"default": false,
"description": "pandas testing functions or related to the test suite",
"id": 127685,
"name": "Testing",
"node_id": "MDU6TGFiZWwxMjc2ODU=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Testing"
},
{
"color": "729FCF",
"d... | closed | false | null | [] | null | 1 | 2019-10-07T18:13:09Z | 2019-10-08T06:23:15Z | 2019-10-08T06:23:10Z | CONTRIBUTOR | null | - [x] xref #28798
- [x] tests added / passed
- [x] passes `black pandas`
- [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry
I merged #28798 too fast, as the column "Name" wasn't a Categorical, which was to be tested. I've made it a Categorical and for good measure I've adde... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28824/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28824/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28824.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28824",
"merged_at": "2019-10-08T06:23:10Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28824.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28824"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28825 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28825/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28825/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28825/events | https://github.com/pandas-dev/pandas/issues/28825 | 503,655,240 | MDU6SXNzdWU1MDM2NTUyNDA= | 28,825 | UnsupportedOperation 'seek' when loading excel files from urllib3.response.HTTPResponse object | {
"avatar_url": "https://avatars.githubusercontent.com/u/4107500?v=4",
"events_url": "https://api.github.com/users/hellbe/events{/privacy}",
"followers_url": "https://api.github.com/users/hellbe/followers",
"following_url": "https://api.github.com/users/hellbe/following{/other_user}",
"gists_url": "https://ap... | [
{
"color": "e11d21",
"default": false,
"description": "Functionality that used to work in a prior pandas version",
"id": 32815646,
"name": "Regression",
"node_id": "MDU6TGFiZWwzMjgxNTY0Ng==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Regression"
},
{
"color": ... | closed | false | null | [] | null | 1 | 2019-10-07T19:51:03Z | 2019-10-18T09:44:17Z | 2019-10-18T09:44:16Z | NONE | null | 0.25.1 seems to have reintroduced #20434
**Update:** not the case, but the same problem happens when feeding `excel_read()` with an [urllib3.response.HTTPResponse](https://urllib3.readthedocs.io/en/latest/reference/#urllib3.response.HTTPResponse) object. Code sample updated.
#### Code Sample, a copy-pastable exa... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28825/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28825/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28826 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28826/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28826/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28826/events | https://github.com/pandas-dev/pandas/pull/28826 | 503,655,638 | MDExOlB1bGxSZXF1ZXN0MzI1NDY1Njc5 | 28,826 | BUG: Patch for skipping seek() when loading Excel files from urllib3.response.HTTPResponse object | {
"avatar_url": "https://avatars.githubusercontent.com/u/4107500?v=4",
"events_url": "https://api.github.com/users/hellbe/events{/privacy}",
"followers_url": "https://api.github.com/users/hellbe/followers",
"following_url": "https://api.github.com/users/hellbe/following{/other_user}",
"gists_url": "https://ap... | [
{
"color": "e11d21",
"default": false,
"description": "Functionality that used to work in a prior pandas version",
"id": 32815646,
"name": "Regression",
"node_id": "MDU6TGFiZWwzMjgxNTY0Ng==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Regression"
},
{
"color": ... | closed | false | null | [] | {
"closed_at": "2019-10-19T17:01:24Z",
"closed_issues": 52,
"created_at": "2019-08-23T11:48:40Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/1312546?v=4",
"events_url": "https://api.github.com/users/TomAugspurger/events{/privacy}",
"followers_url": "https://api.github.com/us... | 12 | 2019-10-07T19:51:44Z | 2019-10-11T14:38:25Z | 2019-10-11T14:38:25Z | NONE | null | - [ x] closes #28825
- [ ] tests added / passed
- [ ] passes `black pandas`
- [ ] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry
Discovered that 0.25.x reintroduces #20437. Proposing the same fix here. | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28826/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28826/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28826.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28826",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/28826.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28826"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28827 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28827/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28827/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28827/events | https://github.com/pandas-dev/pandas/issues/28827 | 503,656,027 | MDU6SXNzdWU1MDM2NTYwMjc= | 28,827 | Docs: Does pandas `.apply()` twice on first row, or not? | {
"avatar_url": "https://avatars.githubusercontent.com/u/11142944?v=4",
"events_url": "https://api.github.com/users/eric-downes/events{/privacy}",
"followers_url": "https://api.github.com/users/eric-downes/followers",
"following_url": "https://api.github.com/users/eric-downes/following{/other_user}",
"gists_u... | [
{
"color": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
},
{
"color": "fbca04",
"default": false,
"description": "Apply, Aggregate, Tra... | closed | false | null | [] | null | 4 | 2019-10-07T19:52:34Z | 2019-10-08T20:56:32Z | 2019-10-08T20:56:32Z | NONE | null | #### Code Sample
```python
import pandas as pd
df = pd.DataFrame({'a':list('abcdef')})
L = []
def fcn(x):
global L
L.append(x)
df.a.apply(fcn)
print(L)
# ['a', 'b', 'c', 'd', 'e', 'f']
L=[]
df.apply(lambda x: fcn(x.a), axis=1)
print(L)
# ['... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28827/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28827/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28828 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28828/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28828/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28828/events | https://github.com/pandas-dev/pandas/pull/28828 | 503,718,370 | MDExOlB1bGxSZXF1ZXN0MzI1NTE2OTAx | 28,828 | CLN: core.generic.NDFrame.astype | {
"avatar_url": "https://avatars.githubusercontent.com/u/13159005?v=4",
"events_url": "https://api.github.com/users/simonjayhawkins/events{/privacy}",
"followers_url": "https://api.github.com/users/simonjayhawkins/followers",
"following_url": "https://api.github.com/users/simonjayhawkins/following{/other_user}"... | [
{
"color": "e102d8",
"default": false,
"description": "Unexpected or buggy dtype conversions",
"id": 31404521,
"name": "Dtype Conversions",
"node_id": "MDU6TGFiZWwzMTQwNDUyMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Dtype%20Conversions"
},
{
"color": "207... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 2 | 2019-10-07T22:12:23Z | 2019-10-08T12:58:09Z | 2019-10-08T12:44:05Z | MEMBER | null | mypy error: `pandas\core\generic.py:5902: error: "append" of "list" does not return a value`
This does not actually manifest as a bug with the current implementation since `pd.concat` ignores `None`.
```python
>>> import pandas as pd
>>>
>>> pd.__version__
'0.26.0.dev0+498.gaf498fe8f'
>>>
>>> d = {'col1': [... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28828/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28828/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28828.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28828",
"merged_at": "2019-10-08T12:44:05Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28828.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28828"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28829 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28829/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28829/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28829/events | https://github.com/pandas-dev/pandas/issues/28829 | 503,730,763 | MDU6SXNzdWU1MDM3MzA3NjM= | 28,829 | CI failing Linux py36_32bit | {
"avatar_url": "https://avatars.githubusercontent.com/u/13159005?v=4",
"events_url": "https://api.github.com/users/simonjayhawkins/events{/privacy}",
"followers_url": "https://api.github.com/users/simonjayhawkins/followers",
"following_url": "https://api.github.com/users/simonjayhawkins/following{/other_user}"... | [
{
"color": "a2bca7",
"default": false,
"description": "Continuous Integration",
"id": 48070600,
"name": "CI",
"node_id": "MDU6TGFiZWw0ODA3MDYwMA==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/CI"
},
{
"color": "d93f0b",
"default": false,
"description": ... | closed | false | null | [] | null | 0 | 2019-10-07T22:48:36Z | 2019-10-07T23:58:20Z | 2019-10-07T23:58:20Z | MEMBER | null | https://dev.azure.com/pandas-dev/pandas/_build/results?buildId=18548
attrs 19.1 -> 19.2
https://github.com/pytest-dev/pytest/issues/5903
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28829/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28829/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28830 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28830/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28830/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28830/events | https://github.com/pandas-dev/pandas/pull/28830 | 503,734,558 | MDExOlB1bGxSZXF1ZXN0MzI1NTI5Njk5 | 28,830 | troubleshoot CI failing Linux py36_32bit | {
"avatar_url": "https://avatars.githubusercontent.com/u/13159005?v=4",
"events_url": "https://api.github.com/users/simonjayhawkins/events{/privacy}",
"followers_url": "https://api.github.com/users/simonjayhawkins/followers",
"following_url": "https://api.github.com/users/simonjayhawkins/following{/other_user}"... | [
{
"color": "a2bca7",
"default": false,
"description": "Continuous Integration",
"id": 48070600,
"name": "CI",
"node_id": "MDU6TGFiZWw0ODA3MDYwMA==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/CI"
},
{
"color": "d93f0b",
"default": false,
"description": ... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 5 | 2019-10-07T23:00:15Z | 2019-10-15T12:39:52Z | 2019-10-07T23:58:20Z | MEMBER | null | closes #28829 | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28830/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28830/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28830.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28830",
"merged_at": "2019-10-07T23:58:20Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28830.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28830"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28831 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28831/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28831/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28831/events | https://github.com/pandas-dev/pandas/pull/28831 | 503,744,090 | MDExOlB1bGxSZXF1ZXN0MzI1NTM3NTU4 | 28,831 | Make package PEP 561 compatible | {
"avatar_url": "https://avatars.githubusercontent.com/u/30480807?v=4",
"events_url": "https://api.github.com/users/c4f3a0ce/events{/privacy}",
"followers_url": "https://api.github.com/users/c4f3a0ce/followers",
"following_url": "https://api.github.com/users/c4f3a0ce/following{/other_user}",
"gists_url": "htt... | [
{
"color": "ea91a4",
"default": false,
"description": "type annotations, mypy/pyright type checking",
"id": 1280988427,
"name": "Typing",
"node_id": "MDU6TGFiZWwxMjgwOTg4NDI3",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Typing"
}
] | closed | false | null | [] | null | 10 | 2019-10-07T23:31:53Z | 2019-10-08T23:31:32Z | 2019-10-08T23:31:32Z | NONE | null | Pandas has growing number of type annotations but these are not properly advertised to type checking tools. According to [PEP 561](https://www.python.org/dev/peps/pep-0561/) packages providing annotations should contain `py.typed` files in corresponding packages.
`py.typed` is applied recursively, if placed in the r... | {
"+1": 1,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 1,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28831/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28831/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28831.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28831",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/28831.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28831"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28832 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28832/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28832/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28832/events | https://github.com/pandas-dev/pandas/pull/28832 | 503,783,212 | MDExOlB1bGxSZXF1ZXN0MzI1NTY4MjIz | 28,832 | TST: port tests from #23982 | {
"avatar_url": "https://avatars.githubusercontent.com/u/8078968?v=4",
"events_url": "https://api.github.com/users/jbrockmendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jbrockmendel/followers",
"following_url": "https://api.github.com/users/jbrockmendel/following{/other_user}",
"gists... | [
{
"color": "C4A000",
"default": false,
"description": "pandas testing functions or related to the test suite",
"id": 127685,
"name": "Testing",
"node_id": "MDU6TGFiZWwxMjc2ODU=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Testing"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 1 | 2019-10-08T02:10:39Z | 2019-10-08T14:25:48Z | 2019-10-08T12:11:04Z | MEMBER | null | I think this finishes the porting of the tests commented "placeholder due to too many xfails". going to plow through existing (and newly added) xfails in separate branch(es) | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28832/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28832/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28832.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28832",
"merged_at": "2019-10-08T12:11:03Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28832.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28832"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28833 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28833/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28833/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28833/events | https://github.com/pandas-dev/pandas/pull/28833 | 503,796,122 | MDExOlB1bGxSZXF1ZXN0MzI1NTc3NzU2 | 28,833 | TST: fix 24 xfails in maybe_promote | {
"avatar_url": "https://avatars.githubusercontent.com/u/8078968?v=4",
"events_url": "https://api.github.com/users/jbrockmendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jbrockmendel/followers",
"following_url": "https://api.github.com/users/jbrockmendel/following{/other_user}",
"gists... | [
{
"color": "C4A000",
"default": false,
"description": "pandas testing functions or related to the test suite",
"id": 127685,
"name": "Testing",
"node_id": "MDU6TGFiZWwxMjc2ODU=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Testing"
},
{
"color": "e102d8",
"d... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 3 | 2019-10-08T03:01:42Z | 2019-10-08T21:24:12Z | 2019-10-08T21:21:50Z | MEMBER | null | Vague gameplan: I think I've got a handle on the `if not boxed` xfail tests that are left, will incrementally fix them over a few more steps. Then the `if boxed` cases all correspond to passing `ndarray` for `fill_value`, which never happens in the tests except for dedicated tests designed to do exactly that. If we c... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28833/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28833/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28833.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28833",
"merged_at": "2019-10-08T21:21:50Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28833.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28833"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28834 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28834/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28834/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28834/events | https://github.com/pandas-dev/pandas/pull/28834 | 503,834,119 | MDExOlB1bGxSZXF1ZXN0MzI1NjA2Mjcz | 28,834 | BUG: Appending empty list to DataFrame #28769 | {
"avatar_url": "https://avatars.githubusercontent.com/u/1978117?v=4",
"events_url": "https://api.github.com/users/asishm/events{/privacy}",
"followers_url": "https://api.github.com/users/asishm/followers",
"following_url": "https://api.github.com/users/asishm/following{/other_user}",
"gists_url": "https://ap... | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "02d7e1",
"default": false,
"description": "Concat, Merge/Join, Stac... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 8 | 2019-10-08T05:26:25Z | 2019-11-19T15:53:23Z | 2019-11-16T21:35:56Z | CONTRIBUTOR | null | - [x] closes #28769
- [x] tests added / passed
- [x] passes `black pandas`
- [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [x] whatsnew entry
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28834/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28834/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28834.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28834",
"merged_at": "2019-11-16T21:35:55Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28834.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28834"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28835 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28835/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28835/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28835/events | https://github.com/pandas-dev/pandas/pull/28835 | 503,836,888 | MDExOlB1bGxSZXF1ZXN0MzI1NjA4NDIx | 28,835 | Remove NDFrameGroupBy Class | {
"avatar_url": "https://avatars.githubusercontent.com/u/609873?v=4",
"events_url": "https://api.github.com/users/WillAyd/events{/privacy}",
"followers_url": "https://api.github.com/users/WillAyd/followers",
"following_url": "https://api.github.com/users/WillAyd/following{/other_user}",
"gists_url": "https://... | [
{
"color": "FCE94F",
"default": false,
"description": "Internal refactoring of code",
"id": 127681,
"name": "Refactor",
"node_id": "MDU6TGFiZWwxMjc2ODE=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Refactor"
},
{
"color": "729FCF",
"default": false,
"de... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 5 | 2019-10-08T05:35:22Z | 2020-01-16T00:33:51Z | 2019-10-08T12:33:47Z | MEMBER | null | Was going to do a larger refactor but this diff looks more confusing than it actually is, so figured I'd stop here for readability. All I've done in this PR is:
- Remove NDFrameGroupBy, consolidating it's methods into DataFrameGroupBy
- Merge NDFrameGroupBy.aggregate into DataFrameGroupBy.aggregate (the latter ... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28835/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28835/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28835.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28835",
"merged_at": "2019-10-08T12:33:47Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28835.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28835"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28836 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28836/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28836/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28836/events | https://github.com/pandas-dev/pandas/issues/28836 | 503,856,881 | MDU6SXNzdWU1MDM4NTY4ODE= | 28,836 | NameError: name 'tempita' is not defined when building extensions with old cython | {
"avatar_url": "https://avatars.githubusercontent.com/u/1224492?v=4",
"events_url": "https://api.github.com/users/toobaz/events{/privacy}",
"followers_url": "https://api.github.com/users/toobaz/followers",
"following_url": "https://api.github.com/users/toobaz/following{/other_user}",
"gists_url": "https://ap... | [
{
"color": "75507B",
"default": false,
"description": "Library building on various platforms",
"id": 129350,
"name": "Build",
"node_id": "MDU6TGFiZWwxMjkzNTA=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Build"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 10 | 2019-10-08T06:35:39Z | 2019-12-27T14:41:16Z | 2019-12-27T14:41:05Z | MEMBER | null | #### Code Sample, a copy-pastable example if possible
```python
pietro@debiousci:~/nobackup/repo/pandas_temp$ python3 setup.py build_ext --inplace
Traceback (most recent call last):
File "setup.py", line 813, in <module>
ext_modules=maybe_cythonize(extensions, compiler_directives=directives),
File "set... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28836/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28836/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28837 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28837/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28837/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28837/events | https://github.com/pandas-dev/pandas/issues/28837 | 503,897,082 | MDU6SXNzdWU1MDM4OTcwODI= | 28,837 | df.loc modifies datetime columns | {
"avatar_url": "https://avatars.githubusercontent.com/u/1709305?v=4",
"events_url": "https://api.github.com/users/bdepardo/events{/privacy}",
"followers_url": "https://api.github.com/users/bdepardo/followers",
"following_url": "https://api.github.com/users/bdepardo/following{/other_user}",
"gists_url": "http... | [
{
"color": "0e8a16",
"default": true,
"description": null,
"id": 717120670,
"name": "good first issue",
"node_id": "MDU6TGFiZWw3MTcxMjA2NzA=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/good%20first%20issue"
},
{
"color": "cdea3c",
"default": false,
"de... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 5 | 2019-10-08T08:18:09Z | 2019-10-29T06:02:28Z | 2019-10-29T06:02:28Z | NONE | null | #### Code Sample, a copy-pastable example if possible
```python
# Your code here
>>> df = pd.DataFrame.from_dict({"date": [1485264372711, 1485265925110, 1540215845888, 1540282121025]})
>>> df["date_dt"] = pd.to_datetime(df["date"], unit='ms', cache=True)
>>> df
date date_dt
0 14852... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28837/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28837/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28838 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28838/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28838/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28838/events | https://github.com/pandas-dev/pandas/pull/28838 | 503,906,945 | MDExOlB1bGxSZXF1ZXN0MzI1NjYxNTc4 | 28,838 | DOC: fix code-block in the reshaping docs | {
"avatar_url": "https://avatars.githubusercontent.com/u/9424617?v=4",
"events_url": "https://api.github.com/users/oktaysabak/events{/privacy}",
"followers_url": "https://api.github.com/users/oktaysabak/followers",
"following_url": "https://api.github.com/users/oktaysabak/following{/other_user}",
"gists_url":... | [
{
"color": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 9 | 2019-10-08T08:38:48Z | 2020-01-31T07:39:17Z | 2019-10-16T16:24:58Z | CONTRIBUTOR | null | - [x] closes #28819
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28838/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28838/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28838.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28838",
"merged_at": "2019-10-16T16:24:58Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28838.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28838"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28839 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28839/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28839/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28839/events | https://github.com/pandas-dev/pandas/issues/28839 | 503,956,960 | MDU6SXNzdWU1MDM5NTY5NjA= | 28,839 | BUG: DataFrame.equals() wrongly returns True in case of identical blocks with different locations | {
"avatar_url": "https://avatars.githubusercontent.com/u/20040007?v=4",
"events_url": "https://api.github.com/users/SadanLucifer/events{/privacy}",
"followers_url": "https://api.github.com/users/SadanLucifer/followers",
"following_url": "https://api.github.com/users/SadanLucifer/following{/other_user}",
"gist... | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 8 | 2019-10-08T10:18:37Z | 2019-11-19T13:31:13Z | 2019-11-19T13:31:13Z | NONE | null | #### Code Sample, a copy-pastable example if possible
```python
version: 3.6.8
# Your code here
df3 = pd.DataFrame({'a': [1, 2], 'b': ['s', 'd']})
df4 = pd.DataFrame({'a': ['s', 'd'], 'b': [1, 2]})
df3.equals(df4)
```
#### Problem description
 | {
"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{/othe... | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "6138b5",
"default": false,
"description": "Extending pandas with cu... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 0 | 2019-10-08T13:49:35Z | 2019-10-14T23:33:48Z | 2019-10-14T23:33:48Z | MEMBER | null | From a report at GeoPandas: https://github.com/geopandas/geopandas/issues/1145
Explanation: assume you have an ExtensionArray with list-like values (eg with an object numpy array with lists under the hood). When calling, `to_csv`, which goes through `Block.to_native_types`, we convert this to a numpy array and call ... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28840/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28840/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28841 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28841/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28841/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28841/events | https://github.com/pandas-dev/pandas/pull/28841 | 504,060,393 | MDExOlB1bGxSZXF1ZXN0MzI1Nzg1MDc2 | 28,841 | BUG: use EA.astype in ExtensionBlock.to_native_types | {
"avatar_url": "https://avatars.githubusercontent.com/u/1020496?v=4",
"events_url": "https://api.github.com/users/jorisvandenbossche/events{/privacy}",
"followers_url": "https://api.github.com/users/jorisvandenbossche/followers",
"following_url": "https://api.github.com/users/jorisvandenbossche/following{/othe... | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "6138b5",
"default": false,
"description": "Extending pandas with cu... | closed | false | null | [] | {
"closed_at": "2019-10-19T17:01:24Z",
"closed_issues": 52,
"created_at": "2019-08-23T11:48:40Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/1312546?v=4",
"events_url": "https://api.github.com/users/TomAugspurger/events{/privacy}",
"followers_url": "https://api.github.com/us... | 17 | 2019-10-08T13:56:19Z | 2019-10-15T02:38:40Z | 2019-10-14T23:33:48Z | MEMBER | null | Closes https://github.com/pandas-dev/pandas/issues/28840
This implements a `ExtensionBlock.to_native_types` to override the base class which converts to a numpy array.
To test this is a bit tricky. The current JSONArray we have in the extension tests does not have this issue. I would need to implement and add tes... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28841/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28841/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28841.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28841",
"merged_at": "2019-10-14T23:33:47Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28841.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28841"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28842 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28842/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28842/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28842/events | https://github.com/pandas-dev/pandas/issues/28842 | 504,064,421 | MDU6SXNzdWU1MDQwNjQ0MjE= | 28,842 | Migrate 32-bit linux build | {
"avatar_url": "https://avatars.githubusercontent.com/u/1312546?v=4",
"events_url": "https://api.github.com/users/TomAugspurger/events{/privacy}",
"followers_url": "https://api.github.com/users/TomAugspurger/followers",
"following_url": "https://api.github.com/users/TomAugspurger/following{/other_user}",
"gi... | [
{
"color": "a2bca7",
"default": false,
"description": "Continuous Integration",
"id": 48070600,
"name": "CI",
"node_id": "MDU6TGFiZWw0ODA3MDYwMA==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/CI"
}
] | open | false | null | [] | {
"closed_at": null,
"closed_issues": 278,
"created_at": "2013-01-06T03:02:01Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"f... | 1 | 2019-10-08T14:02:46Z | 2019-10-08T15:13:24Z | null | CONTRIBUTOR | null | Right now our 32-bit build only happens on a Linux VM in azure pipelines. Anaconda no longer builds 32-bit linux packages, and conda-forge never built 32-bit packages. So that build is likely to cause problems over time.
We should migrate to either
1. Use a 32-bit windows build, which Anaconda still builds packag... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28842/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28842/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28843 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28843/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28843/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28843/events | https://github.com/pandas-dev/pandas/issues/28843 | 504,074,780 | MDU6SXNzdWU1MDQwNzQ3ODA= | 28,843 | [TYPING] pandas.io.formats.format._binify annotation is inconsistent with DataFrameFormatter.__init__ | {
"avatar_url": "https://avatars.githubusercontent.com/u/1554276?v=4",
"events_url": "https://api.github.com/users/zero323/events{/privacy}",
"followers_url": "https://api.github.com/users/zero323/followers",
"following_url": "https://api.github.com/users/zero323/following{/other_user}",
"gists_url": "https:/... | [
{
"color": "ea91a4",
"default": false,
"description": "type annotations, mypy/pyright type checking",
"id": 1280988427,
"name": "Typing",
"node_id": "MDU6TGFiZWwxMjgwOTg4NDI3",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Typing"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 13 | 2019-10-08T14:20:16Z | 2019-10-11T12:41:20Z | 2019-10-11T12:41:20Z | NONE | null | #### Problem description
`pd.io.formats.format._binify` defines `line_width` as `Union[np.int32, int]`:
https://github.com/pandas-dev/pandas/blob/39602e7d7c5b663696f5a6eca9e66e65483bc868/pandas/io/formats/format.py#L1893
however it is inconsistent with `DataFrameFormatter.__init__`
https://github.com/panda... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28843/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28843/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28844 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28844/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28844/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28844/events | https://github.com/pandas-dev/pandas/pull/28844 | 504,095,409 | MDExOlB1bGxSZXF1ZXN0MzI1ODEzNDcw | 28,844 | TST: Improve compatibility with pypy error messages | {
"avatar_url": "https://avatars.githubusercontent.com/u/142362?v=4",
"events_url": "https://api.github.com/users/rlamy/events{/privacy}",
"followers_url": "https://api.github.com/users/rlamy/followers",
"following_url": "https://api.github.com/users/rlamy/following{/other_user}",
"gists_url": "https://api.gi... | [
{
"color": "C4A000",
"default": false,
"description": "pandas testing functions or related to the test suite",
"id": 127685,
"name": "Testing",
"node_id": "MDU6TGFiZWwxMjc2ODU=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Testing"
},
{
"color": "ffa0ff",
"d... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 7 | 2019-10-08T14:54:12Z | 2019-10-08T21:00:23Z | 2019-10-08T21:00:23Z | CONTRIBUTOR | null | This fixes a bunch of spurious errors when running the test suite on pypy3.
- [ ] closes #xxxx
- [ ] tests added / passed
- [x] passes `black pandas`
- [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28844/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28844/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28844.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28844",
"merged_at": "2019-10-08T21:00:23Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28844.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28844"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28845 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28845/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28845/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28845/events | https://github.com/pandas-dev/pandas/pull/28845 | 504,101,021 | MDExOlB1bGxSZXF1ZXN0MzI1ODE4MDky | 28,845 | DOC: Fixed PR08 and PR09 docstring errors in pandas.Series | {
"avatar_url": "https://avatars.githubusercontent.com/u/36764552?v=4",
"events_url": "https://api.github.com/users/jackbicknell14/events{/privacy}",
"followers_url": "https://api.github.com/users/jackbicknell14/followers",
"following_url": "https://api.github.com/users/jackbicknell14/following{/other_user}",
... | [
{
"color": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
}
] | closed | false | null | [] | null | 1 | 2019-10-08T15:03:03Z | 2019-10-14T02:39:12Z | 2019-10-14T02:39:00Z | CONTRIBUTOR | null | Fixed all PR08 and PR09 issues in pandas.Series.
- [x] closes [#28738](https://github.com/pandas-dev/pandas/issues/28738)
- [x] passes `black pandas`
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28845/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28845/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28845.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28845",
"merged_at": "2019-10-14T02:39:00Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28845.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28845"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28846 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28846/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28846/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28846/events | https://github.com/pandas-dev/pandas/issues/28846 | 504,103,657 | MDU6SXNzdWU1MDQxMDM2NTc= | 28,846 | STY: # TODO, # FIXME, # XXX, others? | {
"avatar_url": "https://avatars.githubusercontent.com/u/8078968?v=4",
"events_url": "https://api.github.com/users/jbrockmendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jbrockmendel/followers",
"following_url": "https://api.github.com/users/jbrockmendel/following{/other_user}",
"gists... | [
{
"color": "eb6420",
"default": false,
"description": "Code style, linting, code_checks",
"id": 106935113,
"name": "Code Style",
"node_id": "MDU6TGFiZWwxMDY5MzUxMTM=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Code%20Style"
},
{
"color": "207de5",
"default... | closed | false | null | [] | null | 2 | 2019-10-08T15:07:28Z | 2019-11-05T22:02:11Z | 2019-11-05T22:02:11Z | MEMBER | null | When looking for things that need attention, I usually grep for `# FIXME:` followed by `# TODO`. But every so often I see a `# XXX: ` which will be missed by this heuristic. This raises two questions:
1) Are there other common usages besides "XXX" that I'm not aware of?
2) Should we standardize on some usage patt... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28846/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28846/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28847 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28847/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28847/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28847/events | https://github.com/pandas-dev/pandas/pull/28847 | 504,136,144 | MDExOlB1bGxSZXF1ZXN0MzI1ODQ2ODg1 | 28,847 | Clean up Abstract and Naming Definitions for GroupBy | {
"avatar_url": "https://avatars.githubusercontent.com/u/609873?v=4",
"events_url": "https://api.github.com/users/WillAyd/events{/privacy}",
"followers_url": "https://api.github.com/users/WillAyd/followers",
"following_url": "https://api.github.com/users/WillAyd/following{/other_user}",
"gists_url": "https://... | [
{
"color": "FCE94F",
"default": false,
"description": "Internal refactoring of code",
"id": 127681,
"name": "Refactor",
"node_id": "MDU6TGFiZWwxMjc2ODE=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Refactor"
},
{
"color": "729FCF",
"default": false,
"de... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 4 | 2019-10-08T16:03:25Z | 2019-10-08T21:25:18Z | 2019-10-08T21:24:17Z | MEMBER | null | Summary of changes:
- Made `_iterate_slices` abstract in base class, moved pre-existing definition from Base -> Series where it was actually being called (DataFrame already overrides)
- Made `_wrap_transformed_output` Abstract in base class, as both Series and DataFrame override this
- Redefined `_wrap_appli... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28847/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28847/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28847.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28847",
"merged_at": "2019-10-08T21:24:17Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28847.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28847"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28848 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28848/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28848/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28848/events | https://github.com/pandas-dev/pandas/pull/28848 | 504,147,713 | MDExOlB1bGxSZXF1ZXN0MzI1ODU2NDY3 | 28,848 | CLN: Assorted cleanups | {
"avatar_url": "https://avatars.githubusercontent.com/u/8078968?v=4",
"events_url": "https://api.github.com/users/jbrockmendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jbrockmendel/followers",
"following_url": "https://api.github.com/users/jbrockmendel/following{/other_user}",
"gists... | [
{
"color": "207de5",
"default": false,
"description": null,
"id": 211029535,
"name": "Clean",
"node_id": "MDU6TGFiZWwyMTEwMjk1MzU=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Clean"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 2 | 2019-10-08T16:26:03Z | 2019-10-08T21:26:05Z | 2019-10-08T21:23:31Z | MEMBER | null | By far the largest component of the diff is removing `from numpy import nan` imports and enabling the corresponding code-check.
Other than that there are a handful of cleanups, typings, docstring, and error message improvements collected from orphan branches locally. | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28848/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28848/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28848.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28848",
"merged_at": "2019-10-08T21:23:31Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28848.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28848"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28849 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28849/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28849/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28849/events | https://github.com/pandas-dev/pandas/pull/28849 | 504,155,210 | MDExOlB1bGxSZXF1ZXN0MzI1ODYyNTA2 | 28,849 | [MINOR] Fix formatting string in _ODFReader.get_sheet_by_name | {
"avatar_url": "https://avatars.githubusercontent.com/u/1554276?v=4",
"events_url": "https://api.github.com/users/zero323/events{/privacy}",
"followers_url": "https://api.github.com/users/zero323/followers",
"following_url": "https://api.github.com/users/zero323/following{/other_user}",
"gists_url": "https:/... | [] | closed | false | null | [] | null | 5 | 2019-10-08T16:41:00Z | 2019-10-08T17:51:40Z | 2019-10-08T16:49:33Z | NONE | null | This PR fixes minor problem with `_ODFReader.get_sheet_by_name` method.
If `name` is not found, it attempts to raise a `ValueError` with formatted string that expects keyword argument `name`, however `names` is passed as a positional argument. In effect it will throw unexpected `KeyError`.
Steps to reproduce th... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28849/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28849/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28849.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28849",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/28849.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28849"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28850 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28850/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28850/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28850/events | https://github.com/pandas-dev/pandas/pull/28850 | 504,166,556 | MDExOlB1bGxSZXF1ZXN0MzI1ODcxNzYx | 28,850 | TST: un-xfail 1 passing maybe_promote test | {
"avatar_url": "https://avatars.githubusercontent.com/u/8078968?v=4",
"events_url": "https://api.github.com/users/jbrockmendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jbrockmendel/followers",
"following_url": "https://api.github.com/users/jbrockmendel/following{/other_user}",
"gists... | [
{
"color": "C4A000",
"default": false,
"description": "pandas testing functions or related to the test suite",
"id": 127685,
"name": "Testing",
"node_id": "MDU6TGFiZWwxMjc2ODU=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Testing"
},
{
"color": "207de5",
"d... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 0 | 2019-10-08T17:05:03Z | 2019-10-08T21:06:02Z | 2019-10-08T20:55:02Z | MEMBER | null | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28850/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28850/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28850.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28850",
"merged_at": "2019-10-08T20:55:02Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28850.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28850"
} | |
https://api.github.com/repos/pandas-dev/pandas/issues/28851 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28851/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28851/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28851/events | https://github.com/pandas-dev/pandas/issues/28851 | 504,170,410 | MDU6SXNzdWU1MDQxNzA0MTA= | 28,851 | Support for Nested HTML Tables? | {
"avatar_url": "https://avatars.githubusercontent.com/u/2942215?v=4",
"events_url": "https://api.github.com/users/smsaladi/events{/privacy}",
"followers_url": "https://api.github.com/users/smsaladi/followers",
"following_url": "https://api.github.com/users/smsaladi/following{/other_user}",
"gists_url": "http... | [
{
"color": "4E9A06",
"default": false,
"description": null,
"id": 76812,
"name": "Enhancement",
"node_id": "MDU6TGFiZWw3NjgxMg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Enhancement"
},
{
"color": "006b75",
"default": false,
"description": "read_htm... | closed | false | null | [] | {
"closed_at": null,
"closed_issues": 2361,
"created_at": "2015-02-26T19:29:05Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/1020496?v=4",
"events_url": "https://api.github.com/users/jorisvandenbossche/events{/privacy}",
"followers_url": "https://api.github.com/users/jorisva... | 4 | 2019-10-08T17:13:40Z | 2020-01-01T16:02:32Z | 2020-01-01T15:59:36Z | CONTRIBUTOR | null | #### Problem description
Sometimes I encounter html tables that I need to parse where cells contain full-tables themselves. When using `pd.read_html` itself, this does not work quite that well. With a simple call to pd.read_html, each of these nested tables are parsed and then "inserted"/"concatenated" as rows.
`... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28851/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28851/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28852 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28852/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28852/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28852/events | https://github.com/pandas-dev/pandas/pull/28852 | 504,189,823 | MDExOlB1bGxSZXF1ZXN0MzI1ODkwNTYx | 28,852 | TST: Fix not-boxed maybe_promote test | {
"avatar_url": "https://avatars.githubusercontent.com/u/8078968?v=4",
"events_url": "https://api.github.com/users/jbrockmendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jbrockmendel/followers",
"following_url": "https://api.github.com/users/jbrockmendel/following{/other_user}",
"gists... | [
{
"color": "e102d8",
"default": false,
"description": "Unexpected or buggy dtype conversions",
"id": 31404521,
"name": "Dtype Conversions",
"node_id": "MDU6TGFiZWwzMTQwNDUyMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Dtype%20Conversions"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 2 | 2019-10-08T17:56:04Z | 2019-10-08T21:33:31Z | 2019-10-08T21:21:13Z | MEMBER | null | Along with #28833 this gets close to finishing off the not-boxed cases | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28852/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28852/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28852.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28852",
"merged_at": "2019-10-08T21:21:13Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28852.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28852"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28853 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28853/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28853/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28853/events | https://github.com/pandas-dev/pandas/pull/28853 | 504,201,036 | MDExOlB1bGxSZXF1ZXN0MzI1ODk5NzM4 | 28,853 | CLN: dont catch Exception on reindex_multi | {
"avatar_url": "https://avatars.githubusercontent.com/u/8078968?v=4",
"events_url": "https://api.github.com/users/jbrockmendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jbrockmendel/followers",
"following_url": "https://api.github.com/users/jbrockmendel/following{/other_user}",
"gists... | [
{
"color": "207de5",
"default": false,
"description": null,
"id": 71268330,
"name": "MultiIndex",
"node_id": "MDU6TGFiZWw3MTI2ODMzMA==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/MultiIndex"
},
{
"color": "207de5",
"default": false,
"description": null... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 2 | 2019-10-08T18:20:00Z | 2019-10-11T15:54:38Z | 2019-10-11T15:50:18Z | MEMBER | null | @toobaz any guesses what this might have been intended to catch? | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28853/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28853/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28853.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28853",
"merged_at": "2019-10-11T15:50:18Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28853.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28853"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28854 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28854/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28854/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28854/events | https://github.com/pandas-dev/pandas/pull/28854 | 504,208,358 | MDExOlB1bGxSZXF1ZXN0MzI1OTA1Nzcy | 28,854 | remove doc note about apply applying a function to the first element … | {
"avatar_url": "https://avatars.githubusercontent.com/u/22876178?v=4",
"events_url": "https://api.github.com/users/tlynch1315/events{/privacy}",
"followers_url": "https://api.github.com/users/tlynch1315/followers",
"following_url": "https://api.github.com/users/tlynch1315/following{/other_user}",
"gists_url"... | [
{
"color": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 1 | 2019-10-08T18:35:16Z | 2019-10-08T20:56:40Z | 2019-10-08T20:56:32Z | CONTRIBUTOR | null | …twice
- [x] closes #28827
- [ ] tests added / passed
- [ ] passes `black pandas`
- [ ] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28854/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28854/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28854.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28854",
"merged_at": "2019-10-08T20:56:32Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28854.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28854"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28855 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28855/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28855/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28855/events | https://github.com/pandas-dev/pandas/issues/28855 | 504,210,716 | MDU6SXNzdWU1MDQyMTA3MTY= | 28,855 | Pandas Documentation: PDF formatting/organization | {
"avatar_url": "https://avatars.githubusercontent.com/u/12225696?v=4",
"events_url": "https://api.github.com/users/aefferent/events{/privacy}",
"followers_url": "https://api.github.com/users/aefferent/followers",
"following_url": "https://api.github.com/users/aefferent/following{/other_user}",
"gists_url": "... | [
{
"color": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
}
] | closed | false | null | [] | null | 2 | 2019-10-08T18:40:19Z | 2019-10-11T09:58:11Z | 2019-10-10T20:26:34Z | NONE | null | Would it be possible to have a proper table of contents and index added to the pdf version of the documentation? The pdf doc for verion 0.25.1 has a section labeled contents; however, the TOC is missing. Also, consider relagating the previous version documentation to an appendix this would allow a inclusion of an index... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28855/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28855/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28856 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28856/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28856/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28856/events | https://github.com/pandas-dev/pandas/pull/28856 | 504,214,388 | MDExOlB1bGxSZXF1ZXN0MzI1OTEwNjQ4 | 28,856 | TST: un-xfail 22 maybe_promote tests | {
"avatar_url": "https://avatars.githubusercontent.com/u/8078968?v=4",
"events_url": "https://api.github.com/users/jbrockmendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jbrockmendel/followers",
"following_url": "https://api.github.com/users/jbrockmendel/following{/other_user}",
"gists... | [
{
"color": "e102d8",
"default": false,
"description": "Unexpected or buggy dtype conversions",
"id": 31404521,
"name": "Dtype Conversions",
"node_id": "MDU6TGFiZWwzMTQwNDUyMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Dtype%20Conversions"
},
{
"color": "207... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 1 | 2019-10-08T18:48:11Z | 2019-10-08T21:07:44Z | 2019-10-08T20:58:00Z | MEMBER | null | orthogonal to other outstanding PRs in this file | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28856/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28856/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28856.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28856",
"merged_at": "2019-10-08T20:58:00Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28856.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28856"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28857 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28857/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28857/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28857/events | https://github.com/pandas-dev/pandas/pull/28857 | 504,267,658 | MDExOlB1bGxSZXF1ZXN0MzI1OTUzOTUz | 28,857 | CLN: assorted cleanups, mostly post-black fixups | {
"avatar_url": "https://avatars.githubusercontent.com/u/8078968?v=4",
"events_url": "https://api.github.com/users/jbrockmendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jbrockmendel/followers",
"following_url": "https://api.github.com/users/jbrockmendel/following{/other_user}",
"gists... | [
{
"color": "207de5",
"default": false,
"description": null,
"id": 211029535,
"name": "Clean",
"node_id": "MDU6TGFiZWwyMTEwMjk1MzU=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Clean"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 3 | 2019-10-08T20:40:03Z | 2019-10-11T18:35:24Z | 2019-10-11T18:15:35Z | MEMBER | null | Mostly fixing extra " " introduced by black (will take a look at the issue tracker there to see if that can be fixed once and for all).
Also change `except Foo as e:` to `except Foo as err` and remove one `except Exception` in a docs file. Clarified a whatsnew note that @jorisvandenbossche asked for a while back. | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28857/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28857/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28857.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28857",
"merged_at": "2019-10-11T18:15:35Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28857.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28857"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28858 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28858/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28858/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28858/events | https://github.com/pandas-dev/pandas/pull/28858 | 504,288,187 | MDExOlB1bGxSZXF1ZXN0MzI1OTcwODcz | 28,858 | DOC: Fix missing periods and non capitalized summary beginnings (#27977) | {
"avatar_url": "https://avatars.githubusercontent.com/u/11663234?v=4",
"events_url": "https://api.github.com/users/DanBenHa/events{/privacy}",
"followers_url": "https://api.github.com/users/DanBenHa/followers",
"following_url": "https://api.github.com/users/DanBenHa/following{/other_user}",
"gists_url": "htt... | [
{
"color": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 2 | 2019-10-08T21:26:02Z | 2019-10-09T07:38:05Z | 2019-10-09T07:37:50Z | CONTRIBUTOR | null | - [ ] closes #27977
- [ ] tests added / passed
- [x] passes `black pandas`
- [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry
Fixed for the following functions
`pandas.io.formats.style.Styler.set_caption
pandas.plotting.table
pandas.plotting.register_matplotlib_converte... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28858/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28858/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28858.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28858",
"merged_at": "2019-10-09T07:37:50Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28858.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28858"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28859 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28859/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28859/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28859/events | https://github.com/pandas-dev/pandas/pull/28859 | 504,295,127 | MDExOlB1bGxSZXF1ZXN0MzI1OTc2Mzg0 | 28,859 | ENH: Add optional argument keep_index to dataframe melt method (merged master onto old PR) | {
"avatar_url": "https://avatars.githubusercontent.com/u/2942215?v=4",
"events_url": "https://api.github.com/users/smsaladi/events{/privacy}",
"followers_url": "https://api.github.com/users/smsaladi/followers",
"following_url": "https://api.github.com/users/smsaladi/following{/other_user}",
"gists_url": "http... | [
{
"color": "02d7e1",
"default": false,
"description": "Concat, Merge/Join, Stack/Unstack, Explode",
"id": 13098779,
"name": "Reshaping",
"node_id": "MDU6TGFiZWwxMzA5ODc3OQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Reshaping"
}
] | closed | false | null | [] | null | 4 | 2019-10-08T21:42:43Z | 2019-12-09T18:05:32Z | 2019-12-09T18:05:32Z | CONTRIBUTOR | null | This PR merges master onto @NiklasKeck's PR branch (#17440) to add an optional argument to keep_index to `pd.melt`. There is quite a bit of discussion between the following 2 PRs and issues:
Index gets lost when DataFrame melt method is used #17440
ENH: Add optional argument keep_index to dataframe melt method #174... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28859/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28859/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28859.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28859",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/28859.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28859"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28860 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28860/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28860/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28860/events | https://github.com/pandas-dev/pandas/issues/28860 | 504,316,065 | MDU6SXNzdWU1MDQzMTYwNjU= | 28,860 | Suffixes not applied to join columns in pd.merge | {
"avatar_url": "https://avatars.githubusercontent.com/u/2658661?v=4",
"events_url": "https://api.github.com/users/dsaxton/events{/privacy}",
"followers_url": "https://api.github.com/users/dsaxton/followers",
"following_url": "https://api.github.com/users/dsaxton/following{/other_user}",
"gists_url": "https:/... | [
{
"color": "0052cc",
"default": false,
"description": null,
"id": 34444536,
"name": "Usage Question",
"node_id": "MDU6TGFiZWwzNDQ0NDUzNg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Usage%20Question"
}
] | closed | false | null | [] | null | 8 | 2019-10-08T22:42:56Z | 2019-10-09T15:24:20Z | 2019-10-09T04:31:19Z | MEMBER | null | ```python
import pandas as pd
left = pd.DataFrame({"a": [1.0, 2.0]})
right = pd.DataFrame({"a": [1.0]})
pd.merge(left, right, how="left", on="a", suffixes=("_left", "_right"))
# a
# 0 1.0
# 1 2.0
```
#### Problem description
The documentation for `suffixes` in `pd.merge` reads:
```
suffixes :... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28860/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28860/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28861 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28861/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28861/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28861/events | https://github.com/pandas-dev/pandas/pull/28861 | 504,320,402 | MDExOlB1bGxSZXF1ZXN0MzI1OTk3MzQ1 | 28,861 | TST: Fix 36 maybe_promote xfails wanting np.bytes_ instead of np.object_ | {
"avatar_url": "https://avatars.githubusercontent.com/u/8078968?v=4",
"events_url": "https://api.github.com/users/jbrockmendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jbrockmendel/followers",
"following_url": "https://api.github.com/users/jbrockmendel/following{/other_user}",
"gists... | [
{
"color": "e102d8",
"default": false,
"description": "Unexpected or buggy dtype conversions",
"id": 31404521,
"name": "Dtype Conversions",
"node_id": "MDU6TGFiZWwzMTQwNDUyMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Dtype%20Conversions"
},
{
"color": "207... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 3 | 2019-10-08T22:57:01Z | 2019-10-11T15:30:07Z | 2019-10-11T12:24:27Z | MEMBER | null | @jreback less trivial than some of the others. These changes are based on my understanding that maybe_promote should _never_ be returning np.bytes_ dtype; those cases all become np.object_. That is what maybe_promote currently does, and this updates the tests to expect that behavior. | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28861/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28861/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28861.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28861",
"merged_at": "2019-10-11T12:24:27Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28861.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28861"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28862 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28862/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28862/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28862/events | https://github.com/pandas-dev/pandas/pull/28862 | 504,327,870 | MDExOlB1bGxSZXF1ZXN0MzI2MDAzMTgy | 28,862 | CLN: catch less in pd.io | {
"avatar_url": "https://avatars.githubusercontent.com/u/8078968?v=4",
"events_url": "https://api.github.com/users/jbrockmendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jbrockmendel/followers",
"following_url": "https://api.github.com/users/jbrockmendel/following{/other_user}",
"gists... | [
{
"color": "207de5",
"default": false,
"description": null,
"id": 211029535,
"name": "Clean",
"node_id": "MDU6TGFiZWwyMTEwMjk1MzU=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Clean"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 2 | 2019-10-08T23:22:12Z | 2019-11-21T23:07:48Z | 2019-11-12T18:00:24Z | MEMBER | null | @bashtage (only tangentially related to this PR) there is an `except Exception` in pandas.io.stata that I'd like to make more specific. Any suggestions? | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28862/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28862/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28862.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28862",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/28862.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28862"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28863 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28863/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28863/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28863/events | https://github.com/pandas-dev/pandas/pull/28863 | 504,337,526 | MDExOlB1bGxSZXF1ZXN0MzI2MDExMTA3 | 28,863 | Vectorized ISO Format | {
"avatar_url": "https://avatars.githubusercontent.com/u/609873?v=4",
"events_url": "https://api.github.com/users/WillAyd/events{/privacy}",
"followers_url": "https://api.github.com/users/WillAyd/followers",
"following_url": "https://api.github.com/users/WillAyd/following{/other_user}",
"gists_url": "https://... | [
{
"color": "AFEEEE",
"default": false,
"description": null,
"id": 211840,
"name": "Timeseries",
"node_id": "MDU6TGFiZWwyMTE4NDA=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Timeseries"
},
{
"color": "a10c02",
"default": false,
"description": "Memory or... | closed | false | null | [] | null | 4 | 2019-10-09T00:00:43Z | 2020-01-16T00:33:48Z | 2019-10-11T12:53:48Z | MEMBER | null | - [ ] closes #28180
- [ ] tests added / passed
- [ ] passes `black pandas`
- [ ] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry
Needs work but could certainly use some guidance from @jbrockmendel
This uses the dt -> ISO string formatting that is deeply nested in the JSON ... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28863/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28863/timeline | null | 1 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28863.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28863",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/28863.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28863"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28864 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28864/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28864/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28864/events | https://github.com/pandas-dev/pandas/pull/28864 | 504,391,436 | MDExOlB1bGxSZXF1ZXN0MzI2MDUwNDc4 | 28,864 | TST: Fix xfails for non-box maybe_promote on integer dtypes | {
"avatar_url": "https://avatars.githubusercontent.com/u/8078968?v=4",
"events_url": "https://api.github.com/users/jbrockmendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jbrockmendel/followers",
"following_url": "https://api.github.com/users/jbrockmendel/following{/other_user}",
"gists... | [
{
"color": "e102d8",
"default": false,
"description": "Unexpected or buggy dtype conversions",
"id": 31404521,
"name": "Dtype Conversions",
"node_id": "MDU6TGFiZWwzMTQwNDUyMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Dtype%20Conversions"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 2 | 2019-10-09T03:35:04Z | 2019-10-10T13:34:20Z | 2019-10-10T12:51:18Z | MEMBER | null | Orthogonal to other outstanding maybe_promote PRs.
This one required pretty significant changes to the code. Using `np.min_scalar_type` and `np.can_cast` cleans this up a bit, but it is still pretty verbose. AFAICT there is no clear way to make it shorter without significantly sacrificing clarity.
In a follow-u... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28864/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28864/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28864.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28864",
"merged_at": "2019-10-10T12:51:18Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28864.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28864"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28865 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28865/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28865/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28865/events | https://github.com/pandas-dev/pandas/pull/28865 | 504,413,491 | MDExOlB1bGxSZXF1ZXN0MzI2MDY2MzYw | 28,865 | TST: Use fixtures instead of setup_method for index tests | {
"avatar_url": "https://avatars.githubusercontent.com/u/5332445?v=4",
"events_url": "https://api.github.com/users/jschendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jschendel/followers",
"following_url": "https://api.github.com/users/jschendel/following{/other_user}",
"gists_url": "h... | [
{
"color": "FCE94F",
"default": false,
"description": "Internal refactoring of code",
"id": 127681,
"name": "Refactor",
"node_id": "MDU6TGFiZWwxMjc2ODE=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Refactor"
},
{
"color": "C4A000",
"default": false,
"de... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 3 | 2019-10-09T04:50:28Z | 2019-12-20T01:03:29Z | 2019-10-11T15:14:07Z | MEMBER | null | The common index tests use `setup_method` to create a `dict` of indexes to test against:
https://github.com/pandas-dev/pandas/blob/df2e0813e053cc5bc924b2292ea8918a6b27f0e2/pandas/tests/indexes/test_range.py#L25-L30
This `dict` of indexes is then iterated over within the tests:
https://github.com/pandas-dev/pan... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28865/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28865/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28865.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28865",
"merged_at": "2019-10-11T15:14:07Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28865.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28865"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28866 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28866/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28866/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28866/events | https://github.com/pandas-dev/pandas/issues/28866 | 504,419,926 | MDU6SXNzdWU1MDQ0MTk5MjY= | 28,866 | DataFrame.replace with dict does not work with Duplicate Column Labels | {
"avatar_url": "https://avatars.githubusercontent.com/u/36034954?v=4",
"events_url": "https://api.github.com/users/CrystalWindSnake/events{/privacy}",
"followers_url": "https://api.github.com/users/CrystalWindSnake/followers",
"following_url": "https://api.github.com/users/CrystalWindSnake/following{/other_use... | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "01a886",
"default": false,
"description": "replace method",
"id... | open | false | null | [] | null | 1 | 2019-10-09T05:14:35Z | 2020-09-17T19:46:48Z | null | NONE | null | #### Code Sample, a copy-pastable example if possible
```python
df = pd.DataFrame({
'name':'a a b b c d'.split(),
'value1':[1,None,2,None,3,4],
'value2':[1,None,2,None,3,4]
})
df.columns='name v v'.split()
df.fillna({'v':0})
```
#### Problem description
display the Warning message:
```
D:... | {
"+1": 1,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 1,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28866/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28866/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28867 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28867/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28867/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28867/events | https://github.com/pandas-dev/pandas/issues/28867 | 504,489,086 | MDU6SXNzdWU1MDQ0ODkwODY= | 28,867 | DEPR: deprecate Index.to_native_types() ? | {
"avatar_url": "https://avatars.githubusercontent.com/u/1020496?v=4",
"events_url": "https://api.github.com/users/jorisvandenbossche/events{/privacy}",
"followers_url": "https://api.github.com/users/jorisvandenbossche/followers",
"following_url": "https://api.github.com/users/jorisvandenbossche/following{/othe... | [
{
"color": "AD7FA8",
"default": false,
"description": null,
"id": 35818298,
"name": "API Design",
"node_id": "MDU6TGFiZWwzNTgxODI5OA==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/API%20Design"
},
{
"color": "5319e7",
"default": false,
"description": "F... | closed | false | null | [] | {
"closed_at": "2020-12-26T13:57:50Z",
"closed_issues": 1768,
"created_at": "2020-05-29T23:47:32Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/j... | 2 | 2019-10-09T08:17:19Z | 2020-09-19T02:13:31Z | 2020-09-19T02:13:31Z | MEMBER | null | We currently have a public `Index.to_native_types()` method (https://dev.pandas.io/docs/reference/api/pandas.Index.to_native_types.html) that somehow formats the values of the index.
Example:
```
In [3]: pd.date_range("2012", periods=3).to_native_types()
Out[3]: array(['2012-01-01', '2012-01-02', '2012-01-03'], ... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28867/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28867/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28868 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28868/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28868/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28868/events | https://github.com/pandas-dev/pandas/issues/28868 | 504,524,284 | MDU6SXNzdWU1MDQ1MjQyODQ= | 28,868 | Maximum of time series with NaT returns a dtype float64 with only NaN's | {
"avatar_url": "https://avatars.githubusercontent.com/u/31591159?v=4",
"events_url": "https://api.github.com/users/MaximeWeyl/events{/privacy}",
"followers_url": "https://api.github.com/users/MaximeWeyl/followers",
"following_url": "https://api.github.com/users/MaximeWeyl/following{/other_user}",
"gists_url"... | [] | closed | false | null | [] | null | 2 | 2019-10-09T09:24:30Z | 2019-10-09T15:57:15Z | 2019-10-09T15:57:15Z | NONE | null | #### Code Sample, a copy-pastable example if possible
```python
import pandas as pd
show_bug = True
a = pd.date_range("2019-1-1", periods=10, freq="1D", tz="Europe/Paris")
b = pd.date_range("2019-1-3", periods=10, freq="1H", tz="Europe/Paris")
if show_bug:
a = pd.Index([pd.NaT] + a.to_list()[1:])
... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28868/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28868/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28869 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28869/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28869/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28869/events | https://github.com/pandas-dev/pandas/issues/28869 | 504,582,681 | MDU6SXNzdWU1MDQ1ODI2ODE= | 28,869 | Cannot `style.background_gradient` on an `Int64` column | {
"avatar_url": "https://avatars.githubusercontent.com/u/2772505?v=4",
"events_url": "https://api.github.com/users/eddy-geek/events{/privacy}",
"followers_url": "https://api.github.com/users/eddy-geek/followers",
"following_url": "https://api.github.com/users/eddy-geek/following{/other_user}",
"gists_url": "h... | [
{
"color": "0e8a16",
"default": true,
"description": null,
"id": 717120670,
"name": "good first issue",
"node_id": "MDU6TGFiZWw3MTcxMjA2NzA=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/good%20first%20issue"
},
{
"color": "6138b5",
"default": false,
"de... | closed | false | null | [] | null | 5 | 2019-10-09T11:16:33Z | 2021-02-11T10:04:04Z | 2021-02-11T10:04:04Z | NONE | null | ```python
old = pd.Series(range(9))
new = pd.Series(range(9), dtype='Int64')
print(old.min(), old.values.min(), new.min()) # =0 OK
print(new.values.min()) # KO
old.to_frame().style.background_gradient() # OK
new.to_frame().style.background_gradient() # KO
```
#### Problem description
Similarly to http... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28869/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28869/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28870 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28870/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28870/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28870/events | https://github.com/pandas-dev/pandas/issues/28870 | 504,589,018 | MDU6SXNzdWU1MDQ1ODkwMTg= | 28,870 | Merge_asof() Requires specific int type, not reflected in error or documentation | {
"avatar_url": "https://avatars.githubusercontent.com/u/45035434?v=4",
"events_url": "https://api.github.com/users/jjlkant/events{/privacy}",
"followers_url": "https://api.github.com/users/jjlkant/followers",
"following_url": "https://api.github.com/users/jjlkant/following{/other_user}",
"gists_url": "https:... | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "02d7e1",
"default": false,
"description": "Concat, Merge/Join, Stac... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 4 | 2019-10-09T11:29:18Z | 2019-10-11T12:09:34Z | 2019-10-11T12:09:34Z | CONTRIBUTOR | null | #### Code Sample, a copy-pastable example if possible
```python
import pandas as pd
left = pd.DataFrame({'ts_int': [0, 100, 200], 'left_val': [1, 2, 3]})
right = pd.DataFrame({'ts_int': [50, 150, 250], 'right_val': [1, 2, 3]})
left['ts_int'] = left['ts_int'].astype(int)
right['ts_int'] = right['ts_int'].astyp... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28870/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28870/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28871 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28871/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28871/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28871/events | https://github.com/pandas-dev/pandas/issues/28871 | 504,705,227 | MDU6SXNzdWU1MDQ3MDUyMjc= | 28,871 | columns sometimes not added to empty dataframe | {
"avatar_url": "https://avatars.githubusercontent.com/u/1129177?v=4",
"events_url": "https://api.github.com/users/innominate227/events{/privacy}",
"followers_url": "https://api.github.com/users/innominate227/followers",
"following_url": "https://api.github.com/users/innominate227/following{/other_user}",
"gi... | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "0b02e1",
"default": false,
"description": "Related to indexing on s... | open | false | null | [] | null | 4 | 2019-10-09T14:53:06Z | 2019-10-10T04:05:35Z | null | NONE | null | #### Code Sample, a copy-pastable example if possible
```python
import datetime
import pandas as pd
test = pd.DataFrame({'date':[datetime.datetime(2000,1,1)]}).set_index('date')
test = test[0:0].copy()
test['3010'] = None
test['2010'] = None
print(test)
```
#### Problem description
The column '3010... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28871/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28871/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28872 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28872/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28872/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28872/events | https://github.com/pandas-dev/pandas/issues/28872 | 504,726,591 | MDU6SXNzdWU1MDQ3MjY1OTE= | 28,872 | IntervalIndex: outer intervals closed 'both' should be possible | {
"avatar_url": "https://avatars.githubusercontent.com/u/5902745?v=4",
"events_url": "https://api.github.com/users/johannes-mueller/events{/privacy}",
"followers_url": "https://api.github.com/users/johannes-mueller/followers",
"following_url": "https://api.github.com/users/johannes-mueller/following{/other_user... | [
{
"color": "4E9A06",
"default": false,
"description": null,
"id": 76812,
"name": "Enhancement",
"node_id": "MDU6TGFiZWw3NjgxMg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Enhancement"
},
{
"color": "009800",
"default": false,
"description": "Interval... | open | false | null | [] | null | 0 | 2019-10-09T15:27:25Z | 2020-04-27T00:19:08Z | null | CONTRIBUTOR | null | #### The following ipython session demonstrates the issue
```python
import numpy as np
import pandas as pd
# a simple population of integer events
population = np.array([1, 2, 2, 3, 3, 3])
# let's make a histogram of the population
hist, edges = np.histogram(population, 4)
# lets turn the histogram into... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28872/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28872/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28873 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28873/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28873/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28873/events | https://github.com/pandas-dev/pandas/pull/28873 | 504,774,552 | MDExOlB1bGxSZXF1ZXN0MzI2MzUzNjg0 | 28,873 | CLN: No catching needed for groupby median | {
"avatar_url": "https://avatars.githubusercontent.com/u/8078968?v=4",
"events_url": "https://api.github.com/users/jbrockmendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jbrockmendel/followers",
"following_url": "https://api.github.com/users/jbrockmendel/following{/other_user}",
"gists... | [
{
"color": "729FCF",
"default": false,
"description": null,
"id": 233160,
"name": "Groupby",
"node_id": "MDU6TGFiZWwyMzMxNjA=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Groupby"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 3 | 2019-10-09T16:57:29Z | 2019-10-10T04:39:24Z | 2019-10-10T01:50:32Z | MEMBER | null | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28873/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28873/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28873.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28873",
"merged_at": "2019-10-10T01:50:32Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28873.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28873"
} | |
https://api.github.com/repos/pandas-dev/pandas/issues/28874 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28874/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28874/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28874/events | https://github.com/pandas-dev/pandas/pull/28874 | 504,820,310 | MDExOlB1bGxSZXF1ZXN0MzI2Mzg5MTI0 | 28,874 | use requests when it is installed | {
"avatar_url": "https://avatars.githubusercontent.com/u/950575?v=4",
"events_url": "https://api.github.com/users/ocefpaf/events{/privacy}",
"followers_url": "https://api.github.com/users/ocefpaf/followers",
"following_url": "https://api.github.com/users/ocefpaf/following{/other_user}",
"gists_url": "https://... | [
{
"color": "4E9A06",
"default": false,
"description": null,
"id": 76812,
"name": "Enhancement",
"node_id": "MDU6TGFiZWw3NjgxMg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Enhancement"
},
{
"color": "AD7FA8",
"default": false,
"description": null,
... | closed | false | null | [] | null | 10 | 2019-10-09T18:31:52Z | 2020-02-06T23:59:52Z | 2020-02-06T23:59:52Z | NONE | null | closes #16716
closes #28825
closes #28826
solves https://github.com/pandas-dev/pandas/pull/16910
- [ ] tests added / passed
- [X] passes `black pandas`
- [X] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry
Continuation of https://github.com/pandas-dev/pandas/pull/21504 an... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28874/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28874/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28874.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28874",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/28874.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28874"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28875 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28875/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28875/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28875/events | https://github.com/pandas-dev/pandas/pull/28875 | 504,833,148 | MDExOlB1bGxSZXF1ZXN0MzI2Mzk5NTU0 | 28,875 | BUG: Allow all int types for merge (GH28870) | {
"avatar_url": "https://avatars.githubusercontent.com/u/45035434?v=4",
"events_url": "https://api.github.com/users/jjlkant/events{/privacy}",
"followers_url": "https://api.github.com/users/jjlkant/followers",
"following_url": "https://api.github.com/users/jjlkant/following{/other_user}",
"gists_url": "https:... | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "02d7e1",
"default": false,
"description": "Concat, Merge/Join, Stac... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 2 | 2019-10-09T18:58:32Z | 2019-10-12T15:49:35Z | 2019-10-11T12:09:34Z | CONTRIBUTOR | null | - [x] closes #28870
- [x] tests added / passed
- [x] passes `black pandas`
- [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [x] whatsnew entry | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28875/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28875/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28875.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28875",
"merged_at": "2019-10-11T12:09:34Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28875.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28875"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28876 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28876/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28876/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28876/events | https://github.com/pandas-dev/pandas/pull/28876 | 504,852,025 | MDExOlB1bGxSZXF1ZXN0MzI2NDE0NjQ0 | 28,876 | ENH: show numbers on .info() with verbose flag | {
"avatar_url": "https://avatars.githubusercontent.com/u/4035367?v=4",
"events_url": "https://api.github.com/users/Roymprog/events{/privacy}",
"followers_url": "https://api.github.com/users/Roymprog/followers",
"following_url": "https://api.github.com/users/Roymprog/following{/other_user}",
"gists_url": "http... | [
{
"color": "370f77",
"default": false,
"description": "DataFrame data structure",
"id": 1049312478,
"name": "DataFrame",
"node_id": "MDU6TGFiZWwxMDQ5MzEyNDc4",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/DataFrame"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 18 | 2019-10-09T19:38:52Z | 2020-01-03T08:54:26Z | 2020-01-03T01:18:53Z | CONTRIBUTOR | null | - [x] closes #17304
- [x] tests added / passed
- [x] passes `black pandas`
- [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [x] whatsnew entry
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28876/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28876/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28876.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28876",
"merged_at": "2020-01-03T01:18:53Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28876.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28876"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28877 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28877/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28877/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28877/events | https://github.com/pandas-dev/pandas/issues/28877 | 504,853,415 | MDU6SXNzdWU1MDQ4NTM0MTU= | 28,877 | read_json should support json pagination | {
"avatar_url": "https://avatars.githubusercontent.com/u/36037291?v=4",
"events_url": "https://api.github.com/users/BartlomiejBartnicki/events{/privacy}",
"followers_url": "https://api.github.com/users/BartlomiejBartnicki/followers",
"following_url": "https://api.github.com/users/BartlomiejBartnicki/following{/... | [
{
"color": "207de5",
"default": false,
"description": "read_json, to_json, json_normalize",
"id": 49379259,
"name": "IO JSON",
"node_id": "MDU6TGFiZWw0OTM3OTI1OQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20JSON"
}
] | closed | false | null | [] | null | 2 | 2019-10-09T19:41:53Z | 2019-10-10T15:48:29Z | 2019-10-10T15:48:29Z | NONE | null | #### Problem description
Many web service return data divided in subsets. Common conventrion is return data as dict:
```
{"count":78,
"next":"link to next part of data or null",
"previous":null,
"results":[
{"name":"John"surname":"Smith"},
{"name":"Bob"surname":"Black"},
]}
```
Could you consider to ... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28877/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28877/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28878 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28878/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28878/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28878/events | https://github.com/pandas-dev/pandas/pull/28878 | 504,861,248 | MDExOlB1bGxSZXF1ZXN0MzI2NDIyMTUz | 28,878 | CLN: dont catch on groupby.mean | {
"avatar_url": "https://avatars.githubusercontent.com/u/8078968?v=4",
"events_url": "https://api.github.com/users/jbrockmendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jbrockmendel/followers",
"following_url": "https://api.github.com/users/jbrockmendel/following{/other_user}",
"gists... | [
{
"color": "729FCF",
"default": false,
"description": null,
"id": 233160,
"name": "Groupby",
"node_id": "MDU6TGFiZWwyMzMxNjA=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Groupby"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 1 | 2019-10-09T19:58:12Z | 2019-10-10T01:51:09Z | 2019-10-10T01:27:38Z | MEMBER | null | The new casting in cython_agg_blocks is specific to a single IntegerArray test case. We could pretty reasonably move that into maybe_downcast_numeric. For the moment id rather hold off since I expect other EA cases to show up here.
cc @WillAyd | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28878/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28878/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28878.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28878",
"merged_at": "2019-10-10T01:27:38Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28878.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28878"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28879 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28879/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28879/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28879/events | https://github.com/pandas-dev/pandas/pull/28879 | 504,867,392 | MDExOlB1bGxSZXF1ZXN0MzI2NDI2OTAw | 28,879 | CLN: assorted cleanups, remove unicode checks in cython | {
"avatar_url": "https://avatars.githubusercontent.com/u/8078968?v=4",
"events_url": "https://api.github.com/users/jbrockmendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jbrockmendel/followers",
"following_url": "https://api.github.com/users/jbrockmendel/following{/other_user}",
"gists... | [
{
"color": "207de5",
"default": false,
"description": null,
"id": 211029535,
"name": "Clean",
"node_id": "MDU6TGFiZWwyMTEwMjk1MzU=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Clean"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 0 | 2019-10-09T20:10:44Z | 2019-10-10T01:43:10Z | 2019-10-10T01:30:55Z | MEMBER | null | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28879/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28879/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28879.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28879",
"merged_at": "2019-10-10T01:30:55Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28879.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28879"
} | |
https://api.github.com/repos/pandas-dev/pandas/issues/28880 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28880/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28880/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28880/events | https://github.com/pandas-dev/pandas/pull/28880 | 504,884,404 | MDExOlB1bGxSZXF1ZXN0MzI2NDQwMDMx | 28,880 | TST: Fix maybe_promote floating non-boxed tests | {
"avatar_url": "https://avatars.githubusercontent.com/u/8078968?v=4",
"events_url": "https://api.github.com/users/jbrockmendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jbrockmendel/followers",
"following_url": "https://api.github.com/users/jbrockmendel/following{/other_user}",
"gists... | [
{
"color": "e102d8",
"default": false,
"description": "Unexpected or buggy dtype conversions",
"id": 31404521,
"name": "Dtype Conversions",
"node_id": "MDU6TGFiZWwzMTQwNDUyMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Dtype%20Conversions"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 1 | 2019-10-09T20:43:50Z | 2019-10-10T13:33:32Z | 2019-10-10T12:50:18Z | MEMBER | null | Like #28864, this involves changing the underlying function. Some of this can be de-duplicated once these are in.
I think that this is the last of the xfails for non-boxed test cases. Really looking forward to having this done with,. | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28880/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28880/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28880.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28880",
"merged_at": "2019-10-10T12:50:18Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28880.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28880"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28881 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28881/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28881/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28881/events | https://github.com/pandas-dev/pandas/issues/28881 | 504,921,359 | MDU6SXNzdWU1MDQ5MjEzNTk= | 28,881 | Type check on dataframe aggregation functions | {
"avatar_url": "https://avatars.githubusercontent.com/u/20330794?v=4",
"events_url": "https://api.github.com/users/insightfulquery/events{/privacy}",
"followers_url": "https://api.github.com/users/insightfulquery/followers",
"following_url": "https://api.github.com/users/insightfulquery/following{/other_user}"... | [
{
"color": "a10c02",
"default": false,
"description": "Memory or execution speed performance",
"id": 8935311,
"name": "Performance",
"node_id": "MDU6TGFiZWw4OTM1MzEx",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Performance"
},
{
"color": "547c03",
"default"... | open | false | null | [] | null | 2 | 2019-10-09T22:07:16Z | 2021-07-21T05:35:23Z | null | NONE | null | OS: Windows 10
Python: 3.7.3
Pandas: 0.25.1
The DataFrame object has functions such as mean() and sum() which return a Series that contains the appropriate aggregation for each column of the DataFrame. Not all data types are appropriate for all aggregations. For example, strings are not suitable for mean or sum.
... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28881/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28881/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28882 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28882/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28882/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28882/events | https://github.com/pandas-dev/pandas/issues/28882 | 504,930,304 | MDU6SXNzdWU1MDQ5MzAzMDQ= | 28,882 | Crash during groupby quantile | {
"avatar_url": "https://avatars.githubusercontent.com/u/8209940?v=4",
"events_url": "https://api.github.com/users/VelizarVESSELINOV/events{/privacy}",
"followers_url": "https://api.github.com/users/VelizarVESSELINOV/followers",
"following_url": "https://api.github.com/users/VelizarVESSELINOV/following{/other_u... | [
{
"color": "729FCF",
"default": false,
"description": null,
"id": 233160,
"name": "Groupby",
"node_id": "MDU6TGFiZWwyMzMxNjA=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Groupby"
},
{
"color": "36ede0",
"default": false,
"description": "Non-Recoverable... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 11 | 2019-10-09T22:31:43Z | 2019-10-30T18:29:08Z | 2019-10-30T18:29:08Z | NONE | null | #### Code Sample, a copy-pastable example if possible
```python
dtf = dtf.groupby(cut(dtf[X], rng)).quantile(.5)
```
#### Problem description
Process: Python [24642]
Path: /Library/Frameworks/Python.framework/Versions/3.7/Resources/Python.app/Contents/MacOS/Python
Identifier:... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28882/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28882/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28883 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28883/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28883/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28883/events | https://github.com/pandas-dev/pandas/pull/28883 | 504,933,371 | MDExOlB1bGxSZXF1ZXN0MzI2NDc3MDIw | 28,883 | CLN: dont catch Exception in groupby var | {
"avatar_url": "https://avatars.githubusercontent.com/u/8078968?v=4",
"events_url": "https://api.github.com/users/jbrockmendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jbrockmendel/followers",
"following_url": "https://api.github.com/users/jbrockmendel/following{/other_user}",
"gists... | [
{
"color": "729FCF",
"default": false,
"description": null,
"id": 233160,
"name": "Groupby",
"node_id": "MDU6TGFiZWwyMzMxNjA=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Groupby"
},
{
"color": "ffa0ff",
"default": false,
"description": "Incorrect or im... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 1 | 2019-10-09T22:40:33Z | 2019-10-10T01:55:47Z | 2019-10-10T01:25:29Z | MEMBER | null | Between this, #28878, and #28873, I'm finding that the outside-in approach to cleaning this up is proving easier the earlier inside-out approach. | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28883/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28883/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28883.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28883",
"merged_at": "2019-10-10T01:25:29Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28883.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28883"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28884 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28884/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28884/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28884/events | https://github.com/pandas-dev/pandas/pull/28884 | 504,974,591 | MDExOlB1bGxSZXF1ZXN0MzI2NTA3Njkw | 28,884 | Remove ix, part 1 | {
"avatar_url": "https://avatars.githubusercontent.com/u/26364415?v=4",
"events_url": "https://api.github.com/users/topper-123/events{/privacy}",
"followers_url": "https://api.github.com/users/topper-123/followers",
"following_url": "https://api.github.com/users/topper-123/following{/other_user}",
"gists_url"... | [
{
"color": "0b02e1",
"default": false,
"description": "Related to indexing on series/frames, not to indexes themselves",
"id": 2822098,
"name": "Indexing",
"node_id": "MDU6TGFiZWwyODIyMDk4",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Indexing"
},
{
"color": "53... | closed | false | null | [] | null | 4 | 2019-10-10T01:12:37Z | 2019-10-10T16:41:48Z | 2019-10-10T01:53:18Z | CONTRIBUTOR | null | - [ ] xref #15113 and #26438
First part of removal od ``NDFrame.ix``. There's still alot of tests for this, so I'll do this removal in 2-3 steps. This PR removes pandas/tests/indexing/test_ix.py and tests for ix in a few more places. | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28884/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28884/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28884.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28884",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/28884.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28884"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28885 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28885/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28885/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28885/events | https://github.com/pandas-dev/pandas/pull/28885 | 505,014,887 | MDExOlB1bGxSZXF1ZXN0MzI2NTM1MTg1 | 28,885 | DOC: Fixed PR06 errors in pandas.api.extensions.ExtensionArray | {
"avatar_url": "https://avatars.githubusercontent.com/u/7680686?v=4",
"events_url": "https://api.github.com/users/roshni-b/events{/privacy}",
"followers_url": "https://api.github.com/users/roshni-b/followers",
"following_url": "https://api.github.com/users/roshni-b/following{/other_user}",
"gists_url": "http... | [
{
"color": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 1 | 2019-10-10T03:45:40Z | 2019-10-10T16:04:28Z | 2019-10-10T16:00:24Z | CONTRIBUTOR | null | - [x] xref #28724
- [ ] tests added / passed
- [x] passes `black pandas`
- [ ] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28885/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28885/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28885.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28885",
"merged_at": "2019-10-10T16:00:24Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28885.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28885"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28886 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28886/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28886/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28886/events | https://github.com/pandas-dev/pandas/pull/28886 | 505,015,272 | MDExOlB1bGxSZXF1ZXN0MzI2NTM1NDcx | 28,886 | REF: use fused types for groupby_helper | {
"avatar_url": "https://avatars.githubusercontent.com/u/8078968?v=4",
"events_url": "https://api.github.com/users/jbrockmendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jbrockmendel/followers",
"following_url": "https://api.github.com/users/jbrockmendel/following{/other_user}",
"gists... | [
{
"color": "729FCF",
"default": false,
"description": null,
"id": 233160,
"name": "Groupby",
"node_id": "MDU6TGFiZWwyMzMxNjA=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Groupby"
},
{
"color": "e102d8",
"default": false,
"description": "Unexpected or b... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 2 | 2019-10-10T03:47:10Z | 2019-10-11T15:25:48Z | 2019-10-11T12:01:31Z | MEMBER | null | There will be some nice cleanups we can do after we bump cython to 0.30 (which hasnt come out yet).
Also I think there is some na-checking code that we can share between the various fused-types functions after this. | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28886/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28886/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28886.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28886",
"merged_at": "2019-10-11T12:01:31Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28886.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28886"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28887 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28887/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28887/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28887/events | https://github.com/pandas-dev/pandas/pull/28887 | 505,017,139 | MDExOlB1bGxSZXF1ZXN0MzI2NTM2ODI5 | 28,887 | DOC: Fixed PR06 error in pandas.io.formats.style.Styler.set_table_attributes | {
"avatar_url": "https://avatars.githubusercontent.com/u/7680686?v=4",
"events_url": "https://api.github.com/users/roshni-b/events{/privacy}",
"followers_url": "https://api.github.com/users/roshni-b/followers",
"following_url": "https://api.github.com/users/roshni-b/following{/other_user}",
"gists_url": "http... | [
{
"color": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 1 | 2019-10-10T03:54:24Z | 2019-10-10T16:03:57Z | 2019-10-10T15:53:58Z | CONTRIBUTOR | null | - [x] xref #28724
- [ ] tests added / passed
- [x] passes `black pandas`
- [ ] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28887/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28887/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28887.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28887",
"merged_at": "2019-10-10T15:53:58Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28887.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28887"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28888 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28888/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28888/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28888/events | https://github.com/pandas-dev/pandas/pull/28888 | 505,019,250 | MDExOlB1bGxSZXF1ZXN0MzI2NTM4MzYy | 28,888 | DOC: Fixed PR06 error in pandas.Categorical.from_codes | {
"avatar_url": "https://avatars.githubusercontent.com/u/7680686?v=4",
"events_url": "https://api.github.com/users/roshni-b/events{/privacy}",
"followers_url": "https://api.github.com/users/roshni-b/followers",
"following_url": "https://api.github.com/users/roshni-b/following{/other_user}",
"gists_url": "http... | [
{
"color": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
}
] | closed | false | null | [] | null | 1 | 2019-10-10T04:02:46Z | 2019-10-10T16:05:52Z | 2019-10-10T15:57:24Z | CONTRIBUTOR | null | - [x] xref #28724
- [ ] tests added / passed
- [x] passes `black pandas`
- [ ] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28888/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28888/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28888.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28888",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/28888.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28888"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28889 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28889/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28889/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28889/events | https://github.com/pandas-dev/pandas/issues/28889 | 505,029,072 | MDU6SXNzdWU1MDUwMjkwNzI= | 28,889 | Series <replace> api | {
"avatar_url": "https://avatars.githubusercontent.com/u/19250012?v=4",
"events_url": "https://api.github.com/users/sunnyjiechao/events{/privacy}",
"followers_url": "https://api.github.com/users/sunnyjiechao/followers",
"following_url": "https://api.github.com/users/sunnyjiechao/following{/other_user}",
"gist... | [
{
"color": "0052cc",
"default": false,
"description": null,
"id": 34444536,
"name": "Usage Question",
"node_id": "MDU6TGFiZWwzNDQ0NDUzNg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Usage%20Question"
}
] | closed | false | null | [] | null | 1 | 2019-10-10T04:38:34Z | 2019-10-10T05:34:57Z | 2019-10-10T05:34:50Z | NONE | null | #### Code Sample, a copy-pastable example if possible
```python
# code
df_sam = pd.DataFrame([["a", 'b'], ["", "c"], ["c","d"], ["", "s"]], columns=["col1", "col2"])
```
df_sam dataframe:
| col1 | col2 |
| --- | --- |
| a | b |
| | c|
| c | d |
| | s |
#### the expected result is
```python
df_sam... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28889/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28889/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28890 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28890/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28890/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28890/events | https://github.com/pandas-dev/pandas/pull/28890 | 505,078,538 | MDExOlB1bGxSZXF1ZXN0MzI2NTgyMjY5 | 28,890 | DOC: Update performance comparison section of io docs | {
"avatar_url": "https://avatars.githubusercontent.com/u/42381276?v=4",
"events_url": "https://api.github.com/users/WuraolaOyewusi/events{/privacy}",
"followers_url": "https://api.github.com/users/WuraolaOyewusi/followers",
"following_url": "https://api.github.com/users/WuraolaOyewusi/following{/other_user}",
... | [
{
"color": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 7 | 2019-10-10T07:04:29Z | 2019-11-09T01:00:05Z | 2019-11-09T00:59:55Z | CONTRIBUTOR | null | xref https://github.com/python-sprints/pandas-mentoring/issues/163
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28890/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28890/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28890.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28890",
"merged_at": "2019-11-09T00:59:55Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28890.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28890"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28891 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28891/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28891/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28891/events | https://github.com/pandas-dev/pandas/pull/28891 | 505,086,579 | MDExOlB1bGxSZXF1ZXN0MzI2NTg4NDkx | 28,891 | DOC: Fix commpiler typo in contributing.rst | {
"avatar_url": "https://avatars.githubusercontent.com/u/1130029?v=4",
"events_url": "https://api.github.com/users/shaido987/events{/privacy}",
"followers_url": "https://api.github.com/users/shaido987/followers",
"following_url": "https://api.github.com/users/shaido987/following{/other_user}",
"gists_url": "h... | [
{
"color": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 0 | 2019-10-10T07:23:42Z | 2019-10-10T12:43:43Z | 2019-10-10T09:20:23Z | CONTRIBUTOR | null | Corrects the spelling of compiler in contributing.rst.
- [ ] closes #xxxx
- [ ] tests added / passed
- [ ] passes `black pandas`
- [ ] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28891/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28891/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28891.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28891",
"merged_at": "2019-10-10T09:20:23Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28891.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28891"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28892 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28892/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28892/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28892/events | https://github.com/pandas-dev/pandas/issues/28892 | 505,097,539 | MDU6SXNzdWU1MDUwOTc1Mzk= | 28,892 | A question about pd.qcut | {
"avatar_url": "https://avatars.githubusercontent.com/u/38411803?v=4",
"events_url": "https://api.github.com/users/Janhonho/events{/privacy}",
"followers_url": "https://api.github.com/users/Janhonho/followers",
"following_url": "https://api.github.com/users/Janhonho/following{/other_user}",
"gists_url": "htt... | [
{
"color": "0052cc",
"default": false,
"description": null,
"id": 34444536,
"name": "Usage Question",
"node_id": "MDU6TGFiZWwzNDQ0NDUzNg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Usage%20Question"
},
{
"color": "006b75",
"default": false,
"descript... | closed | false | null | [] | null | 2 | 2019-10-10T07:48:14Z | 2020-04-03T05:47:04Z | 2020-04-03T05:46:57Z | NONE | null | code:
t = [1]*4782+[2]*1030+[3]*251+[4]*122+[5]*177
t = pd.Series(t)
result = pd.qcut(t,50,duplicates = 'drop').value_counts()
problem:
print(result), we get
(0.999, 2.0] 5812
(2.0, 3.0] 251
(4.0, 5.0] 177
(3.0, 4.0] 122
t.value_counts(), we get
1 4782
2 1030
3 251
5 ... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28892/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28892/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28893 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28893/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28893/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28893/events | https://github.com/pandas-dev/pandas/issues/28893 | 505,123,979 | MDU6SXNzdWU1MDUxMjM5Nzk= | 28,893 | whitespaces in column name handled differently than input to eval/query | {
"avatar_url": "https://avatars.githubusercontent.com/u/18293712?v=4",
"events_url": "https://api.github.com/users/EinarJohnsen/events{/privacy}",
"followers_url": "https://api.github.com/users/EinarJohnsen/followers",
"following_url": "https://api.github.com/users/EinarJohnsen/following{/other_user}",
"gist... | [
{
"color": "f3afff",
"default": false,
"description": "pd.eval, query",
"id": 1631985267,
"name": "expressions",
"node_id": "MDU6TGFiZWwxNjMxOTg1MjY3",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/expressions"
}
] | closed | false | null | [] | null | 4 | 2019-10-10T08:42:46Z | 2020-01-29T08:15:19Z | 2020-01-29T08:15:18Z | NONE | null | #### Code Sample
```python
>>> import pandas as pd
>>> d = pd.DataFrame(([1, 2], [3, 4]), columns=["Col 1", "Col 2"])
>>> d.query("`Col 1` < `Col 2`") # This works as expected.
Col 1 Col 2
0 1 2
1 3 4
>>> d.query("`Col 1` < `Col 2`") # 2 whitespaces between "Col" and "1". Also works,... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28893/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28893/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28894 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28894/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28894/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28894/events | https://github.com/pandas-dev/pandas/pull/28894 | 505,157,874 | MDExOlB1bGxSZXF1ZXN0MzI2NjQ0NjUw | 28,894 | def item( was broken | {
"avatar_url": "https://avatars.githubusercontent.com/u/17853685?v=4",
"events_url": "https://api.github.com/users/avloss/events{/privacy}",
"followers_url": "https://api.github.com/users/avloss/followers",
"following_url": "https://api.github.com/users/avloss/following{/other_user}",
"gists_url": "https://a... | [] | closed | false | null | [] | null | 3 | 2019-10-10T09:45:53Z | 2019-10-22T01:04:18Z | 2019-10-22T01:04:18Z | NONE | null | `pd.DataFrame({"a":[1,2,3]}).a.item() ` -- breaks!
`pd.DataFrame({"a":[1,2,3]}).a.values.item(0)` --- this is actual expected behaviour
- [ ] closes #xxxx
- [ ] tests added / passed
- [ ] passes `black pandas`
- [ ] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [ ] whatsnew entry
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28894/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28894/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28894.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28894",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/28894.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28894"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28895 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28895/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28895/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28895/events | https://github.com/pandas-dev/pandas/issues/28895 | 505,292,480 | MDU6SXNzdWU1MDUyOTI0ODA= | 28,895 | Create to_elastic method | {
"avatar_url": "https://avatars.githubusercontent.com/u/25480529?v=4",
"events_url": "https://api.github.com/users/kDmartel/events{/privacy}",
"followers_url": "https://api.github.com/users/kDmartel/followers",
"following_url": "https://api.github.com/users/kDmartel/following{/other_user}",
"gists_url": "htt... | [] | closed | false | null | [] | null | 1 | 2019-10-10T14:01:11Z | 2019-10-10T15:12:27Z | 2019-10-10T15:12:27Z | NONE | null | ### Code Sample, a copy-pastable example if possible
### Problem description
Create method to export a pandas dataframe data to elasticsearch json format like to_excel, to_csv, to_sql methods.
### Input
df : pandas dataframe
index : str : elasticsearch index
type : str : elasticsearch type
EX :
df.head... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28895/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28895/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28896 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28896/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28896/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28896/events | https://github.com/pandas-dev/pandas/issues/28896 | 505,328,202 | MDU6SXNzdWU1MDUzMjgyMDI= | 28,896 | Failing multiplication if both dataframes contain the (seemingly) identical categorical column | {
"avatar_url": "https://avatars.githubusercontent.com/u/7702207?v=4",
"events_url": "https://api.github.com/users/harmbuisman/events{/privacy}",
"followers_url": "https://api.github.com/users/harmbuisman/followers",
"following_url": "https://api.github.com/users/harmbuisman/following{/other_user}",
"gists_ur... | [
{
"color": "006b75",
"default": false,
"description": "Arithmetic, Comparison, and Logical operations",
"id": 47223669,
"name": "Numeric Operations",
"node_id": "MDU6TGFiZWw0NzIyMzY2OQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Numeric%20Operations"
},
{
"c... | closed | false | null | [] | null | 2 | 2019-10-10T14:57:25Z | 2020-08-19T12:30:10Z | 2020-08-19T12:30:10Z | NONE | null | #### Code Sample, a copy-pastable example if possible
```python
import pandas as pd
pop = pd.read_pickle('pop.pcl')
a = pd.read_pickle('rates_all.pcl')
b = pd.read_pickle('rates_main.pcl')
print('####### Dataframes #######')
print(pop)
print(a)
print(b)
print('\n####### Indices #######')
print(b.inde... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28896/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28896/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28897 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28897/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28897/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28897/events | https://github.com/pandas-dev/pandas/pull/28897 | 505,358,818 | MDExOlB1bGxSZXF1ZXN0MzI2ODA3NzY0 | 28,897 | REF: maybe_promote refactor/cleanup | {
"avatar_url": "https://avatars.githubusercontent.com/u/8078968?v=4",
"events_url": "https://api.github.com/users/jbrockmendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jbrockmendel/followers",
"following_url": "https://api.github.com/users/jbrockmendel/following{/other_user}",
"gists... | [
{
"color": "e102d8",
"default": false,
"description": "Unexpected or buggy dtype conversions",
"id": 31404521,
"name": "Dtype Conversions",
"node_id": "MDU6TGFiZWwzMTQwNDUyMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Dtype%20Conversions"
},
{
"color": "207... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 3 | 2019-10-10T15:48:17Z | 2019-10-12T18:27:57Z | 2019-10-12T17:14:22Z | MEMBER | null | There is some casting we currently do in many places in this function. Instead this PR implements `_ensure_dtype_type` and calls it once at the end of the function.
Removes _check_lossless_cast which can be replaced with np.can_cast | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28897/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28897/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28897.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28897",
"merged_at": "2019-10-12T17:14:22Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28897.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28897"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28898 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28898/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28898/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28898/events | https://github.com/pandas-dev/pandas/issues/28898 | 505,373,895 | MDU6SXNzdWU1MDUzNzM4OTU= | 28,898 | AttributeError: module 'pandas.core.common' has no attribute '_unpickle_array' | {
"avatar_url": "https://avatars.githubusercontent.com/u/13159005?v=4",
"events_url": "https://api.github.com/users/simonjayhawkins/events{/privacy}",
"followers_url": "https://api.github.com/users/simonjayhawkins/followers",
"following_url": "https://api.github.com/users/simonjayhawkins/following{/other_user}"... | [
{
"color": "207de5",
"default": false,
"description": null,
"id": 211029535,
"name": "Clean",
"node_id": "MDU6TGFiZWwyMTEwMjk1MzU=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Clean"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 3 | 2019-10-10T16:15:23Z | 2019-11-07T21:21:43Z | 2019-11-07T21:21:43Z | MEMBER | null | mypy errors
```
pandas\core\frame.py:2742:23: error: Module has no attribute "_unpickle_array" [attr-defined]
pandas\core\frame.py:2744:17: error: Module has no attribute "_unpickle_array" [attr-defined]
pandas\core\frame.py:2751:17: error: Module has no attribute "_unpickle_array" [attr-defined]
pandas\core\fr... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28898/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28898/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28899 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28899/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28899/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28899/events | https://github.com/pandas-dev/pandas/pull/28899 | 505,389,847 | MDExOlB1bGxSZXF1ZXN0MzI2ODMzMTA4 | 28,899 | REF: simplify maybe_promote integer cases | {
"avatar_url": "https://avatars.githubusercontent.com/u/8078968?v=4",
"events_url": "https://api.github.com/users/jbrockmendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jbrockmendel/followers",
"following_url": "https://api.github.com/users/jbrockmendel/following{/other_user}",
"gists... | [
{
"color": "e102d8",
"default": false,
"description": "Unexpected or buggy dtype conversions",
"id": 31404521,
"name": "Dtype Conversions",
"node_id": "MDU6TGFiZWwzMTQwNDUyMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Dtype%20Conversions"
},
{
"color": "207... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 2 | 2019-10-10T16:47:28Z | 2019-10-10T22:58:04Z | 2019-10-10T22:53:02Z | MEMBER | null | @jreback its a little absurd how much this can be simplified after all the trouble I went through to on the last round
Let's hope the float cases simplify as nicely (separate branch/PR) | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28899/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28899/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28899.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28899",
"merged_at": "2019-10-10T22:53:02Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28899.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28899"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28900 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28900/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28900/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28900/events | https://github.com/pandas-dev/pandas/issues/28900 | 505,394,350 | MDU6SXNzdWU1MDUzOTQzNTA= | 28,900 | API/DEPR: numeric_only kwarg for apply/reductions | {
"avatar_url": "https://avatars.githubusercontent.com/u/8078968?v=4",
"events_url": "https://api.github.com/users/jbrockmendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jbrockmendel/followers",
"following_url": "https://api.github.com/users/jbrockmendel/following{/other_user}",
"gists... | [
{
"color": "5319e7",
"default": false,
"description": "Functionality to remove in pandas",
"id": 87485152,
"name": "Deprecate",
"node_id": "MDU6TGFiZWw4NzQ4NTE1Mg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Deprecate"
},
{
"color": "207de5",
"default": f... | closed | false | null | [] | null | 17 | 2019-10-10T16:56:57Z | 2021-10-06T18:08:36Z | 2021-10-06T18:08:36Z | MEMBER | null | A lot of complexity in DataFrame._reduce/apply/groupby ops is driven by the numeric_only=None. In these cases we try to apply the reduction to non-numeric dtypes and if it fails, exclude them. This hugely complicated our exception handling.
We should consider removing that option and require users to subset the ap... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28900/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28900/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28901 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28901/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28901/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28901/events | https://github.com/pandas-dev/pandas/issues/28901 | 505,394,520 | MDU6SXNzdWU1MDUzOTQ1MjA= | 28,901 | Unable to map background gradient from numeric column entry to entire row | {
"avatar_url": "https://avatars.githubusercontent.com/u/52220105?v=4",
"events_url": "https://api.github.com/users/IPGreene/events{/privacy}",
"followers_url": "https://api.github.com/users/IPGreene/followers",
"following_url": "https://api.github.com/users/IPGreene/following{/other_user}",
"gists_url": "htt... | [
{
"color": "8AE234",
"default": false,
"description": null,
"id": 2413328,
"name": "Visualization",
"node_id": "MDU6TGFiZWwyNDEzMzI4",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Visualization"
},
{
"color": "006b75",
"default": false,
"description": "co... | closed | false | null | [] | {
"closed_at": "2021-07-02T07:59:17Z",
"closed_issues": 2396,
"created_at": "2020-11-11T19:05:43Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/j... | 1 | 2019-10-10T16:57:20Z | 2021-03-25T01:55:01Z | 2021-02-20T21:07:11Z | NONE | null |
```python
import pandas as pd
import seaborn as sns
data = [['thing', 'T01', 0], ['thing2', 'T02', 5], ['thing3', 'T03', 25], ['thing', 'T01', 2]]
df = pd.DataFrame(data, columns=['Access', 'Access ID', 'Freq'])
cm = sns.light_palette("green", as_cmap=True)
df.style.set_caption('Access').background_gradient(c... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28901/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28901/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28902 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28902/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28902/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28902/events | https://github.com/pandas-dev/pandas/issues/28902 | 505,401,491 | MDU6SXNzdWU1MDU0MDE0OTE= | 28,902 | No metadata preventing installs of other packages | {
"avatar_url": "https://avatars.githubusercontent.com/u/11297053?v=4",
"events_url": "https://api.github.com/users/LizMcQuillan/events{/privacy}",
"followers_url": "https://api.github.com/users/LizMcQuillan/followers",
"following_url": "https://api.github.com/users/LizMcQuillan/following{/other_user}",
"gist... | [] | closed | false | null | [] | null | 6 | 2019-10-10T17:12:50Z | 2019-10-11T14:02:44Z | 2019-10-11T14:02:44Z | NONE | null | I'm trying to install a few packages (spacy, scattertext, etc) and keep getting this pandas error
```
No metadata found in ./anaconda3/lib/python3.7/site-packages
Could not install packages due to an EnvironmentError: [Errno 2] No such file or directory: '/Users/lmcquillan/anaconda3/lib/python3.7/site-packages/pan... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28902/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28902/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28903 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28903/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28903/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28903/events | https://github.com/pandas-dev/pandas/issues/28903 | 505,469,024 | MDU6SXNzdWU1MDU0NjkwMjQ= | 28,903 | groupby boxplot example does not work | {
"avatar_url": "https://avatars.githubusercontent.com/u/4280843?v=4",
"events_url": "https://api.github.com/users/ingrid88/events{/privacy}",
"followers_url": "https://api.github.com/users/ingrid88/followers",
"following_url": "https://api.github.com/users/ingrid88/following{/other_user}",
"gists_url": "http... | [
{
"color": "729FCF",
"default": false,
"description": null,
"id": 233160,
"name": "Groupby",
"node_id": "MDU6TGFiZWwyMzMxNjA=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Groupby"
},
{
"color": "8AE234",
"default": false,
"description": null,
"id": ... | closed | false | {
"avatar_url": "https://avatars.githubusercontent.com/u/65821810?v=4",
"events_url": "https://api.github.com/users/gsyqax/events{/privacy}",
"followers_url": "https://api.github.com/users/gsyqax/followers",
"following_url": "https://api.github.com/users/gsyqax/following{/other_user}",
"gists_url": "https://a... | [
{
"avatar_url": "https://avatars.githubusercontent.com/u/65821810?v=4",
"events_url": "https://api.github.com/users/gsyqax/events{/privacy}",
"followers_url": "https://api.github.com/users/gsyqax/followers",
"following_url": "https://api.github.com/users/gsyqax/following{/other_user}",
"gists_ur... | {
"closed_at": "2020-07-28T18:13:47Z",
"closed_issues": 2378,
"created_at": "2019-12-02T12:52:48Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/j... | 5 | 2019-10-10T19:35:31Z | 2020-07-07T11:09:10Z | 2020-07-07T11:09:10Z | NONE | null | #### Problem description
Code found here:
https://github.com/pandas-dev/pandas/blob/v0.25.1/pandas/plotting/_core.py#L424
Example from https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.core.groupby.DataFrameGroupBy.boxplot.html does not work properly.
#### Code Sample
```python
import iter... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28903/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28903/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28904 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28904/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28904/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28904/events | https://github.com/pandas-dev/pandas/pull/28904 | 505,471,094 | MDExOlB1bGxSZXF1ZXN0MzI2ODk4MTk3 | 28,904 | clean tests/indexing/common.py | {
"avatar_url": "https://avatars.githubusercontent.com/u/26364415?v=4",
"events_url": "https://api.github.com/users/topper-123/events{/privacy}",
"followers_url": "https://api.github.com/users/topper-123/followers",
"following_url": "https://api.github.com/users/topper-123/following{/other_user}",
"gists_url"... | [
{
"color": "C4A000",
"default": false,
"description": "pandas testing functions or related to the test suite",
"id": 127685,
"name": "Testing",
"node_id": "MDU6TGFiZWwxMjc2ODU=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Testing"
},
{
"color": "0b02e1",
"d... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 1 | 2019-10-10T19:40:09Z | 2019-10-11T16:07:25Z | 2019-10-11T12:00:15Z | CONTRIBUTOR | null | clean-up of tests/indexing/common.py. | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28904/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28904/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28904.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28904",
"merged_at": "2019-10-11T12:00:15Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28904.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28904"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28905 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28905/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28905/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28905/events | https://github.com/pandas-dev/pandas/issues/28905 | 505,471,489 | MDU6SXNzdWU1MDU0NzE0ODk= | 28,905 | Warning when plotting a DataFrame with a single row | {
"avatar_url": "https://avatars.githubusercontent.com/u/4617010?v=4",
"events_url": "https://api.github.com/users/madphysicist/events{/privacy}",
"followers_url": "https://api.github.com/users/madphysicist/followers",
"following_url": "https://api.github.com/users/madphysicist/following{/other_user}",
"gists... | [
{
"color": "8AE234",
"default": false,
"description": null,
"id": 2413328,
"name": "Visualization",
"node_id": "MDU6TGFiZWwyNDEzMzI4",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Visualization"
}
] | closed | false | null | [] | null | 4 | 2019-10-10T19:41:05Z | 2020-02-17T15:27:36Z | 2020-02-17T15:27:35Z | NONE | null | Closely related to #18306, item 9 in the listing, but probably not an exact duplicate. Based on StackOverflow question https://stackoverflow.com/q/58322744/2988730.
Simple code to reproduce:
```
import pandas as pd
df = pd.DataFrame([[1, 2, 3]], columns=['A', 'B', 'C'])
df.set_index('A', inplace=True)
df.pl... | {
"+1": 1,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 1,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28905/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28905/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28906 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28906/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28906/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28906/events | https://github.com/pandas-dev/pandas/issues/28906 | 505,483,922 | MDU6SXNzdWU1MDU0ODM5MjI= | 28,906 | read_json doesn't work on binary files with lines=True and chunksize | {
"avatar_url": "https://avatars.githubusercontent.com/u/7347808?v=4",
"events_url": "https://api.github.com/users/nlarusstone/events{/privacy}",
"followers_url": "https://api.github.com/users/nlarusstone/followers",
"following_url": "https://api.github.com/users/nlarusstone/following{/other_user}",
"gists_ur... | [
{
"color": "4E9A06",
"default": false,
"description": null,
"id": 76812,
"name": "Enhancement",
"node_id": "MDU6TGFiZWw3NjgxMg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Enhancement"
},
{
"color": "207de5",
"default": false,
"description": "read_jso... | open | false | null | [] | null | 6 | 2019-10-10T20:08:23Z | 2020-06-15T06:21:06Z | null | NONE | null | #### Code Sample, a copy-pastable example if possible
Using `test.jsonl` as the following:
{"test1":10}
{"test2":"hi"}
```python
with open('test.jsonl', 'rb') as f:
df = pd.read_json(f, lines=True, chunksize=1)
for chunk in df:
print(chunk)
```
#### Problem description
When I try to use... | {
"+1": 1,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 1,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28906/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28906/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28907 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28907/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28907/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28907/events | https://github.com/pandas-dev/pandas/pull/28907 | 505,493,521 | MDExOlB1bGxSZXF1ZXN0MzI2OTE1OTk5 | 28,907 | Added note to 'contributing.rst file', telling users to append GH Issue… | {
"avatar_url": "https://avatars.githubusercontent.com/u/32435177?v=4",
"events_url": "https://api.github.com/users/S3rbane/events{/privacy}",
"followers_url": "https://api.github.com/users/S3rbane/followers",
"following_url": "https://api.github.com/users/S3rbane/following{/other_user}",
"gists_url": "https:... | [
{
"color": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 2 | 2019-10-10T20:28:37Z | 2019-10-12T17:10:03Z | 2019-10-12T17:09:57Z | CONTRIBUTOR | null | … Number to new tests.
- [ X ] closes #28703
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28907/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28907/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28907.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28907",
"merged_at": "2019-10-12T17:09:57Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28907.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28907"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28908 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28908/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28908/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28908/events | https://github.com/pandas-dev/pandas/pull/28908 | 505,523,128 | MDExOlB1bGxSZXF1ZXN0MzI2OTM5MzEx | 28,908 | TYPING: fix type annotation for pandas.io.formats.format._binify | {
"avatar_url": "https://avatars.githubusercontent.com/u/13159005?v=4",
"events_url": "https://api.github.com/users/simonjayhawkins/events{/privacy}",
"followers_url": "https://api.github.com/users/simonjayhawkins/followers",
"following_url": "https://api.github.com/users/simonjayhawkins/following{/other_user}"... | [
{
"color": "ea91a4",
"default": false,
"description": "type annotations, mypy/pyright type checking",
"id": 1280988427,
"name": "Typing",
"node_id": "MDU6TGFiZWwxMjgwOTg4NDI3",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Typing"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 1 | 2019-10-10T21:33:51Z | 2019-10-11T12:41:24Z | 2019-10-11T12:41:20Z | MEMBER | null | - [ ] closes #28843
- [n/a ] tests added / passed
- [ ] passes `black pandas`
- [ ] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [n/a ] whatsnew entry
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28908/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28908/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28908.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28908",
"merged_at": "2019-10-11T12:41:20Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28908.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28908"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28909 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28909/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28909/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28909/events | https://github.com/pandas-dev/pandas/issues/28909 | 505,529,066 | MDU6SXNzdWU1MDU1MjkwNjY= | 28,909 | DOC: diff() when using unsigned ints | {
"avatar_url": "https://avatars.githubusercontent.com/u/45035434?v=4",
"events_url": "https://api.github.com/users/jjlkant/events{/privacy}",
"followers_url": "https://api.github.com/users/jjlkant/followers",
"following_url": "https://api.github.com/users/jjlkant/following{/other_user}",
"gists_url": "https:... | [
{
"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/j... | 0 | 2019-10-10T21:49:32Z | 2020-06-01T10:32:23Z | 2020-06-01T10:32:23Z | CONTRIBUTOR | null | #### Code Sample, a copy-pastable example if possible
```python
>>> import numpy as np
>>> import pandas as pd
>>>
>>> s = pd.Series([1, 0], dtype=np.uint8)
>>> s.diff()
0 NaN
1 255.0
dtype: float64
```
#### Problem description
The current version of the docs don't reflect on what happens when ... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28909/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28909/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28910 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28910/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28910/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28910/events | https://github.com/pandas-dev/pandas/pull/28910 | 505,529,698 | MDExOlB1bGxSZXF1ZXN0MzI2OTQ0Njc2 | 28,910 | TYPING: errors reported by mypy 0.730 | {
"avatar_url": "https://avatars.githubusercontent.com/u/13159005?v=4",
"events_url": "https://api.github.com/users/simonjayhawkins/events{/privacy}",
"followers_url": "https://api.github.com/users/simonjayhawkins/followers",
"following_url": "https://api.github.com/users/simonjayhawkins/following{/other_user}"... | [
{
"color": "ea91a4",
"default": false,
"description": "type annotations, mypy/pyright type checking",
"id": 1280988427,
"name": "Typing",
"node_id": "MDU6TGFiZWwxMjgwOTg4NDI3",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Typing"
}
] | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 1 | 2019-10-10T21:51:14Z | 2019-10-11T13:44:44Z | 2019-10-11T11:58:25Z | MEMBER | null | errors reported by mypy 0.730 on master.
```
pandas\compat\pickle_compat.py:71: error: Incompatible return type for "__new__" (returns "Series", but must return a subtype of "_LoadSparseSeries")
pandas\compat\pickle_compat.py:85: error: Incompatible return type for "__new__" (returns "DataFrame", but must return a... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28910/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28910/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28910.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28910",
"merged_at": "2019-10-11T11:58:24Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/28910.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28910"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/28911 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28911/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28911/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28911/events | https://github.com/pandas-dev/pandas/issues/28911 | 505,532,987 | MDU6SXNzdWU1MDU1MzI5ODc= | 28,911 | REF: get rid of register_dtype | {
"avatar_url": "https://avatars.githubusercontent.com/u/8078968?v=4",
"events_url": "https://api.github.com/users/jbrockmendel/events{/privacy}",
"followers_url": "https://api.github.com/users/jbrockmendel/followers",
"following_url": "https://api.github.com/users/jbrockmendel/following{/other_user}",
"gists... | [
{
"color": "FCE94F",
"default": false,
"description": "Internal refactoring of code",
"id": 127681,
"name": "Refactor",
"node_id": "MDU6TGFiZWwxMjc2ODE=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Refactor"
},
{
"color": "207de5",
"default": false,
"de... | closed | false | null | [] | null | 3 | 2019-10-10T22:00:27Z | 2019-11-05T22:10:26Z | 2019-11-05T22:10:26Z | MEMBER | null | AFAICT the only reason we need register_dtype is so that we can have a list of extent EA Dtypes to iterate over when doing is_extension_array_dtype. Is that inaccurate?
If so, let's just use `ExtensionDtype.__subclasses__()` and avoid some globals and decorators. | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28911/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28911/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/28912 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/28912/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/28912/comments | https://api.github.com/repos/pandas-dev/pandas/issues/28912/events | https://github.com/pandas-dev/pandas/pull/28912 | 505,537,362 | MDExOlB1bGxSZXF1ZXN0MzI2OTUwNzQ4 | 28,912 | Maintain Timezone Awareness with to_json and date_format="iso" | {
"avatar_url": "https://avatars.githubusercontent.com/u/609873?v=4",
"events_url": "https://api.github.com/users/WillAyd/events{/privacy}",
"followers_url": "https://api.github.com/users/WillAyd/followers",
"following_url": "https://api.github.com/users/WillAyd/following{/other_user}",
"gists_url": "https://... | [
{
"color": "207de5",
"default": false,
"description": "read_json, to_json, json_normalize",
"id": 49379259,
"name": "IO JSON",
"node_id": "MDU6TGFiZWw0OTM3OTI1OQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20JSON"
},
{
"color": "5319e7",
"default": fa... | closed | false | null | [] | null | 2 | 2019-10-10T22:11:53Z | 2020-01-16T00:33:47Z | 2019-10-30T17:09:37Z | MEMBER | null | - [X] closes #12997
- [X] tests added / passed
- [X] passes `black pandas`
- [X] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
- [X] whatsnew entry
This vendors updates from numpy that allow for tz-aware ISO date formatting. Note this does slightly change the behavior of UTC dates. Previously th... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/28912/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/28912/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/28912.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/28912",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/28912.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/28912"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.