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/8301
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8301/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8301/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8301/events
https://github.com/pandas-dev/pandas/pull/8301
43,059,718
MDExOlB1bGxSZXF1ZXN0MjEzOTQ1Njg=
8,301
VIS: default LinePlot rotation of 0
{ "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": "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
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
10
2014-09-17T20:41:41Z
2014-09-19T17:04:47Z
2014-09-19T17:04:46Z
CONTRIBUTOR
null
Closes https://github.com/pydata/pandas/issues/8150 ``` python In [1]: s = pd.Series([1,2,3]) In [2]: s.plot() Out[2]: <matplotlib.axes._subplots.AxesSubplot at 0x10da02d68> ``` ![ex](https://cloud.githubusercontent.com/assets/1312546/4310965/f43fd70c-3eaa-11e4-9e2a-aed38bd73ae3.png) No release notes since this is ...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8301/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8301/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/8301.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/8301", "merged_at": "2014-09-19T17:04:46Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/8301.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/8301" }
https://api.github.com/repos/pandas-dev/pandas/issues/8302
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8302/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8302/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8302/events
https://github.com/pandas-dev/pandas/issues/8302
43,063,664
MDU6SXNzdWU0MzA2MzY2NA==
8,302
API: add level kwarg for Series.any/.all
{ "avatar_url": "https://avatars.githubusercontent.com/u/579798?v=4", "events_url": "https://api.github.com/users/immerrr/events{/privacy}", "followers_url": "https://api.github.com/users/immerrr/followers", "following_url": "https://api.github.com/users/immerrr/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
[]
{ "closed_at": "2014-12-12T13:45:40Z", "closed_issues": 173, "created_at": "2014-10-07T14:40:52Z", "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/jr...
7
2014-09-17T21:23:14Z
2014-11-11T14:32:45Z
2014-11-11T14:32:45Z
CONTRIBUTOR
null
It appears that Series' `s.any` and `s.all` methods miss level kwargs, unlike their statistical counterparts like `s.sum`: ``` python In [4]: s = pd.Series([0,1,2], index=[0,0,1]) In [5]: s.sum(level=0) Out[5]: 0 1 1 2 dtype: int64 In [6]: s.prod(level=0) Out[6]: 0 0 1 2 dtype: int64 In [7]: s.any(lev...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8302/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8302/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8303
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8303/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8303/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8303/events
https://github.com/pandas-dev/pandas/issues/8303
43,066,099
MDU6SXNzdWU0MzA2NjA5OQ==
8,303
subset keyword argument will include last column if incorrect keys are given
{ "avatar_url": "https://avatars.githubusercontent.com/u/4633429?v=4", "events_url": "https://api.github.com/users/arijun/events{/privacy}", "followers_url": "https://api.github.com/users/arijun/followers", "following_url": "https://api.github.com/users/arijun/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": "d7e102", "default": false, "description": "np.nan, pd.NaT, pd.NA, d...
closed
false
null
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
13
2014-09-17T21:47:42Z
2014-09-26T14:35:18Z
2014-09-26T14:35:18Z
NONE
null
If you give a non-existent key to the subset argument it will default to the last column. For example: ``` In [3]: d = pd.DataFrame({'a':[1],'b':[2],'c':[np.nan]}) In [4]: len(d.dropna(subset=['x'])) Out[4]: 0 ``` It seems the problem is in the line where dropna takes the subset: ``` agg_obj = self.take(ax.get_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/8303/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8303/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8304
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8304/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8304/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8304/events
https://github.com/pandas-dev/pandas/issues/8304
43,068,795
MDU6SXNzdWU0MzA2ODc5NQ==
8,304
to_clipboard() locks clipboard system-wide on exception
{ "avatar_url": "https://avatars.githubusercontent.com/u/361447?v=4", "events_url": "https://api.github.com/users/klonuo/events{/privacy}", "followers_url": "https://api.github.com/users/klonuo/followers", "following_url": "https://api.github.com/users/klonuo/following{/other_user}", "gists_url": "https://api...
[ { "color": "ffa0ff", "default": false, "description": "Incorrect or improved errors from pandas", "id": 42670965, "name": "Error Reporting", "node_id": "MDU6TGFiZWw0MjY3MDk2NQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Error%20Reporting" } ]
closed
false
null
[]
null
2
2014-09-17T22:19:13Z
2015-10-20T22:41:57Z
2015-10-20T22:41:57Z
CONTRIBUTOR
null
Exception in the following code locks clipboard system-wide until I exit my interactive Python session: ``` python import pandas as pd df = pd.DataFrame.from_dict({1: u' \u2014'}, 'index') df.to_clipboard() --------------------------------------------------------------------------- UnicodeEncodeError ...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8304/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8304/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8305
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8305/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8305/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8305/events
https://github.com/pandas-dev/pandas/issues/8305
43,070,858
MDU6SXNzdWU0MzA3MDg1OA==
8,305
to_clipboard(excel=False) truncates strings to 50 characters
{ "avatar_url": "https://avatars.githubusercontent.com/u/361447?v=4", "events_url": "https://api.github.com/users/klonuo/events{/privacy}", "followers_url": "https://api.github.com/users/klonuo/followers", "following_url": "https://api.github.com/users/klonuo/following{/other_user}", "gists_url": "https://api...
[ { "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": "ededed", "default": false, "description": "__repr__ of pandas objec...
closed
false
null
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
9
2014-09-17T22:41:20Z
2014-09-23T14:40:59Z
2014-09-23T14:40:59Z
CONTRIBUTOR
null
I hope this is not intended as I can't find the point in this behavior: ``` python import pandas as pd df = pd.DataFrame.from_dict({1: ''.join(['1234567890'] * 6)}, 'index') df.to_clipboard(excel=False) ``` result copied to clipboard: ``` 0 1 1234567890123456789012...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8305/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8305/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8306
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8306/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8306/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8306/events
https://github.com/pandas-dev/pandas/issues/8306
43,122,904
MDU6SXNzdWU0MzEyMjkwNA==
8,306
ERR: raise in tz incompat with DatetimeIndex ops
{ "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://...
[ { "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": "AD7FA8", "default": false, "description": null, ...
closed
false
null
[]
{ "closed_at": "2018-07-06T16:24:08Z", "closed_issues": 73, "created_at": "2018-06-07T10:56:05Z", "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/jre...
13
2014-09-18T11:35:40Z
2018-06-18T22:34:30Z
2018-06-18T22:34:30Z
CONTRIBUTOR
null
xref #6552 ``` idx = pd.date_range(..., tz='UTC') idx2 = idx.reindex(pd.date_range(..., tz='US/Pacific') ``` - [ ] subtraction of datetime like - [ ] intersection / union / difference - [ ] reindex
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8306/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8306/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8307
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8307/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8307/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8307/events
https://github.com/pandas-dev/pandas/pull/8307
43,131,041
MDExOlB1bGxSZXF1ZXN0MjE0MzIwODI=
8,307
VIS: Hide labels for NaN/zeros in boxplt [WIP]
{ "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": "8AE234", "default": false, "description": null, "id": 2413328, "name": "Visualization", "node_id": "MDU6TGFiZWwyNDEzMzI4", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Visualization" }, { "color": "d7e102", "default": false, "description": "np...
closed
false
null
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
7
2014-09-18T13:14:37Z
2014-09-25T18:41:36Z
2014-09-25T16:55:01Z
CONTRIBUTOR
null
Closes: https://github.com/pydata/pandas/issues/8198 The idea is to hide the labels around the pie plot so they don't overlap w/ nonzero labels. The NaN/zero labels should still be visible in the legend to indicate that there's missing data. There's a picture of the problem in the linked issue. NaNs in the top row of...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8307/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8307/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/8307.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/8307", "merged_at": "2014-09-25T16:55:01Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/8307.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/8307" }
https://api.github.com/repos/pandas-dev/pandas/issues/8308
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8308/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8308/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8308/events
https://github.com/pandas-dev/pandas/issues/8308
43,138,869
MDU6SXNzdWU0MzEzODg2OQ==
8,308
DOC: Use square plots for Pie Plots
{ "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": "3465A4", "default": false, "description": null, "id": 134699, "name": "Docs", "node_id": "MDU6TGFiZWwxMzQ2OTk=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs" }, { "color": "8AE234", "default": false, "description": null, "id": 241332...
closed
false
null
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
2
2014-09-18T14:28:07Z
2014-10-04T15:19:50Z
2014-10-04T15:19:50Z
CONTRIBUTOR
null
They look funny because the aspect ratio is off: http://pandas-docs.github.io/pandas-docs-travis/visualization.html#pie-plot May also want to note that in the text also. This would be great for a first pull request if anyone is interested. Just need to set the figsize to something like (8, 8) for each plot (or (16, 8...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8308/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8308/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8309
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8309/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8309/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8309/events
https://github.com/pandas-dev/pandas/issues/8309
43,145,877
MDU6SXNzdWU0MzE0NTg3Nw==
8,309
pandas.cut crashes on all zero input
{ "avatar_url": "https://avatars.githubusercontent.com/u/184899?v=4", "events_url": "https://api.github.com/users/RasterBurn/events{/privacy}", "followers_url": "https://api.github.com/users/RasterBurn/followers", "following_url": "https://api.github.com/users/RasterBurn/following{/other_user}", "gists_url": ...
[ { "color": "02d7e1", "default": false, "description": "Concat, Merge/Join, Stack/Unstack, Explode", "id": 13098779, "name": "Reshaping", "node_id": "MDU6TGFiZWwxMzA5ODc3OQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Reshaping" }, { "color": "009800", "de...
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...
2
2014-09-18T15:29:30Z
2018-07-06T22:14:58Z
2018-07-06T22:14:17Z
NONE
null
xref #7751 ``` python import pandas as pd pd.cut([0,0,0,0], 10) ``` result: ``` ValueError: Bin edges must be unique: array([ 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]) ``` On the other hand, pandas.cut works on non-unique inputs other than zero. The culprit are the following [lines of code in tile.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/8309/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8309/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8310
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8310/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8310/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8310/events
https://github.com/pandas-dev/pandas/issues/8310
43,159,904
MDU6SXNzdWU0MzE1OTkwNA==
8,310
IndexError when indexing into numpy array using a Series
{ "avatar_url": "https://avatars.githubusercontent.com/u/1696066?v=4", "events_url": "https://api.github.com/users/mirage007/events{/privacy}", "followers_url": "https://api.github.com/users/mirage007/followers", "following_url": "https://api.github.com/users/mirage007/following{/other_user}", "gists_url": "h...
[ { "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": "AD...
closed
false
null
[]
null
1
2014-09-18T17:47:54Z
2014-09-18T17:53:18Z
2014-09-18T17:52:48Z
NONE
null
I'm getting a weird error in 0.14.1 that i didn't have in 0.10.1 ``` python >>> import numpy as np >>> import pandas >>> np.__version__ Out[8]: '1.8.2' >>> pandas.__version__ Out[9]: '0.14.1' >>> a = np.arange(10) >>> b = pandas.Series([1,2,3]) >>> a[b] Traceback (most recent call last): File "C:\Python27\lib\site-p...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8310/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8310/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8311
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8311/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8311/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8311/events
https://github.com/pandas-dev/pandas/issues/8311
43,167,050
MDU6SXNzdWU0MzE2NzA1MA==
8,311
Series constructor doesn't handle object implementing numpy array interface
{ "avatar_url": "https://avatars.githubusercontent.com/u/610115?v=4", "events_url": "https://api.github.com/users/dalejung/events{/privacy}", "followers_url": "https://api.github.com/users/dalejung/followers", "following_url": "https://api.github.com/users/dalejung/following{/other_user}", "gists_url": "https...
[ { "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": "AD7...
closed
false
null
[]
null
7
2014-09-18T19:02:22Z
2015-10-20T23:12:24Z
2015-10-20T23:12:24Z
CONTRIBUTOR
null
``` python In [1]: import pandas as pd In [2]: import rpy2 In [7]: import numpy as np In [4]: arr = rpy2.robjects.IntVector(range(10)) In [5]: arr Out[5]: <IntVector - Python:0x102ed3908 / R:0x105a7c178> [ 0, 1, 2, ..., 7, 8, 9] In [6]: pd.Series(arr) # wrong behavior Out[6]: 0...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8311/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8311/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8312
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8312/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8312/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8312/events
https://github.com/pandas-dev/pandas/issues/8312
43,167,854
MDU6SXNzdWU0MzE2Nzg1NA==
8,312
VIS/DOC: clean-up plots in the 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": "8AE234", "default": false, "description": null, "id": 241332...
closed
false
null
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
7
2014-09-18T19:10:38Z
2014-10-04T18:53:43Z
2014-10-04T18:01:29Z
MEMBER
null
This is of course taste, but I personally find some of the plots on the docs not very pleasing to the eyes. Some different things: - [x] Too dense minor gridlines (solved by using mpl 1.4): - Eg the first plot on the page: http://pandas-docs.github.io/pandas-docs-travis/visualization.html#basic-plotting-plot - It b...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8312/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8312/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8313
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8313/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8313/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8313/events
https://github.com/pandas-dev/pandas/issues/8313
43,170,353
MDU6SXNzdWU0MzE3MDM1Mw==
8,313
API: rolling_* functions should have default window arg of None
{ "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": "729FCF", "default": false, "description": null, "id": 233160, "name": "Groupby", "node_id": "MDU6TGFiZWwyMzMxNjA=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Groupby" }, { "color": "a10c02", "default": false, "description": "Memory or execu...
closed
false
null
[]
{ "closed_at": null, "closed_issues": 786, "created_at": "2015-01-13T10:53:19Z", "creator": { "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", ...
10
2014-09-18T19:38:59Z
2016-11-13T17:51:05Z
2016-11-13T17:51:05Z
CONTRIBUTOR
null
I could be missing an easier way, but a lot of times I want to apply a rolling function to something like a groupby. This isn't the easiest thing in the world since the rolling functions take 2 arguments and `groupby.apply` is expecting a function with one argument. Maybe there's some way with passing in `args` to `gro...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8313/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8313/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8314
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8314/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8314/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8314/events
https://github.com/pandas-dev/pandas/pull/8314
43,187,961
MDExOlB1bGxSZXF1ZXN0MjE0Njg2ODg=
8,314
Allow preservation of object dtype when convert_numeric=True
{ "avatar_url": "https://avatars.githubusercontent.com/u/417981?v=4", "events_url": "https://api.github.com/users/cpcloud/events{/privacy}", "followers_url": "https://api.github.com/users/cpcloud/followers", "following_url": "https://api.github.com/users/cpcloud/following{/other_user}", "gists_url": "https://...
[]
closed
false
null
[]
null
7
2014-09-18T23:01:23Z
2014-09-19T00:11:10Z
2014-09-19T00:11:10Z
MEMBER
null
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/8314/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8314/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/8314.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/8314", "merged_at": null, "patch_url": "https://github.com/pandas-dev/pandas/pull/8314.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/8314" }
https://api.github.com/repos/pandas-dev/pandas/issues/8315
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8315/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8315/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8315/events
https://github.com/pandas-dev/pandas/issues/8315
43,192,122
MDU6SXNzdWU0MzE5MjEyMg==
8,315
Can't run in optimized mode on Ubuntu
{ "avatar_url": "https://avatars.githubusercontent.com/u/2191680?v=4", "events_url": "https://api.github.com/users/abeerag/events{/privacy}", "followers_url": "https://api.github.com/users/abeerag/followers", "following_url": "https://api.github.com/users/abeerag/following{/other_user}", "gists_url": "https:/...
[ { "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": "2015-03-23T10:50:37Z", "closed_issues": 400, "created_at": "2014-02-14T03:31:22Z", "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/jr...
2
2014-09-19T00:03:36Z
2014-12-04T08:27:53Z
2014-12-04T08:27:53Z
NONE
null
If I start python with a -O flag, I get an error as soon as I import pandas ``` python python -O Python 2.7.6 (default, Mar 22 2014, 22:59:56) [GCC 4.8.2] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import pandas as pd Traceback (most recent call last): File "<stdin>", line ...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8315/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8315/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8316
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8316/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8316/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8316/events
https://github.com/pandas-dev/pandas/pull/8316
43,192,616
MDExOlB1bGxSZXF1ZXN0MjE0NzEzMTY=
8,316
BUG: Exception raised when `to_sql` used to insert empty dataframe
{ "avatar_url": "https://avatars.githubusercontent.com/u/833768?v=4", "events_url": "https://api.github.com/users/artemyk/events{/privacy}", "followers_url": "https://api.github.com/users/artemyk/followers", "following_url": "https://api.github.com/users/artemyk/following{/other_user}", "gists_url": "https://...
[]
closed
false
null
[]
null
1
2014-09-19T00:13:00Z
2014-09-19T09:21:07Z
2014-09-19T09:21:07Z
CONTRIBUTOR
null
Right now, if inserting an empty table (no rows) using `to_sql`, the following exception is raised: ``` ... File "/Users/artemy/dev/pandas/pandas/io/sql.py", line 1220, in to_sql table.insert(chunksize) File "/Users/artemy/dev/pandas/pandas/io/sql.py", line 659, in insert chunks = int(nrows / chunksize) + ...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8316/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8316/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/8316.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/8316", "merged_at": "2014-09-19T09:21:07Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/8316.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/8316" }
https://api.github.com/repos/pandas-dev/pandas/issues/8317
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8317/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8317/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8317/events
https://github.com/pandas-dev/pandas/issues/8317
43,198,807
MDU6SXNzdWU0MzE5ODgwNw==
8,317
CLN: Generalized PEP8 Enforcement
{ "avatar_url": "https://avatars.githubusercontent.com/u/226109?v=4", "events_url": "https://api.github.com/users/iwschris/events{/privacy}", "followers_url": "https://api.github.com/users/iwschris/followers", "following_url": "https://api.github.com/users/iwschris/following{/other_user}", "gists_url": "https...
[ { "color": "eb6420", "default": false, "description": "Code style, linting, code_checks", "id": 106935113, "name": "Code Style", "node_id": "MDU6TGFiZWwxMDY5MzUxMTM=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Code%20Style" } ]
closed
false
null
[]
{ "closed_at": null, "closed_issues": 786, "created_at": "2015-01-13T10:53:19Z", "creator": { "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", ...
2
2014-09-19T02:33:28Z
2015-12-30T15:19:43Z
2015-12-30T15:19:43Z
CONTRIBUTOR
null
Per @jorisvandenbossche (https://github.com/pydata/pandas/pull/8286#issuecomment-56043336), we need to discuss a generalized way of enforcing PEP8 on the entire pandas code base. Matplotlib has something similar here: https://github.com/matplotlib/matplotlib/blob/master/lib/matplotlib/tests/test_coding_standards.py, 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/8317/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8317/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8318
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8318/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8318/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8318/events
https://github.com/pandas-dev/pandas/issues/8318
43,203,098
MDU6SXNzdWU0MzIwMzA5OA==
8,318
Indexing issue for dataframes with duplicate indexes
{ "avatar_url": "https://avatars.githubusercontent.com/u/7418646?v=4", "events_url": "https://api.github.com/users/grechkay/events{/privacy}", "followers_url": "https://api.github.com/users/grechkay/followers", "following_url": "https://api.github.com/users/grechkay/following{/other_user}", "gists_url": "http...
[ { "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" } ]
closed
false
null
[]
null
2
2014-09-19T04:23:34Z
2014-09-19T16:44:58Z
2014-09-19T12:01:11Z
CONTRIBUTOR
null
Consider: df1 = DataFrame(np.arange(9.).reshape((3, 3)), columns=list('bcd'), index=['a', 'a', 'c']) Then, df1.loc[['a','c'],['b','c']] results in a key error while, df1.loc[['a','c'],:].loc[:,['b','c']] produces the intended result.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8318/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8318/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8319
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8319/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8319/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8319/events
https://github.com/pandas-dev/pandas/issues/8319
43,243,022
MDU6SXNzdWU0MzI0MzAyMg==
8,319
ENH: add option to HDFStore.put/append to optionally store the index of the object (default for back compat is True)
{ "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://...
[ { "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": "5319e7", "default": false, "description": "read_hdf...
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
2014-09-19T14:17:47Z
2020-04-10T02:36:09Z
null
CONTRIBUTOR
null
``` store.append(df,'df',write_index=True) ``` makes sense (`index` is already taken as its passed thru to determine whether to create an actual on in the table)
{ "+1": 3, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 3, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8319/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8319/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8320
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8320/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8320/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8320/events
https://github.com/pandas-dev/pandas/pull/8320
43,248,088
MDExOlB1bGxSZXF1ZXN0MjE1MDMxODg=
8,320
BUG: Bug in .at that would accept integer indexers on a non-integer index and do fallback (GH7814)
{ "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://...
[ { "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...
closed
false
null
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
0
2014-09-19T15:04:14Z
2014-09-19T15:40:59Z
2014-09-19T15:40:59Z
CONTRIBUTOR
null
closes #7814
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8320/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8320/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/8320.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/8320", "merged_at": "2014-09-19T15:40:58Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/8320.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/8320" }
https://api.github.com/repos/pandas-dev/pandas/issues/8321
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8321/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8321/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8321/events
https://github.com/pandas-dev/pandas/pull/8321
43,257,138
MDExOlB1bGxSZXF1ZXN0MjE1MDg2ODA=
8,321
ENH: Add Numpy Array Interface support to Pandas objects
{ "avatar_url": "https://avatars.githubusercontent.com/u/610115?v=4", "events_url": "https://api.github.com/users/dalejung/events{/privacy}", "followers_url": "https://api.github.com/users/dalejung/followers", "following_url": "https://api.github.com/users/dalejung/following{/other_user}", "gists_url": "https...
[ { "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": "AD7...
closed
false
null
[]
null
15
2014-09-19T16:32:09Z
2015-05-09T15:58:57Z
2015-05-09T15:58:57Z
CONTRIBUTOR
null
WIP
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8321/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8321/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/8321.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/8321", "merged_at": null, "patch_url": "https://github.com/pandas-dev/pandas/pull/8321.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/8321" }
https://api.github.com/repos/pandas-dev/pandas/issues/8322
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8322/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8322/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8322/events
https://github.com/pandas-dev/pandas/pull/8322
43,260,238
MDExOlB1bGxSZXF1ZXN0MjE1MTA1MDY=
8,322
BUG: Bug in casting when setting a column in a same-dtype block (GH7704)
{ "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://...
[ { "color": "e10c02", "default": false, "description": null, "id": 76811, "name": "Bug", "node_id": "MDU6TGFiZWw3NjgxMQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug" }, { "color": "e102d8", "default": false, "description": "Unexpected or buggy dtyp...
closed
false
null
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
0
2014-09-19T17:04:28Z
2014-09-19T20:05:55Z
2014-09-19T20:05:55Z
CONTRIBUTOR
null
closes #7704
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8322/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8322/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/8322.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/8322", "merged_at": "2014-09-19T20:05:55Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/8322.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/8322" }
https://api.github.com/repos/pandas-dev/pandas/issues/8323
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8323/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8323/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8323/events
https://github.com/pandas-dev/pandas/issues/8323
43,273,434
MDU6SXNzdWU0MzI3MzQzNA==
8,323
Bloomberg Hackathon
{ "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://...
[]
closed
false
null
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
41
2014-09-19T19:26:33Z
2014-12-01T00:55:51Z
2014-12-01T00:55:51Z
CONTRIBUTOR
null
Contributing Guidlines / Help: https://github.com/pydata/pandas/wiki Dev Docs http://pandas-docs.github.io/pandas-docs-travis/whatsnew.html Docs: - Doc Strings examples/links: https://github.com/pydata/pandas/issues/3439, https://github.com/pydata/pandas/issues/2916, https://github.com/pydata/pandas/issues/3324 - ~~D...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8323/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8323/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8324
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8324/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8324/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8324/events
https://github.com/pandas-dev/pandas/issues/8324
43,281,443
MDU6SXNzdWU0MzI4MTQ0Mw==
8,324
TST: test failure on 26-64 / 26-32 on windows related to GH8044
{ "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://...
[ { "color": "C4A000", "default": false, "description": "pandas testing functions or related to the test suite", "id": 127685, "name": "Testing", "node_id": "MDU6TGFiZWwxMjc2ODU=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Testing" }, { "color": "fbca04", "d...
closed
false
null
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
2
2014-09-19T20:51:24Z
2014-09-21T17:22:49Z
2014-09-21T17:22:49Z
CONTRIBUTOR
null
cc @amras1 xref #8044 ``` C:\Users\Jeff Reback\Documents\GitHub\pandas>c:\Python26-64\Scripts\nosetests.exe build\lib.win-amd64-2.6\pandas\io\tests\test_parsers.py --pdb --pdb-failure RuntimeError: module compiled against API version 9 but this version of numpy is 7 .....................................................
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8324/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8324/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8325
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8325/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8325/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8325/events
https://github.com/pandas-dev/pandas/issues/8325
43,282,578
MDU6SXNzdWU0MzI4MjU3OA==
8,325
to_gbq: Allow creation of new tables from DataFrame (and generate schema)
{ "avatar_url": "https://avatars.githubusercontent.com/u/1598379?v=4", "events_url": "https://api.github.com/users/jtratner/events{/privacy}", "followers_url": "https://api.github.com/users/jtratner/followers", "following_url": "https://api.github.com/users/jtratner/following{/other_user}", "gists_url": "http...
[ { "color": "0052cc", "default": false, "description": "pandas-gbq compatability", "id": 57351315, "name": "IO Google", "node_id": "MDU6TGFiZWw1NzM1MTMxNQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20Google" } ]
closed
false
null
[]
{ "closed_at": "2015-10-09T18:34:35Z", "closed_issues": 593, "created_at": "2015-03-23T10:47:38Z", "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/jr...
5
2014-09-19T21:04:05Z
2015-09-13T20:20:52Z
2015-09-13T20:20:52Z
CONTRIBUTOR
null
Small extension on top the `to_gbq` so that you can actually create new tables given only an existing dataframe. Given an arbitrary `DataFrame` with a _non_ hierarchical-index, create a schema from it. For now, we'd likely assume that `object` dtype columns are string and maybe allow for specifying some or all columns ...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8325/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8325/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8326
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8326/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8326/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8326/events
https://github.com/pandas-dev/pandas/pull/8326
43,284,549
MDExOlB1bGxSZXF1ZXN0MjE1MjQ5Mjg=
8,326
ENH: Numerically stable Cython functions `roll_cov` and `roll_corr`
{ "avatar_url": "https://avatars.githubusercontent.com/u/3343990?v=4", "events_url": "https://api.github.com/users/jaimefrio/events{/privacy}", "followers_url": "https://api.github.com/users/jaimefrio/followers", "following_url": "https://api.github.com/users/jaimefrio/following{/other_user}", "gists_url": "h...
[ { "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
[]
{ "closed_at": null, "closed_issues": 786, "created_at": "2015-01-13T10:53:19Z", "creator": { "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", ...
13
2014-09-19T21:26:31Z
2015-05-09T16:00:41Z
2015-05-09T16:00:41Z
CONTRIBUTOR
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/8326/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8326/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/8326.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/8326", "merged_at": null, "patch_url": "https://github.com/pandas-dev/pandas/pull/8326.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/8326" }
https://api.github.com/repos/pandas-dev/pandas/issues/8327
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8327/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8327/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8327/events
https://github.com/pandas-dev/pandas/issues/8327
43,288,083
MDU6SXNzdWU0MzI4ODA4Mw==
8,327
GBQ: Handle deprecation of oauth2client.tools.run()
{ "avatar_url": "https://avatars.githubusercontent.com/u/1598379?v=4", "events_url": "https://api.github.com/users/jtratner/events{/privacy}", "followers_url": "https://api.github.com/users/jtratner/followers", "following_url": "https://api.github.com/users/jtratner/following{/other_user}", "gists_url": "http...
[ { "color": "0052cc", "default": false, "description": "pandas-gbq compatability", "id": 57351315, "name": "IO Google", "node_id": "MDU6TGFiZWw1NzM1MTMxNQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20Google" } ]
closed
false
null
[]
{ "closed_at": "2015-05-11T15:46:03Z", "closed_issues": 237, "created_at": "2014-10-07T14:39:07Z", "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/jr...
14
2014-09-19T22:09:37Z
2015-05-01T16:45:35Z
2015-05-01T16:45:35Z
CONTRIBUTOR
null
Right now, when you use GbqConnector, you get the following warning: > WARNING:root:This function, oauth2client.tools.run(), and the use of the gflags library are deprecated and will be removed in a future version of the library. I'm not sure how quickly this deprecation will happen or if there are alternatives to ke...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8327/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8327/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8328
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8328/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8328/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8328/events
https://github.com/pandas-dev/pandas/pull/8328
43,289,747
MDExOlB1bGxSZXF1ZXN0MjE1MjgwNzI=
8,328
BUG: to_clipboard output formatting
{ "avatar_url": "https://avatars.githubusercontent.com/u/361447?v=4", "events_url": "https://api.github.com/users/klonuo/events{/privacy}", "followers_url": "https://api.github.com/users/klonuo/followers", "following_url": "https://api.github.com/users/klonuo/following{/other_user}", "gists_url": "https://api...
[ { "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": "ededed", "default": false, "description": "__repr__ of pandas objec...
closed
false
null
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
3
2014-09-19T22:39:36Z
2014-09-23T14:40:59Z
2014-09-23T14:40:47Z
CONTRIBUTOR
null
closes https://github.com/pydata/pandas/issues/8305 @jreback I made the simple patch as you suggested for fixing truncated columns, although problem seems to be https://github.com/pydata/pandas/blob/master/pandas/core/format.py#L2118 called from https://github.com/pydata/pandas/blob/master/pandas/core/format.py#L411 ...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8328/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8328/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/8328.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/8328", "merged_at": null, "patch_url": "https://github.com/pandas-dev/pandas/pull/8328.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/8328" }
https://api.github.com/repos/pandas-dev/pandas/issues/8329
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8329/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8329/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8329/events
https://github.com/pandas-dev/pandas/issues/8329
43,304,019
MDU6SXNzdWU0MzMwNDAxOQ==
8,329
CLN: start using numpy-1.7 API
{ "avatar_url": "https://avatars.githubusercontent.com/u/579798?v=4", "events_url": "https://api.github.com/users/immerrr/events{/privacy}", "followers_url": "https://api.github.com/users/immerrr/followers", "following_url": "https://api.github.com/users/immerrr/following{/other_user}", "gists_url": "https://...
[ { "color": "0052cc", "default": false, "description": "pandas objects compatability with Numpy or Python functions", "id": 76865106, "name": "Compat", "node_id": "MDU6TGFiZWw3Njg2NTEwNg==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Compat" }, { "color": "d93f0...
closed
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...
22
2014-09-20T07:40:02Z
2018-07-13T02:44:29Z
2018-07-13T00:36:14Z
CONTRIBUTOR
null
Now that numpy-1.6 support is dropped we could proceed to use np-1.7 API. This involves fixing a macro or two deep down in pandas internals, but otherwise should be pretty straightforward. As a bonus we can get rid of these annoying build warnings: ``` gcc -pthread -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8329/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8329/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8330
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8330/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8330/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8330/events
https://github.com/pandas-dev/pandas/pull/8330
43,312,458
MDExOlB1bGxSZXF1ZXN0MjE1MzgzMzY=
8,330
ENH: add chunksize argument to read_sql (GH2908)
{ "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": "5319e7", "default": false, "description": "to_sql, read_sql, read_sql_query", "id": 47232590, "name": "IO SQL", "node_id": "MDU6TGFiZWw0NzIzMjU5MA==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20SQL" } ]
closed
false
null
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
3
2014-09-20T15:23:47Z
2014-10-07T00:15:24Z
2014-10-07T00:15:24Z
MEMBER
null
Closes #2908 Should probably add this also to `read_sql_table`. And try to reduce some repetitions (`_wrap_result` can maybe be a top-level (in the file) helper function).
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8330/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8330/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/8330.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/8330", "merged_at": "2014-10-07T00:15:24Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/8330.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/8330" }
https://api.github.com/repos/pandas-dev/pandas/issues/8331
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8331/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8331/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8331/events
https://github.com/pandas-dev/pandas/pull/8331
43,313,208
MDExOlB1bGxSZXF1ZXN0MjE1Mzg2Njg=
8,331
PERF: add copy=True argument to pd.concat to enable pass-thru concats with complete blocks (GH8252)
{ "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://...
[ { "color": "a10c02", "default": false, "description": "Memory or execution speed performance", "id": 8935311, "name": "Performance", "node_id": "MDU6TGFiZWw4OTM1MzEx", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Performance" }, { "color": "02d7e1", "default"...
closed
false
null
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
0
2014-09-20T16:00:41Z
2014-09-20T16:50:06Z
2014-09-20T16:50:06Z
CONTRIBUTOR
null
closes #8252
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8331/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8331/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/8331.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/8331", "merged_at": "2014-09-20T16:50:06Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/8331.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/8331" }
https://api.github.com/repos/pandas-dev/pandas/issues/8332
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8332/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8332/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8332/events
https://github.com/pandas-dev/pandas/issues/8332
43,318,578
MDU6SXNzdWU0MzMxODU3OA==
8,332
API: add astype coerce argument / remove raise_on_error
{ "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://...
[ { "color": "d7e102", "default": false, "description": "np.nan, pd.NaT, pd.NA, dropna, isnull, interpolate", "id": 2822342, "name": "Missing-data", "node_id": "MDU6TGFiZWwyODIyMzQy", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Missing-data" }, { "color": "e102d8"...
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...
2
2014-09-20T20:12:05Z
2020-02-11T23:11:38Z
2018-07-06T22:10:45Z
CONTRIBUTOR
null
http://stackoverflow.com/questions/25952790/convert-pandas-series-from-dtype-object-to-float-and-errors-to-nans/25952844#25952844 maybe remove`raise_on_error` and rename to `coerce` (more inline with the rest of pandas API) ``` In [30]: pd.Series([1,2,3,4,'.']).convert_objects(convert_numeric=True) Out[30]: 0 1 ...
{ "+1": 2, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 2, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8332/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8332/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8333
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8333/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8333/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8333/events
https://github.com/pandas-dev/pandas/issues/8333
43,318,585
MDU6SXNzdWU0MzMxODU4NQ==
8,333
to_json() Flat Output
{ "avatar_url": "https://avatars.githubusercontent.com/u/3118036?v=4", "events_url": "https://api.github.com/users/r-barnes/events{/privacy}", "followers_url": "https://api.github.com/users/r-barnes/followers", "following_url": "https://api.github.com/users/r-barnes/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": "009800", "default": false, "description": "Duplicat...
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
2014-09-20T20:12:18Z
2017-09-18T13:10:38Z
2017-09-18T10:57:28Z
NONE
null
The to_json() I/O command current provides the following output: ``` split dict like {index -> [index], columns -> [columns], data -> [values]} records list like [{column -> value}, ... , {column -> value}] index dict like {index -> {column -> value}} columns dict like {column -> {index -> value}} values just the...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8333/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8333/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8334
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8334/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8334/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8334/events
https://github.com/pandas-dev/pandas/issues/8334
43,319,646
MDU6SXNzdWU0MzMxOTY0Ng==
8,334
Drop Rows with Missing Values Between an Array of DataFrames
{ "avatar_url": "https://avatars.githubusercontent.com/u/2454080?v=4", "events_url": "https://api.github.com/users/calben/events{/privacy}", "followers_url": "https://api.github.com/users/calben/followers", "following_url": "https://api.github.com/users/calben/following{/other_user}", "gists_url": "https://ap...
[ { "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
3
2014-09-20T21:06:09Z
2014-10-02T12:22:52Z
2014-10-02T12:22:52Z
NONE
null
I've needed this feature 3 or 4 times recently. The way I've typically done it is by making a new dataframe, concatenating the many dataframes after renaming their columns to identify to which dataframe they originally belonged, dropping all NA from the concatenated dataframe, and then splitting up this dataframe and 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/8334/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8334/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8335
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8335/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8335/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8335/events
https://github.com/pandas-dev/pandas/pull/8335
43,320,917
MDExOlB1bGxSZXF1ZXN0MjE1NDIyMTU=
8,335
TST: Fixed precision test error for read_csv
{ "avatar_url": "https://avatars.githubusercontent.com/u/6729036?v=4", "events_url": "https://api.github.com/users/mdmueller/events{/privacy}", "followers_url": "https://api.github.com/users/mdmueller/followers", "following_url": "https://api.github.com/users/mdmueller/following{/other_user}", "gists_url": "h...
[]
closed
false
null
[]
null
5
2014-09-20T22:06:35Z
2014-09-21T17:24:56Z
2014-09-21T17:23:11Z
CONTRIBUTOR
null
This should hopefully fix #8324. @jreback
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8335/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8335/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/8335.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/8335", "merged_at": null, "patch_url": "https://github.com/pandas-dev/pandas/pull/8335.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/8335" }
https://api.github.com/repos/pandas-dev/pandas/issues/8336
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8336/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8336/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8336/events
https://github.com/pandas-dev/pandas/issues/8336
43,321,047
MDU6SXNzdWU0MzMyMTA0Nw==
8,336
to_latex with MI column and index names
{ "avatar_url": "https://avatars.githubusercontent.com/u/1931852?v=4", "events_url": "https://api.github.com/users/hayd/events{/privacy}", "followers_url": "https://api.github.com/users/hayd/followers", "following_url": "https://api.github.com/users/hayd/following{/other_user}", "gists_url": "https://api.gith...
[ { "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": "e11d21", "default": false, "description": "Functionality that used ...
closed
false
null
[]
{ "closed_at": "2015-05-11T15:46:03Z", "closed_issues": 237, "created_at": "2014-10-07T14:39:07Z", "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/jr...
3
2014-09-20T22:12:29Z
2017-04-16T08:39:48Z
2017-04-16T08:39:40Z
CONTRIBUTOR
null
I introduced/uncovered a bug here with #8219. If you pass in DataFrame with MI index and col names it doesn't output correctly (and never did). Should be able to fix pretty easily, since it's my fault am assigning myself!
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8336/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8336/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8337
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8337/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8337/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8337/events
https://github.com/pandas-dev/pandas/pull/8337
43,324,431
MDExOlB1bGxSZXF1ZXN0MjE1NDM4MTk=
8,337
ENH: allow axis argument to append / move append code to generic.py (GH8295)
{ "avatar_url": "https://avatars.githubusercontent.com/u/6189096?v=4", "events_url": "https://api.github.com/users/htkm/events{/privacy}", "followers_url": "https://api.github.com/users/htkm/followers", "following_url": "https://api.github.com/users/htkm/following{/other_user}", "gists_url": "https://api.gith...
[ { "color": "02d7e1", "default": false, "description": "Concat, Merge/Join, Stack/Unstack, Explode", "id": 13098779, "name": "Reshaping", "node_id": "MDU6TGFiZWwxMzA5ODc3OQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Reshaping" }, { "color": "AD7FA8", "de...
closed
false
null
[]
{ "closed_at": null, "closed_issues": 786, "created_at": "2015-01-13T10:53:19Z", "creator": { "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", ...
5
2014-09-21T01:46:08Z
2015-05-09T16:07:26Z
2015-05-09T16:07:26Z
CONTRIBUTOR
null
closes #8295 - [x] Extract `append` method in `frame.py` into `generic.py` - I left the original code just commented. - [x] Extract test cases in `test_frame.py` into `test_generic.py` - [x] Extract test cases in `test_series.py` into `test_generic.py` - [x] Specific test case for testing `axis=1` in `test_generic....
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8337/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8337/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/8337.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/8337", "merged_at": null, "patch_url": "https://github.com/pandas-dev/pandas/pull/8337.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/8337" }
https://api.github.com/repos/pandas-dev/pandas/issues/8338
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8338/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8338/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8338/events
https://github.com/pandas-dev/pandas/issues/8338
43,336,764
MDU6SXNzdWU0MzMzNjc2NA==
8,338
interpolate() crashes with limit argument
{ "avatar_url": "https://avatars.githubusercontent.com/u/8851056?v=4", "events_url": "https://api.github.com/users/weatherfrog/events{/privacy}", "followers_url": "https://api.github.com/users/weatherfrog/followers", "following_url": "https://api.github.com/users/weatherfrog/following{/other_user}", "gists_ur...
[ { "color": "e10c02", "default": false, "description": null, "id": 76811, "name": "Bug", "node_id": "MDU6TGFiZWw3NjgxMQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug" }, { "color": "d7e102", "default": false, "description": "np.nan, pd.NaT, pd.NA, d...
closed
false
null
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
3
2014-09-21T14:47:59Z
2014-09-21T16:10:43Z
2014-09-21T16:10:43Z
NONE
null
Hi, Pandas' `interpolate()` method crashes if the `limit` parameter is passed and the underlying data frame or series does not contain NaN values, i.e., if there is nothing to interpolate. I think this is a bug. The following code was tested with Pandas 0.14.1 (NumPy 1.9.0): ``` import pandas as pd import numpy as np...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8338/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8338/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8339
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8339/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8339/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8339/events
https://github.com/pandas-dev/pandas/issues/8339
43,337,863
MDU6SXNzdWU0MzMzNzg2Mw==
8,339
Multithreaded access to Series multiply (or division) operator causes segmentation fault
{ "avatar_url": "https://avatars.githubusercontent.com/u/3604830?v=4", "events_url": "https://api.github.com/users/sjlnk/events{/privacy}", "followers_url": "https://api.github.com/users/sjlnk/followers", "following_url": "https://api.github.com/users/sjlnk/following{/other_user}", "gists_url": "https://api.g...
[ { "color": "ededed", "default": false, "description": "Parallelism in pandas", "id": 34423912, "name": "Multithreading", "node_id": "MDU6TGFiZWwzNDQyMzkxMg==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Multithreading" } ]
closed
false
null
[]
null
5
2014-09-21T15:40:14Z
2014-09-21T20:43:59Z
2014-09-21T16:09:55Z
NONE
null
I have run across some really weird situation where I get segmentation fault only when multiple threads access the same code simultaneously (problems with re-entrancy?). Also this only occurs with certain datasets and I couldn't reproduce it with toydata. The data.p file required can be downloaded from here: https://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/8339/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8339/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8340
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8340/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8340/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8340/events
https://github.com/pandas-dev/pandas/pull/8340
43,338,330
MDExOlB1bGxSZXF1ZXN0MjE1NDk1MjE=
8,340
CLN: pep8 clean up of sql.py
{ "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": "5319e7", "default": false, "description": "to_sql, read_sql, read_sql_query", "id": 47232590, "name": "IO SQL", "node_id": "MDU6TGFiZWw0NzIzMjU5MA==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20SQL" } ]
closed
false
null
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
8
2014-09-21T15:59:08Z
2014-09-21T23:29:18Z
2014-09-21T17:25:41Z
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/8340/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8340/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/8340.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/8340", "merged_at": "2014-09-21T17:25:41Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/8340.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/8340" }
https://api.github.com/repos/pandas-dev/pandas/issues/8341
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8341/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8341/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8341/events
https://github.com/pandas-dev/pandas/issues/8341
43,342,817
MDU6SXNzdWU0MzM0MjgxNw==
8,341
BUG: to_sql fails with datetime.time values with sqlite fallback mode
{ "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": "5319e7", "default": false, "description": "to_sql, read_sql, read_sql_query", "id": 47232590, "name": "IO SQL", "node_id": "MDU6TGFiZWw0NzIzMjU5MA==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20SQL" } ]
closed
false
null
[]
{ "closed_at": "2016-03-12T16:19:08Z", "closed_issues": 469, "created_at": "2015-07-19T20:18:45Z", "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/jr...
8
2014-09-21T19:14:23Z
2016-02-24T12:55:26Z
2016-02-24T12:55:26Z
MEMBER
null
Columns of `datetime.time` were not yet supported in sqlite fallback mode (as noted in #7567, and do work for sqlalchemy), but it now seems to fail silently with master (instead of raising an error). Using: ``` import sqlite3 con = sqlite3.connect(':memory:') dt = pd.date_range('2014-01-01', periods=10, freq='10h') d...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8341/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8341/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8342
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8342/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8342/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8342/events
https://github.com/pandas-dev/pandas/issues/8342
43,343,283
MDU6SXNzdWU0MzM0MzI4Mw==
8,342
API: integrate with openpyxl 2.0-2.1 changes
{ "avatar_url": "https://avatars.githubusercontent.com/u/1598379?v=4", "events_url": "https://api.github.com/users/jtratner/events{/privacy}", "followers_url": "https://api.github.com/users/jtratner/followers", "following_url": "https://api.github.com/users/jtratner/following{/other_user}", "gists_url": "http...
[ { "color": "bfe5bf", "default": false, "description": "read_excel, to_excel", "id": 49254273, "name": "IO Excel", "node_id": "MDU6TGFiZWw0OTI1NDI3Mw==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20Excel" }, { "color": "0052cc", "default": false, "de...
closed
false
null
[]
{ "closed_at": "2015-10-09T18:34:35Z", "closed_issues": 593, "created_at": "2015-03-23T10:47:38Z", "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/jr...
31
2014-09-21T19:33:47Z
2015-09-21T15:35:47Z
2015-09-21T15:35:47Z
CONTRIBUTOR
null
Builds are failing on Travis due to some issue with Excel (weirdly passed on merge but then started failing a few commits later). Currently investigating. C.f. https://travis-ci.org/pydata/pandas/jobs/35873580 @neirbowj - any idea why these tests stopped passing? It's all some variation on the following: ``` =======...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8342/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8342/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8343
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8343/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8343/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8343/events
https://github.com/pandas-dev/pandas/issues/8343
43,343,445
MDU6SXNzdWU0MzM0MzQ0NQ==
8,343
API/ENH/COMPAT: compat for datetime.time via Timedelta
{ "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://...
[ { "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": "AD7...
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...
3
2014-09-21T19:41:06Z
2018-07-06T22:08:27Z
2018-07-06T22:08:15Z
CONTRIBUTOR
null
Now that `Timedelta` is a full fledged type. It is quite trivial to convert a `datetime.time` to a `Timedelta`. pros: - highly performant - very similar output - no need to create a `TimeBlock` cons: - no longer a `datetime.time` instance (instead its a sub-class of `datetime.timedelta`) - doesn't support `tz`(anyone...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8343/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8343/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8344
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8344/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8344/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8344/events
https://github.com/pandas-dev/pandas/issues/8344
43,344,682
MDU6SXNzdWU0MzM0NDY4Mg==
8,344
Panel.clip() doesn't accept (even) scalar values
{ "avatar_url": "https://avatars.githubusercontent.com/u/1119641?v=4", "events_url": "https://api.github.com/users/skycaptain/events{/privacy}", "followers_url": "https://api.github.com/users/skycaptain/followers", "following_url": "https://api.github.com/users/skycaptain/following{/other_user}", "gists_url":...
[ { "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": "AD7FA8", "default": false, "description": null, "id": 35818298,...
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...
2
2014-09-21T20:35:22Z
2018-07-06T20:21:05Z
2017-07-11T09:56:32Z
CONTRIBUTOR
null
Let's take the following example: ``` python d = {'Item1' : pandas.DataFrame(numpy.random.randn(4, 3)), 'Item2' : pandas.DataFrame(numpy.random.randn(4, 2))} p = pandas.Panel(d) p.clip(0,1) ``` If I run the script with pandas 0.14.1 on both python 2.7.8 and 3.4.1 I'm getting the following error: ``` Traceback ...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8344/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8344/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8345
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8345/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8345/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8345/events
https://github.com/pandas-dev/pandas/pull/8345
43,347,649
MDExOlB1bGxSZXF1ZXN0MjE1NTM0Mjc=
8,345
ENH/BUG: allow timedelta resamples
{ "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://...
[ { "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": "4E9A06", "default": false, "description": null, "id": 76812, ...
closed
false
null
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
0
2014-09-21T22:28:34Z
2014-09-22T19:34:15Z
2014-09-22T19:29:24Z
CONTRIBUTOR
null
- [x] docs ``` In [4]: pd.set_option('max_rows',10) In [5]: df = DataFrame({'A' : np.arange(1480)},index=pd.to_timedelta(np.arange(1480),unit='T')) In [6]: df Out[6]: A 0 days 00:00:00 0 0 days 00:01:00 1 0 days 00:02:00 2 0 days 00:03:00 3 0 days 00:04:00 4 ... ...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8345/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8345/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/8345.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/8345", "merged_at": "2014-09-22T19:29:24Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/8345.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/8345" }
https://api.github.com/repos/pandas-dev/pandas/issues/8346
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8346/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8346/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8346/events
https://github.com/pandas-dev/pandas/issues/8346
43,348,024
MDU6SXNzdWU0MzM0ODAyNA==
8,346
RLS: 0.15.0 release schedule
{ "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://...
[ { "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": "006b75", "default": false, "description": ...
closed
false
null
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
28
2014-09-21T22:46:47Z
2014-10-21T11:42:23Z
2014-10-19T21:39:41Z
CONTRIBUTOR
null
Going to push the schedule at least a week (from end of sept). Let's try for end of 1st week of oct for RC, and end of 2nd week for final.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8346/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8346/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8347
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8347/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8347/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8347/events
https://github.com/pandas-dev/pandas/issues/8347
43,348,629
MDU6SXNzdWU0MzM0ODYyOQ==
8,347
DOC: Specialities wiki
{ "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://...
[ { "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": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
2
2014-09-21T23:17:17Z
2014-10-01T09:27:36Z
2014-09-23T14:32:45Z
CONTRIBUTOR
null
I created this wiki page: https://github.com/pydata/pandas/wiki/Specialities feel free to add/update/change if you think you should (or not) be tagged in a particular category. This is really for the core-devs reference as to know whom to cc when an issue comes up.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8347/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8347/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8348
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8348/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8348/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8348/events
https://github.com/pandas-dev/pandas/pull/8348
43,352,856
MDExOlB1bGxSZXF1ZXN0MjE1NTU2MDk=
8,348
BUG: _Openpyxl2Writer mishandles merged cell style
{ "avatar_url": "https://avatars.githubusercontent.com/u/1879063?v=4", "events_url": "https://api.github.com/users/neirbowj/events{/privacy}", "followers_url": "https://api.github.com/users/neirbowj/followers", "following_url": "https://api.github.com/users/neirbowj/following{/other_user}", "gists_url": "http...
[ { "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": "bfe5bf", "default": false, "description": "read_excel, to_excel", ...
closed
false
null
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
5
2014-09-22T01:45:34Z
2014-10-15T17:55:49Z
2014-10-15T17:55:49Z
CONTRIBUTOR
null
Thanks to @jtratner for catching 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/8348/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8348/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/8348.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/8348", "merged_at": null, "patch_url": "https://github.com/pandas-dev/pandas/pull/8348.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/8348" }
https://api.github.com/repos/pandas-dev/pandas/issues/8349
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8349/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8349/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8349/events
https://github.com/pandas-dev/pandas/issues/8349
43,421,560
MDU6SXNzdWU0MzQyMTU2MA==
8,349
Bug on pivot_table with margins and dict aggfunc
{ "avatar_url": "https://avatars.githubusercontent.com/u/8857606?v=4", "events_url": "https://api.github.com/users/RenzoBertocchi/events{/privacy}", "followers_url": "https://api.github.com/users/RenzoBertocchi/followers", "following_url": "https://api.github.com/users/RenzoBertocchi/following{/other_user}", ...
[ { "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": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
8
2014-09-22T07:01:38Z
2014-09-30T16:05:42Z
2014-09-30T16:05:42Z
CONTRIBUTOR
null
I think there is a bug on pandas 0.14.1 pivot_table using dictionary aggfunc and margins. Test code: <code>df=pandas.DataFrame([ {'JOB':'Worker','NAME':'Bob' ,'YEAR':2013,'MONTH':12,'DAYS': 3,'SALARY': 17}, {'JOB':'Employ','NAME':'Mary','YEAR':2013,'MONTH':12,'DAYS': 5,'SALARY': 23}, {'...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8349/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8349/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8350
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8350/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8350/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8350/events
https://github.com/pandas-dev/pandas/issues/8350
43,427,084
MDU6SXNzdWU0MzQyNzA4NA==
8,350
Why does pandas work around numpy limitations with custom dtypes instead of fixing them upstream?
{ "avatar_url": "https://avatars.githubusercontent.com/u/1217238?v=4", "events_url": "https://api.github.com/users/shoyer/events{/privacy}", "followers_url": "https://api.github.com/users/shoyer/followers", "following_url": "https://api.github.com/users/shoyer/following{/other_user}", "gists_url": "https://ap...
[]
closed
false
null
[]
null
17
2014-09-22T07:26:30Z
2015-10-20T22:42:35Z
2015-10-20T22:42:35Z
MEMBER
null
I was thinking particularly of cases like `datetime64`, `Categorical` and `GeoSeries` (from geopandas). I recently posted on the numpy discussion mailing to try to get a sense of what solutions exist for writing custom dtypes without writing C. Unfortunately, it appears there's not much hope! http://mail.scipy.org/pip...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8350/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8350/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8351
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8351/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8351/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8351/events
https://github.com/pandas-dev/pandas/issues/8351
43,480,723
MDU6SXNzdWU0MzQ4MDcyMw==
8,351
DOC: move Trellis plotting under Plotting
{ "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://...
[ { "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": "8AE234", "default": false, "description": null, "id": 241332...
closed
false
null
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
7
2014-09-22T13:14:35Z
2014-09-29T13:06:34Z
2014-09-22T21:46:12Z
CONTRIBUTOR
null
As this is not really a fleshed out section, kind of odd to have it as a top-level @TomAugspurger @jorisvandenbossche
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8351/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8351/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8352
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8352/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8352/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8352/events
https://github.com/pandas-dev/pandas/pull/8352
43,494,777
MDExOlB1bGxSZXF1ZXN0MjE1ODM5NDY=
8,352
BUG: Work-around openpyxl-2.1.0 NumberFormat removal
{ "avatar_url": "https://avatars.githubusercontent.com/u/1879063?v=4", "events_url": "https://api.github.com/users/neirbowj/events{/privacy}", "followers_url": "https://api.github.com/users/neirbowj/followers", "following_url": "https://api.github.com/users/neirbowj/following{/other_user}", "gists_url": "http...
[ { "color": "bfe5bf", "default": false, "description": "read_excel, to_excel", "id": 49254273, "name": "IO Excel", "node_id": "MDU6TGFiZWw0OTI1NDI3Mw==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20Excel" }, { "color": "0052cc", "default": false, "de...
closed
false
null
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
4
2014-09-22T14:43:41Z
2014-09-23T12:54:55Z
2014-09-22T15:55:24Z
CONTRIBUTOR
null
See #8342. This patch should allow all tests to pass with any supported openpyxl v1, and with openpyxl 2.1.0. Consider this an interim measure, not a complete fix.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8352/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8352/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/8352.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/8352", "merged_at": null, "patch_url": "https://github.com/pandas-dev/pandas/pull/8352.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/8352" }
https://api.github.com/repos/pandas-dev/pandas/issues/8353
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8353/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8353/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8353/events
https://github.com/pandas-dev/pandas/pull/8353
43,497,119
MDExOlB1bGxSZXF1ZXN0MjE1ODQ4ODU=
8,353
DOC: move trellis under visualization.rst
{ "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": "3465A4", "default": false, "description": null, "id": 134699, "name": "Docs", "node_id": "MDU6TGFiZWwxMzQ2OTk=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs" }, { "color": "8AE234", "default": false, "description": null, "id": 241332...
closed
false
null
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
4
2014-09-22T14:57:08Z
2017-05-15T21:16:01Z
2014-09-22T21:46:12Z
CONTRIBUTOR
null
Closes https://github.com/pydata/pandas/issues/8351 Just moved it and changed a few heading levels. I could add a note about considering seaborn. I've never used rplot.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8353/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8353/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/8353.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/8353", "merged_at": "2014-09-22T21:46:12Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/8353.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/8353" }
https://api.github.com/repos/pandas-dev/pandas/issues/8354
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8354/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8354/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8354/events
https://github.com/pandas-dev/pandas/pull/8354
43,500,902
MDExOlB1bGxSZXF1ZXN0MjE1ODY1NDI=
8,354
Bug on pivot_table with margins and dict aggfunc
{ "avatar_url": "https://avatars.githubusercontent.com/u/8857606?v=4", "events_url": "https://api.github.com/users/RenzoBertocchi/events{/privacy}", "followers_url": "https://api.github.com/users/RenzoBertocchi/followers", "following_url": "https://api.github.com/users/RenzoBertocchi/following{/other_user}", ...
[ { "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": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
9
2014-09-22T15:19:37Z
2014-09-30T16:05:42Z
2014-09-30T16:05:15Z
CONTRIBUTOR
null
closes #8349 bug on pandas 0.14.1 pivot_table using dictionary aggfunc and margins. Test code: <pre> <code> df=pandas.DataFrame([ {'JOB':'Worker','NAME':'Bob' ,'YEAR':2013,'MONTH':12,'DAYS': 3,'SALARY': 17}, {'JOB':'Employ','NAME':'Mary','YEAR':2013,'MONTH':12,'DAYS': 5,'SALARY': 23}, {'JOB':'Worker','NAME':'Bob'...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8354/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8354/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/8354.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/8354", "merged_at": null, "patch_url": "https://github.com/pandas-dev/pandas/pull/8354.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/8354" }
https://api.github.com/repos/pandas-dev/pandas/issues/8355
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8355/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8355/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8355/events
https://github.com/pandas-dev/pandas/pull/8355
43,503,231
MDExOlB1bGxSZXF1ZXN0MjE1ODc1MTI=
8,355
Test margins with dictionary aggfunc
{ "avatar_url": "https://avatars.githubusercontent.com/u/8857606?v=4", "events_url": "https://api.github.com/users/RenzoBertocchi/events{/privacy}", "followers_url": "https://api.github.com/users/RenzoBertocchi/followers", "following_url": "https://api.github.com/users/RenzoBertocchi/following{/other_user}", ...
[]
closed
false
null
[]
null
0
2014-09-22T15:33:12Z
2014-09-23T12:26:37Z
2014-09-23T07:50:42Z
CONTRIBUTOR
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/8355/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8355/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/8355.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/8355", "merged_at": null, "patch_url": "https://github.com/pandas-dev/pandas/pull/8355.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/8355" }
https://api.github.com/repos/pandas-dev/pandas/issues/8356
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8356/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8356/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8356/events
https://github.com/pandas-dev/pandas/pull/8356
43,506,927
MDExOlB1bGxSZXF1ZXN0MjE1ODkwNjc=
8,356
BUG: Work-around openpyxl-2.1.0 NumberFormat removal
{ "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://...
[ { "color": "bfe5bf", "default": false, "description": "read_excel, to_excel", "id": 49254273, "name": "IO Excel", "node_id": "MDU6TGFiZWw0OTI1NDI3Mw==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20Excel" }, { "color": "0052cc", "default": false, "de...
closed
false
null
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
0
2014-09-22T15:54:57Z
2014-09-22T16:39:26Z
2014-09-22T16:39:26Z
CONTRIBUTOR
null
xref #8342 compat for openpyxl: 2.0.0 thru 2.1.0, but a bit hacky
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8356/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8356/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/8356.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/8356", "merged_at": "2014-09-22T16:39:26Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/8356.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/8356" }
https://api.github.com/repos/pandas-dev/pandas/issues/8357
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8357/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8357/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8357/events
https://github.com/pandas-dev/pandas/pull/8357
43,509,183
MDExOlB1bGxSZXF1ZXN0MjE1OTAwMTQ=
8,357
Changed round_trip converter to Python converter instead of strtod
{ "avatar_url": "https://avatars.githubusercontent.com/u/6729036?v=4", "events_url": "https://api.github.com/users/mdmueller/events{/privacy}", "followers_url": "https://api.github.com/users/mdmueller/followers", "following_url": "https://api.github.com/users/mdmueller/following{/other_user}", "gists_url": "h...
[ { "color": "5319e7", "default": false, "description": "read_csv, to_csv", "id": 47229171, "name": "IO CSV", "node_id": "MDU6TGFiZWw0NzIyOTE3MQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20CSV" }, { "color": "0052cc", "default": false, "descriptio...
closed
false
null
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
8
2014-09-22T16:08:17Z
2014-09-28T16:24:39Z
2014-09-27T01:48:08Z
CONTRIBUTOR
null
As @mdickinson noted in #8044.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8357/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8357/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/8357.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/8357", "merged_at": "2014-09-27T01:48:08Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/8357.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/8357" }
https://api.github.com/repos/pandas-dev/pandas/issues/8358
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8358/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8358/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8358/events
https://github.com/pandas-dev/pandas/issues/8358
43,510,528
MDU6SXNzdWU0MzUxMDUyOA==
8,358
API/BUG: Indexing a DatetimeIndex by Period
{ "avatar_url": "https://avatars.githubusercontent.com/u/7441788?v=4", "events_url": "https://api.github.com/users/seth-p/events{/privacy}", "followers_url": "https://api.github.com/users/seth-p/followers", "following_url": "https://api.github.com/users/seth-p/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": "0b02e1", "default": false, "description": "Related to indexing on s...
closed
false
null
[]
null
5
2014-09-22T16:16:24Z
2014-09-22T16:39:15Z
2014-09-22T16:19:20Z
CONTRIBUTOR
null
Curiously one can index a DatetimeIndex by the string representation of a Period, but not by an actual Period object. Is this intentional? ``` Python 3.4.1 (v3.4.1:c0e311e010fc, May 18 2014, 10:45:13) [MSC v.1600 64 bit (AMD64)] Type "copyright", "credits" or "license" for more information. IPython 2.2.0 -- An enhanc...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8358/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8358/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8359
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8359/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8359/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8359/events
https://github.com/pandas-dev/pandas/issues/8359
43,529,903
MDU6SXNzdWU0MzUyOTkwMw==
8,359
COMPAT/CLN: remove need for core/array.py
{ "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://...
[ { "color": "fbca04", "default": false, "description": "Related to non-user accessible pandas implementation", "id": 49094459, "name": "Internals", "node_id": "MDU6TGFiZWw0OTA5NDQ1OQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Internals" }, { "color": "0052cc...
closed
false
null
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
0
2014-09-22T18:25:17Z
2014-09-29T13:21:50Z
2014-09-29T13:21:50Z
CONTRIBUTOR
null
https://github.com/pydata/pandas/blob/master/pandas/core/array.py not necessary and clutters the code ATM.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8359/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8359/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8360
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8360/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8360/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8360/events
https://github.com/pandas-dev/pandas/pull/8360
43,535,811
MDExOlB1bGxSZXF1ZXN0MjE2MDExMDU=
8,360
BUG: OLS with clustering and nw_lags does not error
{ "avatar_url": "https://avatars.githubusercontent.com/u/4183570?v=4", "events_url": "https://api.github.com/users/jessefarnham/events{/privacy}", "followers_url": "https://api.github.com/users/jessefarnham/followers", "following_url": "https://api.github.com/users/jessefarnham/following{/other_user}", "gists...
[ { "color": "ffa0ff", "default": false, "description": "Incorrect or improved errors from pandas", "id": 42670965, "name": "Error Reporting", "node_id": "MDU6TGFiZWw0MjY3MDk2NQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Error%20Reporting" } ]
closed
false
null
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
5
2014-09-22T19:03:23Z
2014-09-23T14:38:37Z
2014-09-23T14:24:16Z
CONTRIBUTOR
null
Added statement to raise ValueError when OLS is run with clustering and Newey-West adjustments. Closes #5884. This is a re-attempt at GH8170.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8360/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8360/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/8360.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/8360", "merged_at": null, "patch_url": "https://github.com/pandas-dev/pandas/pull/8360.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/8360" }
https://api.github.com/repos/pandas-dev/pandas/issues/8361
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8361/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8361/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8361/events
https://github.com/pandas-dev/pandas/issues/8361
43,551,237
MDU6SXNzdWU0MzU1MTIzNw==
8,361
Use airspeed velocity for benchmarking
{ "avatar_url": "https://avatars.githubusercontent.com/u/417981?v=4", "events_url": "https://api.github.com/users/cpcloud/events{/privacy}", "followers_url": "https://api.github.com/users/cpcloud/followers", "following_url": "https://api.github.com/users/cpcloud/following{/other_user}", "gists_url": "https://...
[ { "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": "a10c02", "d...
closed
false
null
[]
{ "closed_at": "2015-10-09T18:34:35Z", "closed_issues": 593, "created_at": "2015-03-23T10:47:38Z", "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/jr...
1
2014-09-22T20:54:05Z
2016-07-25T09:43:06Z
2015-08-19T00:32:16Z
MEMBER
null
Since `vbench` was (at least in part) an inspiration for [Airspeed Velocity](https://github.com/spacetelescope/asv/) (`asv`), I think getting something like this set up for `pandas` would be useful and extremely helpful for us and for `asv`. We have a _ton_ of `vbench` code and we'd probably be a great project for push...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8361/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8361/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8362
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8362/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8362/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8362/events
https://github.com/pandas-dev/pandas/issues/8362
43,557,695
MDU6SXNzdWU0MzU1NzY5NQ==
8,362
Index.intersection bug?
{ "avatar_url": "https://avatars.githubusercontent.com/u/8483583?v=4", "events_url": "https://api.github.com/users/tom-alcorn/events{/privacy}", "followers_url": "https://api.github.com/users/tom-alcorn/followers", "following_url": "https://api.github.com/users/tom-alcorn/following{/other_user}", "gists_url":...
[ { "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...
closed
false
null
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
6
2014-09-22T21:40:52Z
2014-09-29T14:28:06Z
2014-09-29T14:28:06Z
CONTRIBUTOR
null
I ran into an odd behaviour when taking the intersection of two Indexes. Specifically, ``` python left = pd.Index(['A','B','A','C']) right = pd.Index(['B','D']) left.intersection(right) ``` returns ``` python Index(['B', 'C'], dtype='object') ``` However, I would expect this to return ``` python Index(['B'], dtype...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8362/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8362/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8363
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8363/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8363/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8363/events
https://github.com/pandas-dev/pandas/issues/8363
43,559,604
MDU6SXNzdWU0MzU1OTYwNA==
8,363
BUG: datetime ops with non-unique indexes is buggy
{ "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://...
[ { "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": "AFEEEE", "default": false, "description": null, "id": 211840, ...
closed
false
null
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
1
2014-09-22T21:56:11Z
2014-09-23T01:05:32Z
2014-09-23T01:05:32Z
CONTRIBUTOR
null
from [SO](http://stackoverflow.com/questions/25963622/column-operations-with-pandas-dataframe-objects-with-non-unique-indices/25964177?noredirect=1#comment40684868_25964177) ``` In [3]: df = DataFrame({'A' : np.arange(5), 'B' : np.arange(1,6)},index=[2,2,3,3,4]) In [4]: df.B-df.A Out[4]: 2 1 2 1 3 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/8363/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8363/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8364
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8364/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8364/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8364/events
https://github.com/pandas-dev/pandas/pull/8364
43,561,087
MDExOlB1bGxSZXF1ZXN0MjE2MTI4NjQ=
8,364
BUG: Bug in alignment with TimeOps and non-unique indexes (GH8363)
{ "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://...
[ { "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": "AFEEEE", "default": false, "description": null, "id": 211840, ...
closed
false
null
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
0
2014-09-22T22:07:36Z
2014-09-23T01:05:32Z
2014-09-23T01:05:32Z
CONTRIBUTOR
null
closes #8363
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8364/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8364/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/8364.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/8364", "merged_at": "2014-09-23T01:05:32Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/8364.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/8364" }
https://api.github.com/repos/pandas-dev/pandas/issues/8365
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8365/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8365/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8365/events
https://github.com/pandas-dev/pandas/issues/8365
43,568,197
MDU6SXNzdWU0MzU2ODE5Nw==
8,365
Series/DataFrame.rank() doesn't handle certain floats properly
{ "avatar_url": "https://avatars.githubusercontent.com/u/82713?v=4", "events_url": "https://api.github.com/users/sandbox/events{/privacy}", "followers_url": "https://api.github.com/users/sandbox/followers", "following_url": "https://api.github.com/users/sandbox/following{/other_user}", "gists_url": "https://a...
[ { "color": "e10c02", "default": false, "description": null, "id": 76811, "name": "Bug", "node_id": "MDU6TGFiZWw3NjgxMQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug" }, { "color": "006b75", "default": false, "description": "Arithmetic, Comparison, ...
closed
false
null
[]
{ "closed_at": "2015-03-23T10:50:37Z", "closed_issues": 400, "created_at": "2014-02-14T03:31:22Z", "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/jr...
2
2014-09-22T23:15:24Z
2015-03-03T01:15:35Z
2015-03-03T01:15:35Z
NONE
null
There appears to be an issue with floats that are close together in series.rank(), pandas version 0.14. For reference this test worked in pandas 0.12.0. ### Current Behavior ``` >>> series = pd.Series([1000.000669 , 1000.000041 , 1000.000059 , 1000.000063 , 1000.000121 , 1000.000104 , 1000.000040 , 1000.000062 , 1000....
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8365/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8365/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8366
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8366/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8366/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8366/events
https://github.com/pandas-dev/pandas/pull/8366
43,580,711
MDExOlB1bGxSZXF1ZXN0MjE2MjEyNTE=
8,366
DataFrame.dropna bug fix
{ "avatar_url": "https://avatars.githubusercontent.com/u/6242856?v=4", "events_url": "https://api.github.com/users/mcjcode/events{/privacy}", "followers_url": "https://api.github.com/users/mcjcode/followers", "following_url": "https://api.github.com/users/mcjcode/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": "d7e102", "default": false, "description": "np.nan, pd.NaT, pd.NA, d...
closed
false
null
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
3
2014-09-23T01:44:39Z
2014-09-25T00:38:15Z
2014-09-25T00:05:35Z
CONTRIBUTOR
null
Bug fix for #8303. Now raise KeyError if any non-existent columns are passed in the subset argument.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8366/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8366/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/8366.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/8366", "merged_at": null, "patch_url": "https://github.com/pandas-dev/pandas/pull/8366.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/8366" }
https://api.github.com/repos/pandas-dev/pandas/issues/8367
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8367/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8367/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8367/events
https://github.com/pandas-dev/pandas/issues/8367
43,598,418
MDU6SXNzdWU0MzU5ODQxOA==
8,367
Timezone info is lost when pickling datetime indices
{ "avatar_url": "https://avatars.githubusercontent.com/u/1845771?v=4", "events_url": "https://api.github.com/users/edrevo/events{/privacy}", "followers_url": "https://api.github.com/users/edrevo/followers", "following_url": "https://api.github.com/users/edrevo/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": "5319e7", "default": false, "description": "Timezone data dtype", ...
closed
false
null
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
8
2014-09-23T07:23:20Z
2014-09-23T15:12:58Z
2014-09-23T14:58:45Z
NONE
null
``` python >>> c.head(3) end_time location_id sensor_id view_id start_time 54 1000305 0 2014-07-21 07:00:00+00:00 2014-07-21 07:15:00+00:00 2014-07-21 07:15:00+00:00 2014-07-21 07:30:00+00:00 ...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8367/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8367/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8368
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8368/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8368/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8368/events
https://github.com/pandas-dev/pandas/issues/8368
43,600,448
MDU6SXNzdWU0MzYwMDQ0OA==
8,368
DatetimeIndex.to_series loses timezone information
{ "avatar_url": "https://avatars.githubusercontent.com/u/1845771?v=4", "events_url": "https://api.github.com/users/edrevo/events{/privacy}", "followers_url": "https://api.github.com/users/edrevo/followers", "following_url": "https://api.github.com/users/edrevo/following{/other_user}", "gists_url": "https://ap...
[ { "color": "5319e7", "default": false, "description": "Timezone data dtype", "id": 60458168, "name": "Timezones", "node_id": "MDU6TGFiZWw2MDQ1ODE2OA==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Timezones" } ]
closed
false
null
[]
null
2
2014-09-23T07:56:45Z
2014-09-23T11:39:58Z
2014-09-23T11:39:50Z
NONE
null
``` python >> f <class 'pandas.tseries.index.DatetimeIndex'> [2014-07-25 07:00:37+00:00, ..., 2014-07-26 07:50:17+00:00] Length: 53304, Freq: None, Timezone: UTC >> f.to_series() datetime 2014-07-25 07:00:37+00:00 2014-07-25 07:00:37 2014-07-25 07:11:36+00:00 2014-07-25 07:11:36 2014-07-25 08:01:48+00:00 2014-07-...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8368/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8368/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8369
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8369/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8369/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8369/events
https://github.com/pandas-dev/pandas/issues/8369
43,603,920
MDU6SXNzdWU0MzYwMzkyMA==
8,369
DataFrame.set_value() raise Exception
{ "avatar_url": "https://avatars.githubusercontent.com/u/8779801?v=4", "events_url": "https://api.github.com/users/cyyang81/events{/privacy}", "followers_url": "https://api.github.com/users/cyyang81/followers", "following_url": "https://api.github.com/users/cyyang81/following{/other_user}", "gists_url": "http...
[ { "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": "00...
closed
false
null
[]
null
1
2014-09-23T08:46:11Z
2014-09-23T11:37:18Z
2014-09-23T11:37:08Z
NONE
null
In [97]:df=pd.DataFrame({'x':['A','B','C'],'y':['0','0','0']}) ``` x y ``` 0 A 0 1 B 0 2 C 0 In [99]:df.set_value(index=df.x.str.startswith('A'),col='y',value='1') --- TypeError Traceback (most recent call last) <ipython-input-99-08195440f2b8> in <module>() ----> 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/8369/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8369/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8370
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8370/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8370/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8370/events
https://github.com/pandas-dev/pandas/pull/8370
43,634,526
MDExOlB1bGxSZXF1ZXN0MjE2NDgyODY=
8,370
BUG/COMPAT: set tz on DatetimeIndex on pickle reconstruction (GH8367)
{ "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://...
[ { "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": "AFEEEE", "default": false, "description": null, "id": 211840, ...
closed
false
null
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
0
2014-09-23T14:17:10Z
2014-09-23T14:58:45Z
2014-09-23T14:58:45Z
CONTRIBUTOR
null
closes #8367
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8370/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8370/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/8370.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/8370", "merged_at": "2014-09-23T14:58:45Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/8370.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/8370" }
https://api.github.com/repos/pandas-dev/pandas/issues/8371
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8371/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8371/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8371/events
https://github.com/pandas-dev/pandas/issues/8371
43,650,746
MDU6SXNzdWU0MzY1MDc0Ng==
8,371
Resample method doesn't round timestamps with prime numbers frequency
{ "avatar_url": "https://avatars.githubusercontent.com/u/1236375?v=4", "events_url": "https://api.github.com/users/mapsa/events{/privacy}", "followers_url": "https://api.github.com/users/mapsa/followers", "following_url": "https://api.github.com/users/mapsa/following{/other_user}", "gists_url": "https://api.g...
[ { "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": "AFEEEE", "default": false, "description": null, "id": 211840, ...
closed
false
null
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
1
2014-09-23T16:22:27Z
2014-09-26T15:57:37Z
2014-09-26T15:57:37Z
NONE
null
Hi, I've found this issue when I tried to resample at different frequencies. When the frequency is a prime number, the first timestamp is not rounded and it takes the first timestamp in the file. Do I need an extra parameter to round timestamps? ``` python csv = r"""Date,Time,Ask,Bid,AskVolume,BidVolume 11-08-2014,00...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8371/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8371/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8372
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8372/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8372/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8372/events
https://github.com/pandas-dev/pandas/pull/8372
43,662,528
MDExOlB1bGxSZXF1ZXN0MjE2NjQxODE=
8,372
BUG: bug in non-evently divisible offsets when resampling (e.g. '7s') (GH8371)
{ "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://...
[ { "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": "AFEEEE", "default": false, "description": null, "id": 211840, ...
closed
false
null
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
0
2014-09-23T18:02:55Z
2014-09-26T15:57:37Z
2014-09-26T15:57:37Z
CONTRIBUTOR
null
closes #8371 ``` In [1]: data = """date,time,value ...: 11-08-2014,00:00:01.093,1 ...: 11-08-2014,00:00:02.159,1 ...: 11-08-2014,00:00:02.667,1 ...: 11-08-2014,00:00:03.175,1 ...: 11-08-2014,00:00:07.058,1 ...: 11-08-2014,00:00:07.362,1 ...: 11-08-2014,00:00:08.324,1 ...: 11-08-2014,00:...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8372/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8372/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/8372.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/8372", "merged_at": "2014-09-26T15:57:37Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/8372.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/8372" }
https://api.github.com/repos/pandas-dev/pandas/issues/8373
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8373/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8373/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8373/events
https://github.com/pandas-dev/pandas/pull/8373
43,669,300
MDExOlB1bGxSZXF1ZXN0MjE2NjgwMjQ=
8,373
ENH: Added file path existence check for read_hdf
{ "avatar_url": "https://avatars.githubusercontent.com/u/2265497?v=4", "events_url": "https://api.github.com/users/jbradish/events{/privacy}", "followers_url": "https://api.github.com/users/jbradish/followers", "following_url": "https://api.github.com/users/jbradish/following{/other_user}", "gists_url": "http...
[ { "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": "r...
closed
false
null
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
8
2014-09-23T19:00:22Z
2014-09-26T22:06:29Z
2014-09-26T22:06:18Z
CONTRIBUTOR
null
closes #7715 Added simple check for file path existence. It might be more advisable to deprecate this function and separate file buffer and file path read functionality, but the current form matches the rest of the API. I wasn't sure if there was any tests I needed to add, but if there is, let me know.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8373/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8373/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/8373.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/8373", "merged_at": "2014-09-26T22:06:18Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/8373.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/8373" }
https://api.github.com/repos/pandas-dev/pandas/issues/8374
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8374/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8374/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8374/events
https://github.com/pandas-dev/pandas/pull/8374
43,669,400
MDExOlB1bGxSZXF1ZXN0MjE2NjgwODI=
8,374
BUG: Intersection buggy for non-monotonic non-unique indices (GH8362)
{ "avatar_url": "https://avatars.githubusercontent.com/u/8483583?v=4", "events_url": "https://api.github.com/users/tom-alcorn/events{/privacy}", "followers_url": "https://api.github.com/users/tom-alcorn/followers", "following_url": "https://api.github.com/users/tom-alcorn/following{/other_user}", "gists_url":...
[ { "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...
closed
false
null
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
5
2014-09-23T19:01:12Z
2014-09-29T14:28:06Z
2014-09-29T14:27:54Z
CONTRIBUTOR
null
Fixes intersection bug in the case of non-monotonic non-unique indexes. closes #8362
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8374/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8374/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/8374.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/8374", "merged_at": null, "patch_url": "https://github.com/pandas-dev/pandas/pull/8374.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/8374" }
https://api.github.com/repos/pandas-dev/pandas/issues/8375
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8375/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8375/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8375/events
https://github.com/pandas-dev/pandas/issues/8375
43,688,271
MDU6SXNzdWU0MzY4ODI3MQ==
8,375
categorical fixup 3
{ "avatar_url": "https://avatars.githubusercontent.com/u/890156?v=4", "events_url": "https://api.github.com/users/jankatins/events{/privacy}", "followers_url": "https://api.github.com/users/jankatins/followers", "following_url": "https://api.github.com/users/jankatins/following{/other_user}", "gists_url": "ht...
[ { "color": "e11d21", "default": false, "description": "Categorical Data Type", "id": 78527356, "name": "Categorical", "node_id": "MDU6TGFiZWw3ODUyNzM1Ng==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Categorical" } ]
closed
false
null
[]
{ "closed_at": 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...
12
2014-09-23T21:44:14Z
2018-07-06T22:06:48Z
2018-07-06T22:06:37Z
CONTRIBUTOR
null
- [ ] check that plot does the right thing, i.e. ordering of the categories - [ ] Make a utils.testing.makeCategorical() `Series(np.array(list('abcdefghij')).take(np.random.randint(0,10,size=len(df)))).astype('category')` + NaN + type + size + unique kword? - [ ] check for `self.values.xxx` in `Series` and check that...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8375/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8375/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8376
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8376/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8376/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8376/events
https://github.com/pandas-dev/pandas/issues/8376
43,689,367
MDU6SXNzdWU0MzY4OTM2Nw==
8,376
Deprecations of levels in categorical in 2017/ after 0.18
{ "avatar_url": "https://avatars.githubusercontent.com/u/890156?v=4", "events_url": "https://api.github.com/users/jankatins/events{/privacy}", "followers_url": "https://api.github.com/users/jankatins/followers", "following_url": "https://api.github.com/users/jankatins/following{/other_user}", "gists_url": "ht...
[ { "color": "e11d21", "default": false, "description": "Categorical Data Type", "id": 78527356, "name": "Categorical", "node_id": "MDU6TGFiZWw3ODUyNzM1Ng==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Categorical" }, { "color": "5319e7", "default": false, ...
closed
false
null
[]
{ "closed_at": "2016-10-03T08:52:13Z", "closed_issues": 733, "created_at": "2016-03-11T21:24:45Z", "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/jr...
6
2014-09-23T21:54:53Z
2016-07-15T10:30:26Z
2016-07-15T10:28:35Z
CONTRIBUTOR
null
`levels` was renamed to `categories`. Take out the deprecated property, the proerty in the Series.cat accessor, and the attribute in the constructor Look for `TODO: Remove after deprecation period in 2017/ after 0.18` and `TODO: remove levels after the deprecation period`. Should be added to #6581
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8376/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8376/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8377
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8377/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8377/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8377/events
https://github.com/pandas-dev/pandas/issues/8377
43,694,863
MDU6SXNzdWU0MzY5NDg2Mw==
8,377
ERR/BUG: df2.fillna(df1) should raise NotImplementedError
{ "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://...
[ { "color": "4E9A06", "default": false, "description": null, "id": 76812, "name": "Enhancement", "node_id": "MDU6TGFiZWw3NjgxMg==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Enhancement" }, { "color": "d7e102", "default": false, "description": "np.nan, ...
closed
false
null
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
0
2014-09-23T22:56:51Z
2014-09-26T15:19:39Z
2014-09-26T15:19:39Z
CONTRIBUTOR
null
from [SO](http://stackoverflow.com/questions/26002564/pandas-fillna-method-with-multiindex-nans-are-filled-with-wrong-columns) `df2.fillna(df1)` should be implemented by: `df2.where(df2.notnull(),df2,df1)`
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8377/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8377/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8378
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8378/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8378/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8378/events
https://github.com/pandas-dev/pandas/pull/8378
43,696,979
MDExOlB1bGxSZXF1ZXN0MjE2ODMzMjA=
8,378
API: .fillna will now raise a NotImplementedError when passed a DataFrame (GH8377)
{ "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://...
[ { "color": "d7e102", "default": false, "description": "np.nan, pd.NaT, pd.NA, dropna, isnull, interpolate", "id": 2822342, "name": "Missing-data", "node_id": "MDU6TGFiZWwyODIyMzQy", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Missing-data" }, { "color": "ffa0ff"...
closed
false
null
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
0
2014-09-23T23:24:28Z
2014-09-24T11:59:42Z
2014-09-24T11:59:42Z
CONTRIBUTOR
null
xref #8377
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8378/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8378/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/8378.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/8378", "merged_at": "2014-09-24T11:59:42Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/8378.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/8378" }
https://api.github.com/repos/pandas-dev/pandas/issues/8379
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8379/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8379/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8379/events
https://github.com/pandas-dev/pandas/pull/8379
43,705,143
MDExOlB1bGxSZXF1ZXN0MjE2ODc2Nzc=
8,379
BUG: floats cannot be ranked with tolerance
{ "avatar_url": "https://avatars.githubusercontent.com/u/1288998?v=4", "events_url": "https://api.github.com/users/behzadnouri/events{/privacy}", "followers_url": "https://api.github.com/users/behzadnouri/followers", "following_url": "https://api.github.com/users/behzadnouri/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
[]
{ "closed_at": "2015-03-23T10:50:37Z", "closed_issues": 400, "created_at": "2014-02-14T03:31:22Z", "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/jr...
37
2014-09-24T01:40:16Z
2015-03-05T12:47:34Z
2015-03-03T01:15:35Z
CONTRIBUTOR
null
closes https://github.com/pydata/pandas/issues/8365 using tolerance in ranking floats can result in inconsistent behavior; currently on master: ``` >>> pd.Series([1001, 1001.0002]).rank() 0 1 1 2 dtype: float64 >>> pd.Series([1001, 1001.0001, 1001.0002]).rank() 0 2 1 2 2 2 dtype: float64 ``` so, in ef...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8379/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8379/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/8379.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/8379", "merged_at": "2015-03-03T01:15:35Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/8379.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/8379" }
https://api.github.com/repos/pandas-dev/pandas/issues/8380
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8380/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8380/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8380/events
https://github.com/pandas-dev/pandas/issues/8380
43,725,830
MDU6SXNzdWU0MzcyNTgzMA==
8,380
Read_csv not correctly opening file
{ "avatar_url": "https://avatars.githubusercontent.com/u/8894894?v=4", "events_url": "https://api.github.com/users/ChrisLeahy/events{/privacy}", "followers_url": "https://api.github.com/users/ChrisLeahy/followers", "following_url": "https://api.github.com/users/ChrisLeahy/following{/other_user}", "gists_url":...
[ { "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": "5319e7", "default": false, "descript...
closed
false
null
[]
null
2
2014-09-24T07:00:46Z
2015-10-20T23:11:12Z
2015-10-20T23:11:12Z
NONE
null
I'm trying to open part of a csv file using pandas read_csv. The section I am opening has a header on line 746, and goes to line 1120. ``` python df = read_csv(inputfile,header=746,nrows=374,index_col=False) ``` I then get an error CParserError: Error tokenizing data. C error: Expected 9 fields in line 1121, saw 17...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8380/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8380/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8381
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8381/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8381/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8381/events
https://github.com/pandas-dev/pandas/issues/8381
43,770,150
MDU6SXNzdWU0Mzc3MDE1MA==
8,381
groupby, as_index=False, with pandas.Series.count() as an agg
{ "avatar_url": "https://avatars.githubusercontent.com/u/7581592?v=4", "events_url": "https://api.github.com/users/marctollin/events{/privacy}", "followers_url": "https://api.github.com/users/marctollin/followers", "following_url": "https://api.github.com/users/marctollin/following{/other_user}", "gists_url":...
[ { "color": "e10c02", "default": false, "description": null, "id": 76811, "name": "Bug", "node_id": "MDU6TGFiZWw3NjgxMQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug" }, { "color": "729FCF", "default": false, "description": null, "id": 233160, ...
closed
false
null
[]
{ "closed_at": "2015-10-09T18:34:35Z", "closed_issues": 593, "created_at": "2015-03-23T10:47:38Z", "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/jr...
16
2014-09-24T14:19:15Z
2015-09-30T11:37:42Z
2015-09-30T11:26:27Z
NONE
null
Why doesn't the pandas.Series.count() method work as a valid aggregation with groupby when as_index=False? ``` python df=pd.DataFrame([['foo','foo','bar','bar','bar','oats'],[1.0,2.0,3.0,4.0,4.0,5.0],[2.0,3.0,4.0,5.0,1.0,5.0]]).T df.columns=['mycat','var1','var2'] df.var1=df.var1.astype('int64') df.var2=df.var2.astype...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8381/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8381/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8382
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8382/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8382/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8382/events
https://github.com/pandas-dev/pandas/issues/8382
43,807,553
MDU6SXNzdWU0MzgwNzU1Mw==
8,382
TST: numpy 1.9 / matplotlib 1.4.0 on 3.4-64 bit windows
{ "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://...
[ { "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": "8AE234", "d...
closed
false
null
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
11
2014-09-24T19:54:04Z
2014-09-27T13:08:26Z
2014-09-27T13:08:26Z
CONTRIBUTOR
null
These passed on numpy 1.8/matplotlib 1.3.1 on 34-64 windows just updated and now failing ``` ====================================================================== ERROR: test_boxplot_empty_column (pandas.tests.test_graphics.TestDataFramePlots) ---------------------------------------------------------------------- Tra...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8382/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8382/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8383
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8383/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8383/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8383/events
https://github.com/pandas-dev/pandas/issues/8383
43,808,377
MDU6SXNzdWU0MzgwODM3Nw==
8,383
nanmin no longer works with series
{ "avatar_url": "https://avatars.githubusercontent.com/u/3595641?v=4", "events_url": "https://api.github.com/users/rstoneback/events{/privacy}", "followers_url": "https://api.github.com/users/rstoneback/followers", "following_url": "https://api.github.com/users/rstoneback/following{/other_user}", "gists_url":...
[ { "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": "0052cc", "default": false, "description": "p...
closed
false
null
[]
{ "closed_at": "2018-05-16T03:09:58Z", "closed_issues": 1645, "created_at": "2017-10-20T10:17:09Z", "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...
25
2014-09-24T20:01:52Z
2018-02-19T13:50:57Z
2018-02-19T13:50:57Z
NONE
null
Using NumPy's nanmin on a pandas Series worked as expected, now however the Series is returned with each element set to the minimum, rather than just getting the minimum. Not sure if this is a Numpy of Pandas issue. ``` np.nanmin(pds.Series([1,2,3,4])) Out[14]: 0 1 1 1 2 1 3 1 dtype: int64 np.min(pds.Ser...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8383/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8383/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8384
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8384/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8384/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8384/events
https://github.com/pandas-dev/pandas/pull/8384
43,830,566
MDExOlB1bGxSZXF1ZXN0MjE3NTQ3Njc=
8,384
non-existent columns in DataFrame.dropna subset argument now raises KeyError
{ "avatar_url": "https://avatars.githubusercontent.com/u/6242856?v=4", "events_url": "https://api.github.com/users/mcjcode/events{/privacy}", "followers_url": "https://api.github.com/users/mcjcode/followers", "following_url": "https://api.github.com/users/mcjcode/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": "d7e102", "default": false, "description": "np.nan, pd.NaT, pd.NA, d...
closed
false
null
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
1
2014-09-25T00:31:10Z
2014-09-26T14:35:25Z
2014-09-26T14:35:18Z
CONTRIBUTOR
null
closes #8303. Now instead of interpreting a bad column name as the 'last column' of the `DataFrame`, `dropna` will raise a `KeyError` instead. unit test and release note now included.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8384/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8384/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/8384.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/8384", "merged_at": "2014-09-26T14:35:18Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/8384.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/8384" }
https://api.github.com/repos/pandas-dev/pandas/issues/8385
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8385/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8385/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8385/events
https://github.com/pandas-dev/pandas/pull/8385
43,889,436
MDExOlB1bGxSZXF1ZXN0MjE3Njg2NjQ=
8,385
ENH: add the parameter dropna to the function to_dict.
{ "avatar_url": "https://avatars.githubusercontent.com/u/1618971?v=4", "events_url": "https://api.github.com/users/derDieDasJojo/events{/privacy}", "followers_url": "https://api.github.com/users/derDieDasJojo/followers", "following_url": "https://api.github.com/users/derDieDasJojo/following{/other_user}", "gi...
[ { "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": "ededed", "default": false, "description": "__repr__...
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...
10
2014-09-25T08:49:11Z
2015-05-14T15:47:33Z
2015-05-09T16:09:38Z
NONE
null
this is usefull because you cant reach the same effect by just using dropna().to_dict() also see http://stackoverflow.com/questions/26033301/make-pandas-dataframe-to-a-dict-and-dropna/26033302#26033302
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8385/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8385/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/8385.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/8385", "merged_at": null, "patch_url": "https://github.com/pandas-dev/pandas/pull/8385.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/8385" }
https://api.github.com/repos/pandas-dev/pandas/issues/8386
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8386/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8386/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8386/events
https://github.com/pandas-dev/pandas/issues/8386
43,904,193
MDU6SXNzdWU0MzkwNDE5Mw==
8,386
Not all DateOffsets are comparable
{ "avatar_url": "https://avatars.githubusercontent.com/u/1845771?v=4", "events_url": "https://api.github.com/users/edrevo/events{/privacy}", "followers_url": "https://api.github.com/users/edrevo/followers", "following_url": "https://api.github.com/users/edrevo/following{/other_user}", "gists_url": "https://ap...
[ { "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": "ffa0ff", "default": false, "description": "I...
closed
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...
4
2014-09-25T10:45:54Z
2020-03-10T05:19:05Z
2020-03-10T05:19:05Z
NONE
null
``` python >>> from pandas.tseries.frequencies import to_offset as _to_offset >>> _to_offset('D') < _to_offset('H') False >>> _to_offset('D') < _to_offset('W') --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) <ipython...
{ "+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/8386/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8386/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8387
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8387/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8387/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8387/events
https://github.com/pandas-dev/pandas/issues/8387
43,906,154
MDU6SXNzdWU0MzkwNjE1NA==
8,387
Pandas ignores index when assigning different dtypes.
{ "avatar_url": "https://avatars.githubusercontent.com/u/158309?v=4", "events_url": "https://api.github.com/users/smatting/events{/privacy}", "followers_url": "https://api.github.com/users/smatting/followers", "following_url": "https://api.github.com/users/smatting/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": "0b02e1", "default": false, "description": "Related to indexing on s...
closed
false
null
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
1
2014-09-25T11:06:51Z
2014-09-29T15:19:49Z
2014-09-29T15:19:49Z
NONE
null
Consider the following example: ``` python import pandas foo = pandas.Series( [ 0, 1, 2, 0 ] ) w = foo > 0 bar = foo[ w ].map( str ) print bar foo[w] = bar print foo foo[w] = bar print foo ``` gives the following output ``` 1 1 2 2 dtype: object 0 0 1 NaN 2 1 3 0 dtype: object 0 0 ...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8387/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8387/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8388
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8388/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8388/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8388/events
https://github.com/pandas-dev/pandas/pull/8388
43,920,874
MDExOlB1bGxSZXF1ZXN0MjE3ODM1Nzk=
8,388
EHN: Allow DataFrame.fillna to accept a DataFrame as its fill value.
{ "avatar_url": "https://avatars.githubusercontent.com/u/443776?v=4", "events_url": "https://api.github.com/users/unutbu/events{/privacy}", "followers_url": "https://api.github.com/users/unutbu/followers", "following_url": "https://api.github.com/users/unutbu/following{/other_user}", "gists_url": "https://api...
[ { "color": "4E9A06", "default": false, "description": null, "id": 76812, "name": "Enhancement", "node_id": "MDU6TGFiZWw3NjgxMg==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Enhancement" }, { "color": "d7e102", "default": false, "description": "np.nan, ...
closed
false
null
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
1
2014-09-25T13:47:28Z
2014-09-26T19:11:04Z
2014-09-26T15:19:39Z
CONTRIBUTOR
null
Related: [SO](http://stackoverflow.com/q/26002564/190597) Fixes #8377
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8388/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8388/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/8388.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/8388", "merged_at": "2014-09-26T15:19:39Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/8388.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/8388" }
https://api.github.com/repos/pandas-dev/pandas/issues/8389
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8389/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8389/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8389/events
https://github.com/pandas-dev/pandas/issues/8389
43,937,491
MDU6SXNzdWU0MzkzNzQ5MQ==
8,389
BUG: HDFStore doesn't support a Panel with MultiIndex when format='table'
{ "avatar_url": "https://avatars.githubusercontent.com/u/7441788?v=4", "events_url": "https://api.github.com/users/seth-p/events{/privacy}", "followers_url": "https://api.github.com/users/seth-p/followers", "following_url": "https://api.github.com/users/seth-p/following{/other_user}", "gists_url": "https://ap...
[ { "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": "02d7e1", "default": false, "description": "Concat, ...
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...
18
2014-09-25T16:16:15Z
2018-07-06T20:21:05Z
2017-07-11T09:56:19Z
CONTRIBUTOR
null
Looks like I can `append()` to an `HDFStore` object a `DataFrame` with a `MultiIndex`, but not a `Panel` with a `MultiIndex`. Similarly `put`ing the `Panel` with `format='fixed'` works, but with `format='table'` doesn't. So the problem appears to be with the table format. ``` Python 3.4.1 (v3.4.1:c0e311e010fc, May 18 ...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8389/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8389/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8390
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8390/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8390/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8390/events
https://github.com/pandas-dev/pandas/issues/8390
43,941,625
MDU6SXNzdWU0Mzk0MTYyNQ==
8,390
BUG/VIS: Pie Plot with subplots doesn't include NaNs in legend
{ "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": "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
[]
{ "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...
1
2014-09-25T16:54:34Z
2018-07-06T22:04:19Z
2018-07-06T22:04:10Z
CONTRIBUTOR
null
Followup to https://github.com/pydata/pandas/pull/8307 ``` In [1]: df = pd.DataFrame(np.random.rand(4, 4)) In [2]: df2 = df.copy() In [3]: for i in range(len(df)): ...: df.iloc[i, i] = np.nan ...: In [4]: fig, axes = plt.subplots(figsize=(16, 8), nrows=2, ncols=4) In [5]: df.plot(kind='pie', subplot...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8390/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8390/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8391
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8391/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8391/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8391/events
https://github.com/pandas-dev/pandas/pull/8391
43,942,910
MDExOlB1bGxSZXF1ZXN0MjE3OTc0MjA=
8,391
DOC: Use square figsize for pie plots
{ "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": "3465A4", "default": false, "description": null, "id": 134699, "name": "Docs", "node_id": "MDU6TGFiZWwxMzQ2OTk=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs" }, { "color": "8AE234", "default": false, "description": null, "id": 241332...
closed
false
null
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
2
2014-09-25T17:06:53Z
2015-08-18T12:44:59Z
2014-10-04T18:01:29Z
CONTRIBUTOR
null
First commit closes https://github.com/pydata/pandas/issues/8308 second closes https://github.com/pydata/pandas/issues/8312 aside from using mpl 1.4 to build the docs. I can post any examples if you want.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8391/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8391/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/8391.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/8391", "merged_at": "2014-10-04T18:01:29Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/8391.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/8391" }
https://api.github.com/repos/pandas-dev/pandas/issues/8392
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8392/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8392/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8392/events
https://github.com/pandas-dev/pandas/issues/8392
43,948,865
MDU6SXNzdWU0Mzk0ODg2NQ==
8,392
ENH/BUG/DOC: HDFStore.append() on axis other than DataFrame.index or Panel.major_axis
{ "avatar_url": "https://avatars.githubusercontent.com/u/7441788?v=4", "events_url": "https://api.github.com/users/seth-p/events{/privacy}", "followers_url": "https://api.github.com/users/seth-p/followers", "following_url": "https://api.github.com/users/seth-p/following{/other_user}", "gists_url": "https://ap...
[ { "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": "5319e7", "default": false, "description": "read_hdf...
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...
6
2014-09-25T18:08:51Z
2014-09-26T18:54:21Z
null
CONTRIBUTOR
null
For DataFrames, `HDFStore.append()` works only when "appending" along the `index` direction, i.e. it expects the `columns` to be the same. See sample below. This doesn't appear to be documented. If can only append along a single axis, would be nice to be able to specify which. Similarly for Panels, it appears to work ...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8392/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8392/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8393
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8393/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8393/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8393/events
https://github.com/pandas-dev/pandas/pull/8393
43,952,317
MDExOlB1bGxSZXF1ZXN0MjE4MDM0MTc=
8,393
TST: Fix failing pie plot tests
{ "avatar_url": "https://avatars.githubusercontent.com/u/1312546?v=4", "events_url": "https://api.github.com/users/TomAugspurger/events{/privacy}", "followers_url": "https://api.github.com/users/TomAugspurger/followers", "following_url": "https://api.github.com/users/TomAugspurger/following{/other_user}", "gi...
[]
closed
false
null
[]
null
0
2014-09-25T18:41:16Z
2017-04-05T02:05:56Z
2014-09-25T19:46:38Z
CONTRIBUTOR
null
Fixes the build failures from merging https://github.com/pydata/pandas/pull/8307
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8393/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8393/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/8393.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/8393", "merged_at": "2014-09-25T19:46:38Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/8393.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/8393" }
https://api.github.com/repos/pandas-dev/pandas/issues/8394
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8394/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8394/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8394/events
https://github.com/pandas-dev/pandas/pull/8394
43,995,630
MDExOlB1bGxSZXF1ZXN0MjE4MjY3MzI=
8,394
BUG: apply mask to aligned new values
{ "avatar_url": "https://avatars.githubusercontent.com/u/1288998?v=4", "events_url": "https://api.github.com/users/behzadnouri/events{/privacy}", "followers_url": "https://api.github.com/users/behzadnouri/followers", "following_url": "https://api.github.com/users/behzadnouri/following{/other_user}", "gists_ur...
[ { "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...
closed
false
null
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
5
2014-09-26T03:27:22Z
2014-10-01T00:32:59Z
2014-09-29T15:19:28Z
CONTRIBUTOR
null
closes https://github.com/pydata/pandas/issues/8387
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8394/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8394/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/8394.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/8394", "merged_at": null, "patch_url": "https://github.com/pandas-dev/pandas/pull/8394.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/8394" }
https://api.github.com/repos/pandas-dev/pandas/issues/8395
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8395/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8395/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8395/events
https://github.com/pandas-dev/pandas/pull/8395
44,003,117
MDExOlB1bGxSZXF1ZXN0MjE4MjkyNDU=
8,395
BUG: fix Panel.fillna() ignoring axis parameter
{ "avatar_url": "https://avatars.githubusercontent.com/u/7545449?v=4", "events_url": "https://api.github.com/users/stahlous/events{/privacy}", "followers_url": "https://api.github.com/users/stahlous/followers", "following_url": "https://api.github.com/users/stahlous/following{/other_user}", "gists_url": "http...
[ { "color": "e10c02", "default": false, "description": null, "id": 76811, "name": "Bug", "node_id": "MDU6TGFiZWw3NjgxMQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug" }, { "color": "d7e102", "default": false, "description": "np.nan, pd.NaT, pd.NA, d...
closed
false
null
[]
{ "closed_at": null, "closed_issues": 786, "created_at": "2015-01-13T10:53:19Z", "creator": { "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", ...
18
2014-09-26T05:26:38Z
2015-10-26T22:40:03Z
2015-07-12T14:58:11Z
CONTRIBUTOR
null
This fixes #8251. It may need some more comprehensive tests but before I go too much farther I want to make sure the axis numbering scheme makes sense . The default behavior of `fillna` is to fill along `axis=0`. In the case of a DataFrame this fills along the columns. However, in the case of a Panel, filling along `ax...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8395/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8395/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/8395.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/8395", "merged_at": null, "patch_url": "https://github.com/pandas-dev/pandas/pull/8395.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/8395" }
https://api.github.com/repos/pandas-dev/pandas/issues/8396
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8396/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8396/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8396/events
https://github.com/pandas-dev/pandas/pull/8396
44,065,155
MDExOlB1bGxSZXF1ZXN0MjE4NTA0NDc=
8,396
BUG: maintain order in excluding categories
{ "avatar_url": "https://avatars.githubusercontent.com/u/1288998?v=4", "events_url": "https://api.github.com/users/behzadnouri/events{/privacy}", "followers_url": "https://api.github.com/users/behzadnouri/followers", "following_url": "https://api.github.com/users/behzadnouri/following{/other_user}", "gists_ur...
[]
closed
true
null
[]
null
8
2014-09-26T14:05:10Z
2014-09-26T18:32:01Z
2014-09-26T14:44:05Z
CONTRIBUTOR
null
should fix current travis fails on master branch. i cannot add tests right now because `test_remove_categories` in `test_categorical.py` does not fail on my machine. it also passes on a number of travis builds, and fails only on a couple.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8396/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8396/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/8396.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/8396", "merged_at": null, "patch_url": "https://github.com/pandas-dev/pandas/pull/8396.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/8396" }
https://api.github.com/repos/pandas-dev/pandas/issues/8397
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8397/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8397/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8397/events
https://github.com/pandas-dev/pandas/issues/8397
44,070,608
MDU6SXNzdWU0NDA3MDYwOA==
8,397
TST: Catch Warnings in tests
{ "avatar_url": "https://avatars.githubusercontent.com/u/1312546?v=4", "events_url": "https://api.github.com/users/TomAugspurger/events{/privacy}", "followers_url": "https://api.github.com/users/TomAugspurger/followers", "following_url": "https://api.github.com/users/TomAugspurger/following{/other_user}", "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" } ]
closed
false
null
[]
{ "closed_at": "2017-05-06T10:20:19Z", "closed_issues": 987, "created_at": "2016-02-08T15:30:21Z", "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/jr...
7
2014-09-26T14:59:06Z
2017-03-23T13:46:36Z
2017-03-23T13:46:36Z
CONTRIBUTOR
null
If only to have nicer looking test output. ``` .../Users/tom/Envs/py3/lib/python3.4/site-packages/pandas/pandas/tools/plotting.py:3229: UserWarning: To output multiple subplots, the figure containing the passed axes is being cleared "is being cleared", UserWarning) ../Users/tom/Envs/py3/lib/python3.4/site-packages/p...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8397/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8397/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/8398
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8398/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8398/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8398/events
https://github.com/pandas-dev/pandas/pull/8398
44,070,788
MDExOlB1bGxSZXF1ZXN0MjE4NTM5Mjg=
8,398
TST: Skip failing boxplot tests on mpl 1.4+
{ "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": "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": "8AE234", "d...
closed
false
null
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
1
2014-09-26T15:00:41Z
2017-04-05T02:05:56Z
2014-09-27T13:08:26Z
CONTRIBUTOR
null
Closes https://github.com/pydata/pandas/issues/8382
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8398/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8398/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/8398.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/8398", "merged_at": "2014-09-27T13:08:26Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/8398.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/8398" }
https://api.github.com/repos/pandas-dev/pandas/issues/8399
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8399/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8399/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8399/events
https://github.com/pandas-dev/pandas/pull/8399
44,115,939
MDExOlB1bGxSZXF1ZXN0MjE4ODE4MjQ=
8,399
BUG: inconsisten panel indexing with aligning frame (GH7763)
{ "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://...
[ { "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...
closed
false
null
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
0
2014-09-26T23:36:27Z
2014-09-26T23:36:40Z
2014-09-26T23:36:40Z
CONTRIBUTOR
null
closes #7763
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8399/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8399/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/8399.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/8399", "merged_at": "2014-09-26T23:36:40Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/8399.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/8399" }
https://api.github.com/repos/pandas-dev/pandas/issues/8400
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/8400/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/8400/comments
https://api.github.com/repos/pandas-dev/pandas/issues/8400/events
https://github.com/pandas-dev/pandas/pull/8400
44,116,397
MDExOlB1bGxSZXF1ZXN0MjE4ODIwNzQ=
8,400
add support for numpy 1.8+ data types for conversion to r dataframe
{ "avatar_url": "https://avatars.githubusercontent.com/u/660712?v=4", "events_url": "https://api.github.com/users/benjschiller/events{/privacy}", "followers_url": "https://api.github.com/users/benjschiller/followers", "following_url": "https://api.github.com/users/benjschiller/following{/other_user}", "gists_...
[ { "color": "0052cc", "default": false, "description": "pandas objects compatability with Numpy or Python functions", "id": 76865106, "name": "Compat", "node_id": "MDU6TGFiZWw3Njg2NTEwNg==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Compat" } ]
closed
false
null
[]
{ "closed_at": "2014-10-23T11:43:09Z", "closed_issues": 530, "created_at": "2014-07-06T18:44:54Z", "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/jr...
6
2014-09-26T23:47:03Z
2014-09-29T21:42:52Z
2014-09-29T21:42:44Z
NONE
null
Numpy changed the names of their data types in 1.8 http://docs.scipy.org/doc/numpy-dev/user/basics.types.html specifically, bool, int, float, and complex are now bool_, int_, float_ and complex_ this requires changing the VECTOR_TYPES and NA_TYPES dictionaries used by convert_to_r_dataframe in pandas/rpy/common.py n...
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/8400/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/8400/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/8400.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/8400", "merged_at": "2014-09-29T21:42:44Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/8400.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/8400" }