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/4201
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4201/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4201/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4201/events
https://github.com/pandas-dev/pandas/issues/4201
16,621,072
MDU6SXNzdWUxNjYyMTA3Mg==
4,201
wrong index name during read_csv if using usecols
{ "avatar_url": "https://avatars.githubusercontent.com/u/1774378?v=4", "events_url": "https://api.github.com/users/tesla1060/events{/privacy}", "followers_url": "https://api.github.com/users/tesla1060/followers", "following_url": "https://api.github.com/users/tesla1060/following{/other_user}", "gists_url": "https://api.github.com/users/tesla1060/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/tesla1060", "id": 1774378, "login": "tesla1060", "node_id": "MDQ6VXNlcjE3NzQzNzg=", "organizations_url": "https://api.github.com/users/tesla1060/orgs", "received_events_url": "https://api.github.com/users/tesla1060/received_events", "repos_url": "https://api.github.com/users/tesla1060/repos", "site_admin": false, "starred_url": "https://api.github.com/users/tesla1060/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/tesla1060/subscriptions", "type": "User", "url": "https://api.github.com/users/tesla1060" }
[ { "color": "06909A", "default": false, "description": "IO issues that don't fit into a more specific label", "id": 2301354, "name": "IO Data", "node_id": "MDU6TGFiZWwyMzAxMzU0", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20Data" }, { "color": "009800", "default": false, "description": "Duplicate issue or pull request", "id": 40153326, "name": "Duplicate Report", "node_id": "MDU6TGFiZWw0MDE1MzMyNg==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Duplicate%20Report" }, { "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" } ]
closed
false
null
[]
{ "closed_at": "2013-12-30T19:53:14Z", "closed_issues": 1076, "created_at": "2012-11-15T23:33:37Z", "creator": { "avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4", "events_url": "https://api.github.com/users/wesm/events{/privacy}", "followers_url": "https://api.github.com/users/wesm/followers", "following_url": "https://api.github.com/users/wesm/following{/other_user}", "gists_url": "https://api.github.com/users/wesm/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/wesm", "id": 329591, "login": "wesm", "node_id": "MDQ6VXNlcjMyOTU5MQ==", "organizations_url": "https://api.github.com/users/wesm/orgs", "received_events_url": "https://api.github.com/users/wesm/received_events", "repos_url": "https://api.github.com/users/wesm/repos", "site_admin": false, "starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/wesm/subscriptions", "type": "User", "url": "https://api.github.com/users/wesm" }, "description": "RC1 ANN went out on 2013-12-6: https://groups.google.com/forum/#!topic/pydata/OHutLByJvK0\r\nTwo weeks, clear all reported bugs then call it on 2013-12-20. \r\n(@y-p)\r\n\r\nsince we've had some bugs reported at a high enough rate, extending rc by one\r\nweek until 2013-12-27. \r\n(@y-p)\r\n\r\nBumping to clear debian sparc\r\n2013-12-30. \r\n(@y-p)", "due_on": "2013-12-30T08:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/18", "id": 213925, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18/labels", "node_id": "MDk6TWlsZXN0b25lMjEzOTI1", "number": 18, "open_issues": 0, "state": "closed", "title": "0.13", "updated_at": "2017-07-22T19:00:05Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18" }
3
2013-07-11T09:14:35Z
2013-09-27T12:39:28Z
2013-09-27T12:39:28Z
NONE
null
Hi, If I have a test.csv file looks like below ``` SecId Time Price P2 P3 10000 2013-5-11 100 10 1 500 2013-5-12 101 11 1 ``` if I read in the above file with the following code ``` df =pd.read_csv('test.csv', usecols=['Time', 'Price'], parse_dates=True, index_col=0) ``` then `df.index.name` will be `SecId` instead of `Time`
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4201/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4201/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4202
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4202/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4202/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4202/events
https://github.com/pandas-dev/pandas/issues/4202
16,624,784
MDU6SXNzdWUxNjYyNDc4NA==
4,202
API: Deep copy not copying index/columns
{ "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.github.com/users/hayd/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/hayd", "id": 1931852, "login": "hayd", "node_id": "MDQ6VXNlcjE5MzE4NTI=", "organizations_url": "https://api.github.com/users/hayd/orgs", "received_events_url": "https://api.github.com/users/hayd/received_events", "repos_url": "https://api.github.com/users/hayd/repos", "site_admin": false, "starred_url": "https://api.github.com/users/hayd/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/hayd/subscriptions", "type": "User", "url": "https://api.github.com/users/hayd" }
[ { "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, "name": "API Design", "node_id": "MDU6TGFiZWwzNTgxODI5OA==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/API%20Design" } ]
closed
false
null
[]
{ "closed_at": "2013-12-30T19:53:14Z", "closed_issues": 1076, "created_at": "2012-11-15T23:33:37Z", "creator": { "avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4", "events_url": "https://api.github.com/users/wesm/events{/privacy}", "followers_url": "https://api.github.com/users/wesm/followers", "following_url": "https://api.github.com/users/wesm/following{/other_user}", "gists_url": "https://api.github.com/users/wesm/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/wesm", "id": 329591, "login": "wesm", "node_id": "MDQ6VXNlcjMyOTU5MQ==", "organizations_url": "https://api.github.com/users/wesm/orgs", "received_events_url": "https://api.github.com/users/wesm/received_events", "repos_url": "https://api.github.com/users/wesm/repos", "site_admin": false, "starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/wesm/subscriptions", "type": "User", "url": "https://api.github.com/users/wesm" }, "description": "RC1 ANN went out on 2013-12-6: https://groups.google.com/forum/#!topic/pydata/OHutLByJvK0\r\nTwo weeks, clear all reported bugs then call it on 2013-12-20. \r\n(@y-p)\r\n\r\nsince we've had some bugs reported at a high enough rate, extending rc by one\r\nweek until 2013-12-27. \r\n(@y-p)\r\n\r\nBumping to clear debian sparc\r\n2013-12-30. \r\n(@y-p)", "due_on": "2013-12-30T08:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/18", "id": 213925, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18/labels", "node_id": "MDk6TWlsZXN0b25lMjEzOTI1", "number": 18, "open_issues": 0, "state": "closed", "title": "0.13", "updated_at": "2017-07-22T19:00:05Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18" }
13
2013-07-11T10:55:52Z
2016-10-12T23:03:59Z
2013-09-24T03:43:59Z
CONTRIBUTOR
null
http://stackoverflow.com/questions/17591104/in-pandas-can-i-deeply-copy-a-dataframe-including-its-index-and-column/17591423#17591423 This means if we change the index in place, e.g. with name: ``` df1 = df.copy() df1.index.name = 'ffg' ``` This changes the name of the df.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/4202/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4202/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4203
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4203/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4203/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4203/events
https://github.com/pandas-dev/pandas/issues/4203
16,626,363
MDU6SXNzdWUxNjYyNjM2Mw==
4,203
DOC: figures not sharp but little bit blurry
{ "avatar_url": "https://avatars.githubusercontent.com/u/1020496?v=4", "events_url": "https://api.github.com/users/jorisvandenbossche/events{/privacy}", "followers_url": "https://api.github.com/users/jorisvandenbossche/followers", "following_url": "https://api.github.com/users/jorisvandenbossche/following{/other_user}", "gists_url": "https://api.github.com/users/jorisvandenbossche/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/jorisvandenbossche", "id": 1020496, "login": "jorisvandenbossche", "node_id": "MDQ6VXNlcjEwMjA0OTY=", "organizations_url": "https://api.github.com/users/jorisvandenbossche/orgs", "received_events_url": "https://api.github.com/users/jorisvandenbossche/received_events", "repos_url": "https://api.github.com/users/jorisvandenbossche/repos", "site_admin": false, "starred_url": "https://api.github.com/users/jorisvandenbossche/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jorisvandenbossche/subscriptions", "type": "User", "url": "https://api.github.com/users/jorisvandenbossche" }
[]
closed
false
null
[]
null
5
2013-07-11T11:38:26Z
2013-07-14T14:26:48Z
2013-07-14T14:26:48Z
MEMBER
null
I noticed in the docs that the figures (in eg http://pandas.pydata.org/pandas-docs/dev/visualization.html) are not really sharp as could be, but somewhat blurry. So I wondered what the cause of this is, and it seems that because the `@savefig` pseudo-decorator is (usually) set with a `width=6in` the figure becomes a little bit enlarged/shrunken, with the result that the figure is not sharp anymore. So I tried what it would give if you remove this width. I tried some things (only in visualization.rst and rplot.rst): - Current situation: http://jorisvandenbossche.github.io/example-pandas-docs/html-plot-current/visualization.html - `width=6in` removed, so all figures keeping their own size (and becomen, in general a little bit smaller): http://jorisvandenbossche.github.io/example-pandas-docs/html-plot-withoutwidth/visualization.html - `width=6in` removed, so all figures keeping their own size but set larger in the mpl_stylesheet (from `(6,4)` to `(8,6)`): http://jorisvandenbossche.github.io/example-pandas-docs/html-plot-withoutwidth-larger/visualization.html I think the second one, with removing the width, is better than the current situation (only df.hist does not seem to follow the default size and is too large with removing the width parameter). What do you guys think? @y-p I think you are the last one who touched this to uniform the width of all figures (to 6 inch)
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4203/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4203/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4204
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4204/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4204/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4204/events
https://github.com/pandas-dev/pandas/issues/4204
16,626,713
MDU6SXNzdWUxNjYyNjcxMw==
4,204
BUG: loc setting NaN in an int column should upcast
{ "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.github.com/users/hayd/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/hayd", "id": 1931852, "login": "hayd", "node_id": "MDQ6VXNlcjE5MzE4NTI=", "organizations_url": "https://api.github.com/users/hayd/orgs", "received_events_url": "https://api.github.com/users/hayd/received_events", "repos_url": "https://api.github.com/users/hayd/repos", "site_admin": false, "starred_url": "https://api.github.com/users/hayd/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/hayd/subscriptions", "type": "User", "url": "https://api.github.com/users/hayd" }
[ { "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 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": "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": "006b75", "default": false, "description": "Arithmetic, Comparison, and Logical operations", "id": 47223669, "name": "Numeric Operations", "node_id": "MDU6TGFiZWw0NzIyMzY2OQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Numeric%20Operations" } ]
closed
false
null
[]
{ "closed_at": "2013-12-30T19:53:14Z", "closed_issues": 1076, "created_at": "2012-11-15T23:33:37Z", "creator": { "avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4", "events_url": "https://api.github.com/users/wesm/events{/privacy}", "followers_url": "https://api.github.com/users/wesm/followers", "following_url": "https://api.github.com/users/wesm/following{/other_user}", "gists_url": "https://api.github.com/users/wesm/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/wesm", "id": 329591, "login": "wesm", "node_id": "MDQ6VXNlcjMyOTU5MQ==", "organizations_url": "https://api.github.com/users/wesm/orgs", "received_events_url": "https://api.github.com/users/wesm/received_events", "repos_url": "https://api.github.com/users/wesm/repos", "site_admin": false, "starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/wesm/subscriptions", "type": "User", "url": "https://api.github.com/users/wesm" }, "description": "RC1 ANN went out on 2013-12-6: https://groups.google.com/forum/#!topic/pydata/OHutLByJvK0\r\nTwo weeks, clear all reported bugs then call it on 2013-12-20. \r\n(@y-p)\r\n\r\nsince we've had some bugs reported at a high enough rate, extending rc by one\r\nweek until 2013-12-27. \r\n(@y-p)\r\n\r\nBumping to clear debian sparc\r\n2013-12-30. \r\n(@y-p)", "due_on": "2013-12-30T08:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/18", "id": 213925, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18/labels", "node_id": "MDk6TWlsZXN0b25lMjEzOTI1", "number": 18, "open_issues": 0, "state": "closed", "title": "0.13", "updated_at": "2017-07-22T19:00:05Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18" }
2
2013-07-11T11:48:07Z
2013-10-03T00:31:53Z
2013-08-16T19:34:11Z
CONTRIBUTOR
null
I think upcasting to float should occur here. For example: ``` In [1]: df = pd.DataFrame([[0, 0]]) In [2]: df.loc[0] = np.nan In [3]: df Out[3]: 0 1 0 -9223372036854775808 -9223372036854775808 ``` Sometimes this is caught: ``` In [11]: df = pd.DataFrame([[0]]) In [12]: df.loc[0] = np.nan --------------------------------------------------------------------------- ValueError Traceback (most recent call last) <ipython-input-12-92653b6a9ef8> in <module>() ----> 1 df.loc[0] = np.nan /Users/234BroadWalk/pandas/core/indexing.pyc in __setitem__(self, key, value) 86 87 self._setitem_with_indexer(indexer, value) ---> 88 89 def _has_valid_tuple(self, key): 90 pass /Users/234BroadWalk/pandas/core/indexing.pyc in _setitem_with_indexer(self, indexer, value) 183 if np.prod(values.shape): 184 values[indexer] = value --> 185 186 def _align_series(self, indexer, ser): 187 # indexer to assign Series can be tuple or scalar ValueError: cannot convert float NaN to integer ```
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4204/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4204/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4205
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4205/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4205/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4205/events
https://github.com/pandas-dev/pandas/issues/4205
16,627,779
MDU6SXNzdWUxNjYyNzc3OQ==
4,205
API: deprecate get_offset, Offset for time rules like '30s'
{ "avatar_url": "https://avatars.githubusercontent.com/u/296164?v=4", "events_url": "https://api.github.com/users/jseabold/events{/privacy}", "followers_url": "https://api.github.com/users/jseabold/followers", "following_url": "https://api.github.com/users/jseabold/following{/other_user}", "gists_url": "https://api.github.com/users/jseabold/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/jseabold", "id": 296164, "login": "jseabold", "node_id": "MDQ6VXNlcjI5NjE2NA==", "organizations_url": "https://api.github.com/users/jseabold/orgs", "received_events_url": "https://api.github.com/users/jseabold/received_events", "repos_url": "https://api.github.com/users/jseabold/repos", "site_admin": false, "starred_url": "https://api.github.com/users/jseabold/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jseabold/subscriptions", "type": "User", "url": "https://api.github.com/users/jseabold" }
[ { "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": "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": "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": "Functionality to remove in pandas", "id": 87485152, "name": "Deprecate", "node_id": "MDU6TGFiZWw4NzQ4NTE1Mg==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Deprecate" } ]
closed
false
{ "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://api.github.com/users/jreback/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/jreback", "id": 953992, "login": "jreback", "node_id": "MDQ6VXNlcjk1Mzk5Mg==", "organizations_url": "https://api.github.com/users/jreback/orgs", "received_events_url": "https://api.github.com/users/jreback/received_events", "repos_url": "https://api.github.com/users/jreback/repos", "site_admin": false, "starred_url": "https://api.github.com/users/jreback/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jreback/subscriptions", "type": "User", "url": "https://api.github.com/users/jreback" }
[ { "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://api.github.com/users/jreback/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/jreback", "id": 953992, "login": "jreback", "node_id": "MDQ6VXNlcjk1Mzk5Mg==", "organizations_url": "https://api.github.com/users/jreback/orgs", "received_events_url": "https://api.github.com/users/jreback/received_events", "repos_url": "https://api.github.com/users/jreback/repos", "site_admin": false, "starred_url": "https://api.github.com/users/jreback/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jreback/subscriptions", "type": "User", "url": "https://api.github.com/users/jreback" } ]
{ "closed_at": "2020-01-30T12:18:05Z", "closed_issues": 2207, "created_at": "2012-09-13T02:13:00Z", "creator": { "avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4", "events_url": "https://api.github.com/users/wesm/events{/privacy}", "followers_url": "https://api.github.com/users/wesm/followers", "following_url": "https://api.github.com/users/wesm/following{/other_user}", "gists_url": "https://api.github.com/users/wesm/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/wesm", "id": 329591, "login": "wesm", "node_id": "MDQ6VXNlcjMyOTU5MQ==", "organizations_url": "https://api.github.com/users/wesm/orgs", "received_events_url": "https://api.github.com/users/wesm/received_events", "repos_url": "https://api.github.com/users/wesm/repos", "site_admin": false, "starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/wesm/subscriptions", "type": "User", "url": "https://api.github.com/users/wesm" }, "description": "on-merge: backport to 1.0.x", "due_on": "2020-02-01T08:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/16", "id": 174211, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16/labels", "node_id": "MDk6TWlsZXN0b25lMTc0MjEx", "number": 16, "open_issues": 0, "state": "closed", "title": "1.0.0", "updated_at": "2020-01-30T12:18:05Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/16" }
7
2013-07-11T12:18:01Z
2019-12-27T20:53:28Z
2019-12-27T20:53:28Z
CONTRIBUTOR
null
From stackoverflow: http://stackoverflow.com/questions/17579932/statsmodel-arma-function-is-incompatiable-with-pandas/17581170 I'm looking only quickly at this, but I'm wondering if this should be recognized and return an offset. ``` from pandas.tseries.frequencies import get_offset get_offset('30s') ``` or if in statsmodels we should accept custom offsets in place of frequency strings.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4205/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4205/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4206
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4206/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4206/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4206/events
https://github.com/pandas-dev/pandas/pull/4206
16,629,449
MDExOlB1bGxSZXF1ZXN0Njg2Mjk3NA==
4,206
DOC: more prominent HDFStore store docs about storer/table formats
{ "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://api.github.com/users/jreback/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/jreback", "id": 953992, "login": "jreback", "node_id": "MDQ6VXNlcjk1Mzk5Mg==", "organizations_url": "https://api.github.com/users/jreback/orgs", "received_events_url": "https://api.github.com/users/jreback/received_events", "repos_url": "https://api.github.com/users/jreback/repos", "site_admin": false, "starred_url": "https://api.github.com/users/jreback/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jreback/subscriptions", "type": "User", "url": "https://api.github.com/users/jreback" }
[]
closed
false
null
[]
{ "closed_at": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
0
2013-07-11T13:01:45Z
2014-06-23T16:47:24Z
2013-07-11T13:17:51Z
CONTRIBUTOR
null
closes #4189
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4206/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4206/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4206.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4206", "merged_at": "2013-07-11T13:17:51Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4206.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4206" }
https://api.github.com/repos/pandas-dev/pandas/issues/4207
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4207/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4207/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4207/events
https://github.com/pandas-dev/pandas/pull/4207
16,630,842
MDExOlB1bGxSZXF1ZXN0Njg2MzY5Ng==
4,207
PERF: add ix scalar get benchmark
{ "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://api.github.com/users/jreback/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/jreback", "id": 953992, "login": "jreback", "node_id": "MDQ6VXNlcjk1Mzk5Mg==", "organizations_url": "https://api.github.com/users/jreback/orgs", "received_events_url": "https://api.github.com/users/jreback/received_events", "repos_url": "https://api.github.com/users/jreback/repos", "site_admin": false, "starred_url": "https://api.github.com/users/jreback/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jreback/subscriptions", "type": "User", "url": "https://api.github.com/users/jreback" }
[]
closed
false
null
[]
null
3
2013-07-11T13:33:27Z
2014-07-16T08:18:50Z
2013-07-11T13:33:33Z
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/4207/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4207/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4207.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4207", "merged_at": "2013-07-11T13:33:33Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4207.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4207" }
https://api.github.com/repos/pandas-dev/pandas/issues/4208
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4208/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4208/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4208/events
https://github.com/pandas-dev/pandas/issues/4208
16,636,486
MDU6SXNzdWUxNjYzNjQ4Ng==
4,208
Failed test on travis TestYahoo:test_get_quote_string
{ "avatar_url": "https://avatars.githubusercontent.com/u/10137?v=4", "events_url": "https://api.github.com/users/ghost/events{/privacy}", "followers_url": "https://api.github.com/users/ghost/followers", "following_url": "https://api.github.com/users/ghost/following{/other_user}", "gists_url": "https://api.github.com/users/ghost/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/ghost", "id": 10137, "login": "ghost", "node_id": "MDQ6VXNlcjEwMTM3", "organizations_url": "https://api.github.com/users/ghost/orgs", "received_events_url": "https://api.github.com/users/ghost/received_events", "repos_url": "https://api.github.com/users/ghost/repos", "site_admin": false, "starred_url": "https://api.github.com/users/ghost/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/ghost/subscriptions", "type": "User", "url": "https://api.github.com/users/ghost" }
[ { "color": "5319e7", "default": false, "description": "Unit tests that occasionally fail", "id": 76939933, "name": "Unreliable Test", "node_id": "MDU6TGFiZWw3NjkzOTkzMw==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Unreliable%20Test" } ]
closed
false
null
[]
null
2
2013-07-11T15:20:52Z
2014-01-25T15:45:53Z
2013-07-11T15:50:57Z
NONE
null
``` ====================================================================== FAIL: test_get_quote_string (pandas.io.tests.test_data.TestYahoo) ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/travis/virtualenv/python2.7_with_system_site_packages/local/lib/python2.7/site-packages/pandas-0.12.0rc1-py2.7-linux-x86_64.egg/pandas/util/testing.py", line 765, in network_wrapper return t(*args, **kwargs) File "/home/travis/virtualenv/python2.7_with_system_site_packages/local/lib/python2.7/site-packages/pandas-0.12.0rc1-py2.7-linux-x86_64.egg/pandas/io/tests/test_data.py", line 121, in test_get_quote_string assert_frame_equal(df, df2) File "/home/travis/virtualenv/python2.7_with_system_site_packages/local/lib/python2.7/site-packages/pandas-0.12.0rc1-py2.7-linux-x86_64.egg/pandas/util/testing.py", line 238, in assert_frame_equal check_less_precise=check_less_precise) File "/home/travis/virtualenv/python2.7_with_system_site_packages/local/lib/python2.7/site-packages/pandas-0.12.0rc1-py2.7-linux-x86_64.egg/pandas/util/testing.py", line 197, in assert_series_equal assert_almost_equal(left.values, right.values, check_less_precise) File "/home/travis/virtualenv/python2.7_with_system_site_packages/local/lib/python2.7/site-packages/pandas-0.12.0rc1-py2.7-linux-x86_64.egg/pandas/util/testing.py", line 141, in assert_almost_equal assert_almost_equal(a[i], b[i], check_less_precise) File "/home/travis/virtualenv/python2.7_with_system_site_packages/local/lib/python2.7/site-packages/pandas-0.12.0rc1-py2.7-linux-x86_64.egg/pandas/util/testing.py", line 170, in assert_almost_equal 1, a / b, decimal=decimal, err_msg=err_msg(a, b), verbose=False) File "/home/travis/virtualenv/python2.7_with_system_site_packages/local/lib/python2.7/site-packages/numpy/testing/utils.py", line 468, in assert_almost_equal raise AssertionError(msg) AssertionError: Arrays are not almost equal to 5 decimals expected 1.07000 but got 1.06000 ---------------------------------------------------------------------- Ran 3530 tests in 193.433s FAILED (SKIP=37, failures=1) The command "ci/script.sh" exited with 1. after_script $ ci/print_versions.py INSTALLED VERSIONS ------------------ Python: 2.7.3.final.0 OS: Linux 2.6.32-042stab061.2 #1 SMP Fri Aug 24 09:07:21 MSK 2012 x86_64 LC_ALL: en_US.UTF-8 LANG: en_US.UTF-8 Cython: 0.19.1 Numpy: 1.7.1 Scipy: 0.9.0 statsmodels: 0.5.0.dev-c9062e4 patsy: 0.1.0 scikits.timeseries: 0.91.3 dateutil: 2.1 pytz: 2013b bottleneck: 0.6.0 PyTables: 2.3.1 numexpr: 2.1 matplotlib: 1.2.1 openpyxl: 1.6.2 xlrd: 0.9.2 xlwt: 0.7.5 sqlalchemy: Not installed lxml: 3.2.1 bs4: 4.0.2 html5lib: 1.0b2 Done. Your build exited with 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/4208/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4208/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4209
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4209/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4209/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4209/events
https://github.com/pandas-dev/pandas/issues/4209
16,636,891
MDU6SXNzdWUxNjYzNjg5MQ==
4,209
BLD: can we build docs using numpy >= 1.7?
{ "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://api.github.com/users/jreback/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/jreback", "id": 953992, "login": "jreback", "node_id": "MDQ6VXNlcjk1Mzk5Mg==", "organizations_url": "https://api.github.com/users/jreback/orgs", "received_events_url": "https://api.github.com/users/jreback/received_events", "repos_url": "https://api.github.com/users/jreback/repos", "site_admin": false, "starred_url": "https://api.github.com/users/jreback/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jreback/subscriptions", "type": "User", "url": "https://api.github.com/users/jreback" }
[ { "color": "3465A4", "default": false, "description": null, "id": 134699, "name": "Docs", "node_id": "MDU6TGFiZWwxMzQ2OTk=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs" } ]
closed
false
null
[]
{ "closed_at": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
2
2013-07-11T15:27:45Z
2013-09-10T21:49:25Z
2013-07-24T20:05:17Z
CONTRIBUTOR
null
http://pandas.pydata.org/pandas-docs/dev/timeseries.html#custom-business-days-experimental
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4209/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4209/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4210
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4210/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4210/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4210/events
https://github.com/pandas-dev/pandas/pull/4210
16,636,946
MDExOlB1bGxSZXF1ZXN0Njg2NzIxNw==
4,210
BLD: pip 1.4 is coming, preempt issues with pytz install
{ "avatar_url": "https://avatars.githubusercontent.com/u/10137?v=4", "events_url": "https://api.github.com/users/ghost/events{/privacy}", "followers_url": "https://api.github.com/users/ghost/followers", "following_url": "https://api.github.com/users/ghost/following{/other_user}", "gists_url": "https://api.github.com/users/ghost/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/ghost", "id": 10137, "login": "ghost", "node_id": "MDQ6VXNlcjEwMTM3", "organizations_url": "https://api.github.com/users/ghost/orgs", "received_events_url": "https://api.github.com/users/ghost/received_events", "repos_url": "https://api.github.com/users/ghost/repos", "site_admin": false, "starred_url": "https://api.github.com/users/ghost/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/ghost/subscriptions", "type": "User", "url": "https://api.github.com/users/ghost" }
[]
closed
false
null
[]
{ "closed_at": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
0
2013-07-11T15:28:25Z
2014-06-27T14:38:03Z
2013-07-11T15:33:03Z
NONE
null
https://github.com/pypa/pip/issues/974 2011k is the version shipped with precise, I hope that's conservative enough to avoid disruption for existing users.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4210/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4210/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4210.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4210", "merged_at": "2013-07-11T15:33:03Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4210.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4210" }
https://api.github.com/repos/pandas-dev/pandas/issues/4211
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4211/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4211/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4211/events
https://github.com/pandas-dev/pandas/issues/4211
16,637,967
MDU6SXNzdWUxNjYzNzk2Nw==
4,211
ENH: Dataframe should have a .isin() method
{ "avatar_url": "https://avatars.githubusercontent.com/u/1312546?v=4", "events_url": "https://api.github.com/users/TomAugspurger/events{/privacy}", "followers_url": "https://api.github.com/users/TomAugspurger/followers", "following_url": "https://api.github.com/users/TomAugspurger/following{/other_user}", "gists_url": "https://api.github.com/users/TomAugspurger/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/TomAugspurger", "id": 1312546, "login": "TomAugspurger", "node_id": "MDQ6VXNlcjEzMTI1NDY=", "organizations_url": "https://api.github.com/users/TomAugspurger/orgs", "received_events_url": "https://api.github.com/users/TomAugspurger/received_events", "repos_url": "https://api.github.com/users/TomAugspurger/repos", "site_admin": false, "starred_url": "https://api.github.com/users/TomAugspurger/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/TomAugspurger/subscriptions", "type": "User", "url": "https://api.github.com/users/TomAugspurger" }
[ { "color": "4E9A06", "default": false, "description": null, "id": 76812, "name": "Enhancement", "node_id": "MDU6TGFiZWw3NjgxMg==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Enhancement" } ]
closed
false
null
[]
{ "closed_at": "2013-12-30T19:53:14Z", "closed_issues": 1076, "created_at": "2012-11-15T23:33:37Z", "creator": { "avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4", "events_url": "https://api.github.com/users/wesm/events{/privacy}", "followers_url": "https://api.github.com/users/wesm/followers", "following_url": "https://api.github.com/users/wesm/following{/other_user}", "gists_url": "https://api.github.com/users/wesm/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/wesm", "id": 329591, "login": "wesm", "node_id": "MDQ6VXNlcjMyOTU5MQ==", "organizations_url": "https://api.github.com/users/wesm/orgs", "received_events_url": "https://api.github.com/users/wesm/received_events", "repos_url": "https://api.github.com/users/wesm/repos", "site_admin": false, "starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/wesm/subscriptions", "type": "User", "url": "https://api.github.com/users/wesm" }, "description": "RC1 ANN went out on 2013-12-6: https://groups.google.com/forum/#!topic/pydata/OHutLByJvK0\r\nTwo weeks, clear all reported bugs then call it on 2013-12-20. \r\n(@y-p)\r\n\r\nsince we've had some bugs reported at a high enough rate, extending rc by one\r\nweek until 2013-12-27. \r\n(@y-p)\r\n\r\nBumping to clear debian sparc\r\n2013-12-30. \r\n(@y-p)", "due_on": "2013-12-30T08:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/18", "id": 213925, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18/labels", "node_id": "MDk6TWlsZXN0b25lMjEzOTI1", "number": 18, "open_issues": 0, "state": "closed", "title": "0.13", "updated_at": "2017-07-22T19:00:05Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18" }
18
2013-07-11T15:45:24Z
2013-09-16T17:24:30Z
2013-07-24T21:45:38Z
CONTRIBUTOR
null
Any reason not to give `DataFrame` a `.isin()` method like `Series`? The new wrinkle is that the user needs to specify if they want a logical OR or AND. e.g. ``` python In [26]: df = pd.DataFrame({'vals': [1, 2, 3, 4], 'ids': ['a', 'b', 'f', 'f'], 'ids2': ['e', 'f', 'c', 'f']}) In [27]: df Out[27]: ids ids2 vals 0 a e 1 1 b f 2 2 f c 3 3 f f 4 In [1]: other_ids = pd.Series(['a', 'b', 'c', 'c']) df.isin(other_ids, how='or') ids ids2 vals 0 a e 1 1 b f 2 2 f c 3 df.isin(other_ids, how='and') ``` See [this SO post](http://stackoverflow.com/questions/17596733/filtering-rows-from-pandas-dataframe-using-concatenated-strings/17597500#17597500) maybe. If someone else wants to take this, feel free. Can't promise a PR any time soon, but maybe in the fall :)
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4211/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4211/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4212
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4212/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4212/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4212/events
https://github.com/pandas-dev/pandas/issues/4212
16,638,715
MDU6SXNzdWUxNjYzODcxNQ==
4,212
BLD: test_to_html_compat: AttributeError: 'NoneType' object has no attribute 'next_element'
{ "avatar_url": "https://avatars.githubusercontent.com/u/39889?v=4", "events_url": "https://api.github.com/users/yarikoptic/events{/privacy}", "followers_url": "https://api.github.com/users/yarikoptic/followers", "following_url": "https://api.github.com/users/yarikoptic/following{/other_user}", "gists_url": "https://api.github.com/users/yarikoptic/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/yarikoptic", "id": 39889, "login": "yarikoptic", "node_id": "MDQ6VXNlcjM5ODg5", "organizations_url": "https://api.github.com/users/yarikoptic/orgs", "received_events_url": "https://api.github.com/users/yarikoptic/received_events", "repos_url": "https://api.github.com/users/yarikoptic/repos", "site_admin": false, "starred_url": "https://api.github.com/users/yarikoptic/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/yarikoptic/subscriptions", "type": "User", "url": "https://api.github.com/users/yarikoptic" }
[ { "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": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
2
2013-07-11T15:56:50Z
2016-10-12T23:03:59Z
2013-07-17T13:34:50Z
CONTRIBUTOR
null
Trying current master build on Debian sid with ``` $> welp bs4 PATH : /usr/lib/python2.7/dist-packages/bs4/__init__.pyc SRC PATH : /usr/share/pyshared/bs4/__init__.py VERSION : Not found __version__: '4.2.0' PACKAGE : python-bs4 ii python-bs4 4.2.0-2 all error-tolerant HTML parser for Python python-bs4: Installed: 4.2.0-2 Candidate: 4.2.0-2 Version table: *** 4.2.0-2 0 900 http://debian.lcs.mit.edu/debian/ jessie/main amd64 Packages 600 http://debian.lcs.mit.edu/debian/ sid/main amd64 Packages 100 /var/lib/dpkg/status 4.1.0-1 0 100 http://debian.lcs.mit.edu/debian/ wheezy/main amd64 Packages ``` test crashes ``` ====================================================================== ERROR: test_to_html_compat (pandas.io.tests.test_html.TestReadHtmlBase) ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/yoh/deb/gits/pkg-exppsy/build-area/pandas-0.11.0+git43-g7b2eaa4/debian/tmp/usr/lib/python2.7/dist-packages/pandas/io/tests/test_html.py", line 88, in test_to_html_compat index_col=0)[0] File "/home/yoh/deb/gits/pkg-exppsy/build-area/pandas-0.11.0+git43-g7b2eaa4/debian/tmp/usr/lib/python2.7/dist-packages/pandas/io/tests/test_html.py", line 67, in run_read_html return read_html(*args, **kwargs) File "/home/yoh/deb/gits/pkg-exppsy/build-area/pandas-0.11.0+git43-g7b2eaa4/debian/tmp/usr/lib/python2.7/dist-packages/pandas/io/html.py", line 900, in read_html attrs) File "/home/yoh/deb/gits/pkg-exppsy/build-area/pandas-0.11.0+git43-g7b2eaa4/debian/tmp/usr/lib/python2.7/dist-packages/pandas/io/html.py", line 772, in _parse for table in tables] File "/home/yoh/deb/gits/pkg-exppsy/build-area/pandas-0.11.0+git43-g7b2eaa4/debian/tmp/usr/lib/python2.7/dist-packages/pandas/io/html.py", line 186, in <genexpr> return (self._build_table(table) for table in tables) File "/home/yoh/deb/gits/pkg-exppsy/build-area/pandas-0.11.0+git43-g7b2eaa4/debian/tmp/usr/lib/python2.7/dist-packages/pandas/io/html.py", line 345, in _build_table body = self._parse_raw_tbody(table) File "/home/yoh/deb/gits/pkg-exppsy/build-area/pandas-0.11.0+git43-g7b2eaa4/debian/tmp/usr/lib/python2.7/dist-packages/pandas/io/html.py", line 367, in _parse_raw_tbody res = self._parse_tr(tbody[0]) File "/home/yoh/deb/gits/pkg-exppsy/build-area/pandas-0.11.0+git43-g7b2eaa4/debian/tmp/usr/lib/python2.7/dist-packages/pandas/io/html.py", line 399, in _parse_tr return element.find_all('tr') File "/usr/lib/python2.7/dist-packages/bs4/element.py", line 1167, in find_all return self._find_all(name, attrs, text, limit, generator, **kwargs) File "/usr/lib/python2.7/dist-packages/bs4/element.py", line 485, in _find_all return [element for element in generator File "/usr/lib/python2.7/dist-packages/bs4/element.py", line 1185, in descendants current = current.next_element AttributeError: 'NoneType' object has no attribute 'next_element' ```
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4212/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4212/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4213
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4213/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4213/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4213/events
https://github.com/pandas-dev/pandas/issues/4213
16,638,867
MDU6SXNzdWUxNjYzODg2Nw==
4,213
BLD: _check_plot_works(df.plot) in test results in RuntimeError: Error building image
{ "avatar_url": "https://avatars.githubusercontent.com/u/39889?v=4", "events_url": "https://api.github.com/users/yarikoptic/events{/privacy}", "followers_url": "https://api.github.com/users/yarikoptic/followers", "following_url": "https://api.github.com/users/yarikoptic/following{/other_user}", "gists_url": "https://api.github.com/users/yarikoptic/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/yarikoptic", "id": 39889, "login": "yarikoptic", "node_id": "MDQ6VXNlcjM5ODg5", "organizations_url": "https://api.github.com/users/yarikoptic/orgs", "received_events_url": "https://api.github.com/users/yarikoptic/received_events", "repos_url": "https://api.github.com/users/yarikoptic/repos", "site_admin": false, "starred_url": "https://api.github.com/users/yarikoptic/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/yarikoptic/subscriptions", "type": "User", "url": "https://api.github.com/users/yarikoptic" }
[ { "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": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
11
2013-07-11T16:00:03Z
2013-07-18T04:21:25Z
2013-07-18T01:11:41Z
CONTRIBUTOR
null
While building debian package for 0.11.0+git43-g7b2eaa4, matplotlib 1.1.1~rc2-1 and while building it should use Agg backend, that is how tests are invoked ``` python-test%: python-install% ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) echo "backend : Agg" >| $(CURDIR)/build/matplotlibrc : # Run unittests here against installed pandas echo "$*" | grep -q '^3' && PY=3 || PY=$*; \ export PYTHONPATH=`/bin/ls -d $$PWD/debian/tmp/usr/lib/python$$PY/*/`; \ export MPLCONFIGDIR=$(CURDIR)/build HOME=$(CURDIR)/build; \ cd build/; python$* /usr/bin/nosetests -s -v -a '!network' $(EXCLUDE_TESTS$*) pandas; else : # Skip unittests due to nocheck endif ``` and here is a prototypical error (there is more for other invocations for the _check): ``` ====================================================================== ERROR: test_line_plot_period_frame (pandas.tseries.tests.test_plotting.TestTSPlot) ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/yoh/deb/gits/pkg-exppsy/build-area/pandas-0.11.0+git43-g7b2eaa4/debian/tmp/usr/lib/python2.7/dist-packages/pandas/tseries/tests/test_plotting.py", line 165, in test_line_plot_period_frame _check_plot_works(df.plot, df.index.freq) File "/home/yoh/deb/gits/pkg-exppsy/build-area/pandas-0.11.0+git43-g7b2eaa4/debian/tmp/usr/lib/python2.7/dist-packages/pandas/tseries/tests/test_plotting.py", line 1006, in _check_plot_works plt.savefig(path) File "/usr/lib/pymodules/python2.7/matplotlib/pyplot.py", line 471, in savefig return fig.savefig(*args, **kwargs) File "/usr/lib/pymodules/python2.7/matplotlib/figure.py", line 1185, in savefig self.canvas.print_figure(*args, **kwargs) File "/usr/lib/pymodules/python2.7/matplotlib/backend_bases.py", line 2021, in print_figure **kwargs) File "/usr/lib/pymodules/python2.7/matplotlib/backends/backend_agg.py", line 477, in print_png filename_or_obj, self.figure.dpi) RuntimeError: Error building image ```
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4213/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4213/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4214
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4214/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4214/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4214/events
https://github.com/pandas-dev/pandas/issues/4214
16,639,100
MDU6SXNzdWUxNjYzOTEwMA==
4,214
read_html failing in many tests: AssertionError: No tables found
{ "avatar_url": "https://avatars.githubusercontent.com/u/39889?v=4", "events_url": "https://api.github.com/users/yarikoptic/events{/privacy}", "followers_url": "https://api.github.com/users/yarikoptic/followers", "following_url": "https://api.github.com/users/yarikoptic/following{/other_user}", "gists_url": "https://api.github.com/users/yarikoptic/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/yarikoptic", "id": 39889, "login": "yarikoptic", "node_id": "MDQ6VXNlcjM5ODg5", "organizations_url": "https://api.github.com/users/yarikoptic/orgs", "received_events_url": "https://api.github.com/users/yarikoptic/received_events", "repos_url": "https://api.github.com/users/yarikoptic/repos", "site_admin": false, "starred_url": "https://api.github.com/users/yarikoptic/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/yarikoptic/subscriptions", "type": "User", "url": "https://api.github.com/users/yarikoptic" }
[ { "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": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
43
2013-07-11T16:03:58Z
2016-10-12T23:04:00Z
2013-07-16T14:19:22Z
CONTRIBUTOR
null
typical error with ``` ====================================================================== FAIL: test_banklist (pandas.io.tests.test_html.TestReadHtmlBase) ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/yoh/deb/gits/pkg-exppsy/build-area/pandas-0.11.0+git43-g7b2eaa4/debian/tmp/usr/lib/python2.7/dist-packages/pandas/io/tests/test_html.py", line 114, in test_banklist attrs={'id': 'table'}) File "/home/yoh/deb/gits/pkg-exppsy/build-area/pandas-0.11.0+git43-g7b2eaa4/debian/tmp/usr/lib/python2.7/dist-packages/pandas/io/tests/test_html.py", line 67, in run_read_html return read_html(*args, **kwargs) File "/home/yoh/deb/gits/pkg-exppsy/build-area/pandas-0.11.0+git43-g7b2eaa4/debian/tmp/usr/lib/python2.7/dist-packages/pandas/io/html.py", line 900, in read_html attrs) File "/home/yoh/deb/gits/pkg-exppsy/build-area/pandas-0.11.0+git43-g7b2eaa4/debian/tmp/usr/lib/python2.7/dist-packages/pandas/io/html.py", line 769, in _parse raise retained AssertionError: No tables found ```
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4214/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4214/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4215
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4215/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4215/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4215/events
https://github.com/pandas-dev/pandas/issues/4215
16,639,252
MDU6SXNzdWUxNjYzOTI1Mg==
4,215
test_invalid_colormap: ValueError not raised
{ "avatar_url": "https://avatars.githubusercontent.com/u/39889?v=4", "events_url": "https://api.github.com/users/yarikoptic/events{/privacy}", "followers_url": "https://api.github.com/users/yarikoptic/followers", "following_url": "https://api.github.com/users/yarikoptic/following{/other_user}", "gists_url": "https://api.github.com/users/yarikoptic/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/yarikoptic", "id": 39889, "login": "yarikoptic", "node_id": "MDQ6VXNlcjM5ODg5", "organizations_url": "https://api.github.com/users/yarikoptic/orgs", "received_events_url": "https://api.github.com/users/yarikoptic/received_events", "repos_url": "https://api.github.com/users/yarikoptic/repos", "site_admin": false, "starred_url": "https://api.github.com/users/yarikoptic/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/yarikoptic/subscriptions", "type": "User", "url": "https://api.github.com/users/yarikoptic" }
[ { "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", "default": false, "description": null, "id": 2413328, "name": "Visualization", "node_id": "MDU6TGFiZWwyNDEzMzI4", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Visualization" }, { "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": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
10
2013-07-11T16:05:59Z
2016-10-12T23:04:00Z
2013-07-13T18:19:43Z
CONTRIBUTOR
null
``` ====================================================================== FAIL: test_invalid_colormap (pandas.tests.test_graphics.TestDataFrameGroupByPlots) ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/yoh/deb/gits/pkg-exppsy/build-area/pandas-0.11.0+git43-g7b2eaa4/debian/tmp/usr/lib/python2.7/dist-packages/pandas/tests/test_graphics.py", line 995, in test_invalid_colormap self.assertRaises(ValueError, df.plot, colormap='invalid_colormap') AssertionError: ValueError not raised ``` that is under Agg backend and matplotlib 1.1.1~rc2-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/4215/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4215/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4216
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4216/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4216/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4216/events
https://github.com/pandas-dev/pandas/issues/4216
16,639,581
MDU6SXNzdWUxNjYzOTU4MQ==
4,216
VIS: DataFrame.plot(kind='kde') does not display the legend.
{ "avatar_url": "https://avatars.githubusercontent.com/u/98194?v=4", "events_url": "https://api.github.com/users/garaud/events{/privacy}", "followers_url": "https://api.github.com/users/garaud/followers", "following_url": "https://api.github.com/users/garaud/following{/other_user}", "gists_url": "https://api.github.com/users/garaud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/garaud", "id": 98194, "login": "garaud", "node_id": "MDQ6VXNlcjk4MTk0", "organizations_url": "https://api.github.com/users/garaud/orgs", "received_events_url": "https://api.github.com/users/garaud/received_events", "repos_url": "https://api.github.com/users/garaud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/garaud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/garaud/subscriptions", "type": "User", "url": "https://api.github.com/users/garaud" }
[]
closed
false
null
[]
null
1
2013-07-11T16:11:42Z
2013-07-14T19:22:03Z
2013-07-14T19:22:03Z
CONTRIBUTOR
null
Hi, I would like to have the legend when I display the 'kde' (also called 'dentity') of a DataFrame. The `plot` method works well with the other `kind` options (i.e. `bar`, `barh` and `line`). Following piece of code: ``` python import numpy as np import pandas as pd df = pd.DataFrame({'X': np.random.randn(500), 'Y': 2. + np.random.randn(500)*0.75}) # then df.plot(kind='kde') ``` does not display the legend for `X` and `Y` (even if I set `legend=True` which is the default value of the `legend` parameter). Note: I'm on master > 0.12rc1 Best regards, Damien
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4216/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4216/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4217
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4217/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4217/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4217/events
https://github.com/pandas-dev/pandas/pull/4217
16,640,457
MDExOlB1bGxSZXF1ZXN0Njg2OTE0NA==
4,217
DOC: remove savefig width parameter (#4203)
{ "avatar_url": "https://avatars.githubusercontent.com/u/1020496?v=4", "events_url": "https://api.github.com/users/jorisvandenbossche/events{/privacy}", "followers_url": "https://api.github.com/users/jorisvandenbossche/followers", "following_url": "https://api.github.com/users/jorisvandenbossche/following{/other_user}", "gists_url": "https://api.github.com/users/jorisvandenbossche/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/jorisvandenbossche", "id": 1020496, "login": "jorisvandenbossche", "node_id": "MDQ6VXNlcjEwMjA0OTY=", "organizations_url": "https://api.github.com/users/jorisvandenbossche/orgs", "received_events_url": "https://api.github.com/users/jorisvandenbossche/received_events", "repos_url": "https://api.github.com/users/jorisvandenbossche/repos", "site_admin": false, "starred_url": "https://api.github.com/users/jorisvandenbossche/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jorisvandenbossche/subscriptions", "type": "User", "url": "https://api.github.com/users/jorisvandenbossche" }
[]
closed
false
null
[]
{ "closed_at": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
2
2013-07-11T16:29:01Z
2014-06-27T11:45:17Z
2013-07-14T14:26:48Z
MEMBER
null
Closes #4203.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4217/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4217/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4217.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4217", "merged_at": "2013-07-14T14:26:48Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4217.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4217" }
https://api.github.com/repos/pandas-dev/pandas/issues/4218
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4218/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4218/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4218/events
https://github.com/pandas-dev/pandas/pull/4218
16,651,516
MDExOlB1bGxSZXF1ZXN0Njg3NTQzMQ==
4,218
BLD: Use 'git describe' to generate the version string for dev versions
{ "avatar_url": "https://avatars.githubusercontent.com/u/10137?v=4", "events_url": "https://api.github.com/users/ghost/events{/privacy}", "followers_url": "https://api.github.com/users/ghost/followers", "following_url": "https://api.github.com/users/ghost/following{/other_user}", "gists_url": "https://api.github.com/users/ghost/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/ghost", "id": 10137, "login": "ghost", "node_id": "MDQ6VXNlcjEwMTM3", "organizations_url": "https://api.github.com/users/ghost/orgs", "received_events_url": "https://api.github.com/users/ghost/received_events", "repos_url": "https://api.github.com/users/ghost/repos", "site_admin": false, "starred_url": "https://api.github.com/users/ghost/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/ghost/subscriptions", "type": "User", "url": "https://api.github.com/users/ghost" }
[]
closed
false
null
[]
{ "closed_at": "2013-12-30T19:53:14Z", "closed_issues": 1076, "created_at": "2012-11-15T23:33:37Z", "creator": { "avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4", "events_url": "https://api.github.com/users/wesm/events{/privacy}", "followers_url": "https://api.github.com/users/wesm/followers", "following_url": "https://api.github.com/users/wesm/following{/other_user}", "gists_url": "https://api.github.com/users/wesm/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/wesm", "id": 329591, "login": "wesm", "node_id": "MDQ6VXNlcjMyOTU5MQ==", "organizations_url": "https://api.github.com/users/wesm/orgs", "received_events_url": "https://api.github.com/users/wesm/received_events", "repos_url": "https://api.github.com/users/wesm/repos", "site_admin": false, "starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/wesm/subscriptions", "type": "User", "url": "https://api.github.com/users/wesm" }, "description": "RC1 ANN went out on 2013-12-6: https://groups.google.com/forum/#!topic/pydata/OHutLByJvK0\r\nTwo weeks, clear all reported bugs then call it on 2013-12-20. \r\n(@y-p)\r\n\r\nsince we've had some bugs reported at a high enough rate, extending rc by one\r\nweek until 2013-12-27. \r\n(@y-p)\r\n\r\nBumping to clear debian sparc\r\n2013-12-30. \r\n(@y-p)", "due_on": "2013-12-30T08:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/18", "id": 213925, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18/labels", "node_id": "MDk6TWlsZXN0b25lMjEzOTI1", "number": 18, "open_issues": 0, "state": "closed", "title": "0.13", "updated_at": "2017-07-22T19:00:05Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18" }
2
2013-07-11T20:19:26Z
2014-06-16T22:16:17Z
2013-07-25T01:37:31Z
NONE
null
closes https://github.com/pydata/pandas/issues/4046 ``` λ sudo python ./setup.py develop ... Installed /home/user1/src/pandas Processing dependencies for pandas==v0.12.0rc1-48-g9442eac Searching for numpy==1.7.1 Best match: numpy 1.7.1 Adding numpy 1.7.1 to easy-install.pth file λ python -c 'import pandas; print pandas.version.version' v0.12.0rc1-48-g9442eac ```
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4218/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4218/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4218.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4218", "merged_at": "2013-07-25T01:37:31Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4218.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4218" }
https://api.github.com/repos/pandas-dev/pandas/issues/4219
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4219/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4219/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4219/events
https://github.com/pandas-dev/pandas/issues/4219
16,654,898
MDU6SXNzdWUxNjY1NDg5OA==
4,219
API: pandas.read_table should handle Inf the same way as inf
{ "avatar_url": "https://avatars.githubusercontent.com/u/1380168?v=4", "events_url": "https://api.github.com/users/aebrahim/events{/privacy}", "followers_url": "https://api.github.com/users/aebrahim/followers", "following_url": "https://api.github.com/users/aebrahim/following{/other_user}", "gists_url": "https://api.github.com/users/aebrahim/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/aebrahim", "id": 1380168, "login": "aebrahim", "node_id": "MDQ6VXNlcjEzODAxNjg=", "organizations_url": "https://api.github.com/users/aebrahim/orgs", "received_events_url": "https://api.github.com/users/aebrahim/received_events", "repos_url": "https://api.github.com/users/aebrahim/repos", "site_admin": false, "starred_url": "https://api.github.com/users/aebrahim/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/aebrahim/subscriptions", "type": "User", "url": "https://api.github.com/users/aebrahim" }
[ { "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": "read_csv, to_csv", "id": 47229171, "name": "IO CSV", "node_id": "MDU6TGFiZWw0NzIyOTE3MQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20CSV" } ]
closed
false
null
[]
{ "closed_at": "2013-12-30T19:53:14Z", "closed_issues": 1076, "created_at": "2012-11-15T23:33:37Z", "creator": { "avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4", "events_url": "https://api.github.com/users/wesm/events{/privacy}", "followers_url": "https://api.github.com/users/wesm/followers", "following_url": "https://api.github.com/users/wesm/following{/other_user}", "gists_url": "https://api.github.com/users/wesm/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/wesm", "id": 329591, "login": "wesm", "node_id": "MDQ6VXNlcjMyOTU5MQ==", "organizations_url": "https://api.github.com/users/wesm/orgs", "received_events_url": "https://api.github.com/users/wesm/received_events", "repos_url": "https://api.github.com/users/wesm/repos", "site_admin": false, "starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/wesm/subscriptions", "type": "User", "url": "https://api.github.com/users/wesm" }, "description": "RC1 ANN went out on 2013-12-6: https://groups.google.com/forum/#!topic/pydata/OHutLByJvK0\r\nTwo weeks, clear all reported bugs then call it on 2013-12-20. \r\n(@y-p)\r\n\r\nsince we've had some bugs reported at a high enough rate, extending rc by one\r\nweek until 2013-12-27. \r\n(@y-p)\r\n\r\nBumping to clear debian sparc\r\n2013-12-30. \r\n(@y-p)", "due_on": "2013-12-30T08:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/18", "id": 213925, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18/labels", "node_id": "MDk6TWlsZXN0b25lMjEzOTI1", "number": 18, "open_issues": 0, "state": "closed", "title": "0.13", "updated_at": "2017-07-22T19:00:05Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18" }
4
2013-07-11T21:27:15Z
2013-07-26T18:47:14Z
2013-07-26T12:03:37Z
NONE
null
entries with "Inf" (beginning with upper case I) will assign that column a dtype of object while "inf" is parsed as infinity. I believe that in R, the function write.table uses "Inf" (with the uppercase) which would make importing tables exported from R more difficult.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4219/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4219/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4220
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4220/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4220/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4220/events
https://github.com/pandas-dev/pandas/pull/4220
16,661,933
MDExOlB1bGxSZXF1ZXN0Njg4MTQyOQ==
4,220
ENH: Treat 'Inf' as infinity in text parser
{ "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": "https://api.github.com/users/jtratner/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/jtratner", "id": 1598379, "login": "jtratner", "node_id": "MDQ6VXNlcjE1OTgzNzk=", "organizations_url": "https://api.github.com/users/jtratner/orgs", "received_events_url": "https://api.github.com/users/jtratner/received_events", "repos_url": "https://api.github.com/users/jtratner/repos", "site_admin": false, "starred_url": "https://api.github.com/users/jtratner/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jtratner/subscriptions", "type": "User", "url": "https://api.github.com/users/jtratner" }
[]
closed
false
null
[]
{ "closed_at": "2013-12-30T19:53:14Z", "closed_issues": 1076, "created_at": "2012-11-15T23:33:37Z", "creator": { "avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4", "events_url": "https://api.github.com/users/wesm/events{/privacy}", "followers_url": "https://api.github.com/users/wesm/followers", "following_url": "https://api.github.com/users/wesm/following{/other_user}", "gists_url": "https://api.github.com/users/wesm/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/wesm", "id": 329591, "login": "wesm", "node_id": "MDQ6VXNlcjMyOTU5MQ==", "organizations_url": "https://api.github.com/users/wesm/orgs", "received_events_url": "https://api.github.com/users/wesm/received_events", "repos_url": "https://api.github.com/users/wesm/repos", "site_admin": false, "starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/wesm/subscriptions", "type": "User", "url": "https://api.github.com/users/wesm" }, "description": "RC1 ANN went out on 2013-12-6: https://groups.google.com/forum/#!topic/pydata/OHutLByJvK0\r\nTwo weeks, clear all reported bugs then call it on 2013-12-20. \r\n(@y-p)\r\n\r\nsince we've had some bugs reported at a high enough rate, extending rc by one\r\nweek until 2013-12-27. \r\n(@y-p)\r\n\r\nBumping to clear debian sparc\r\n2013-12-30. \r\n(@y-p)", "due_on": "2013-12-30T08:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/18", "id": 213925, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18/labels", "node_id": "MDk6TWlsZXN0b25lMjEzOTI1", "number": 18, "open_issues": 0, "state": "closed", "title": "0.13", "updated_at": "2017-07-22T19:00:05Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18" }
28
2013-07-12T00:54:27Z
2014-06-14T11:07:09Z
2013-07-26T12:03:37Z
CONTRIBUTOR
null
Makes 'inf' checks case insensitive using strcasecmp Fixes #4219.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4220/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4220/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4220.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4220", "merged_at": "2013-07-26T12:03:37Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4220.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4220" }
https://api.github.com/repos/pandas-dev/pandas/issues/4221
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4221/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4221/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4221/events
https://github.com/pandas-dev/pandas/pull/4221
16,679,313
MDExOlB1bGxSZXF1ZXN0Njg5MDM2OA==
4,221
BUG: Display the legend when calling plot with kind='density'. GH4216
{ "avatar_url": "https://avatars.githubusercontent.com/u/98194?v=4", "events_url": "https://api.github.com/users/garaud/events{/privacy}", "followers_url": "https://api.github.com/users/garaud/followers", "following_url": "https://api.github.com/users/garaud/following{/other_user}", "gists_url": "https://api.github.com/users/garaud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/garaud", "id": 98194, "login": "garaud", "node_id": "MDQ6VXNlcjk4MTk0", "organizations_url": "https://api.github.com/users/garaud/orgs", "received_events_url": "https://api.github.com/users/garaud/received_events", "repos_url": "https://api.github.com/users/garaud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/garaud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/garaud/subscriptions", "type": "User", "url": "https://api.github.com/users/garaud" }
[]
closed
false
null
[]
null
7
2013-07-12T12:32:13Z
2014-07-06T07:46:21Z
2013-07-13T22:59:56Z
CONTRIBUTOR
null
See issue https://github.com/pydata/pandas/issues/4216
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4221/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4221/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4221.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4221", "merged_at": "2013-07-13T22:59:56Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4221.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4221" }
https://api.github.com/repos/pandas-dev/pandas/issues/4222
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4222/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4222/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4222/events
https://github.com/pandas-dev/pandas/issues/4222
16,683,515
MDU6SXNzdWUxNjY4MzUxNQ==
4,222
sparc test_read_dta10: KeyError: 0 self.dtyplist = [self.DTYPE_MAP[typ] for typ in typlist]
{ "avatar_url": "https://avatars.githubusercontent.com/u/39889?v=4", "events_url": "https://api.github.com/users/yarikoptic/events{/privacy}", "followers_url": "https://api.github.com/users/yarikoptic/followers", "following_url": "https://api.github.com/users/yarikoptic/following{/other_user}", "gists_url": "https://api.github.com/users/yarikoptic/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/yarikoptic", "id": 39889, "login": "yarikoptic", "node_id": "MDQ6VXNlcjM5ODg5", "organizations_url": "https://api.github.com/users/yarikoptic/orgs", "received_events_url": "https://api.github.com/users/yarikoptic/received_events", "repos_url": "https://api.github.com/users/yarikoptic/repos", "site_admin": false, "starred_url": "https://api.github.com/users/yarikoptic/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/yarikoptic/subscriptions", "type": "User", "url": "https://api.github.com/users/yarikoptic" }
[]
closed
false
null
[]
null
2
2013-07-12T14:16:36Z
2013-07-13T01:27:34Z
2013-07-13T01:27:34Z
CONTRIBUTOR
null
``` ====================================================================== ERROR: test_read_dta10 (pandas.io.tests.test_stata.StataTests) ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/yoh/deb/gits/pkg-exppsy/pandas/debian/tmp/usr/lib/python2.7/dist-packages/pandas/io/tests/test_stata.py", line 205, in test_read_dta10 written_and_read_again = self.read_dta(path) File "/home/yoh/deb/gits/pkg-exppsy/pandas/debian/tmp/usr/lib/python2.7/dist-packages/pandas/io/tests/test_stata.py", line 41, in read_dta return read_stata(file, convert_dates=True) File "/home/yoh/deb/gits/pkg-exppsy/pandas/debian/tmp/usr/lib/python2.7/dist-packages/pandas/io/stata.py", line 38, in read_stata reader = StataReader(filepath_or_buffer, encoding) File "/home/yoh/deb/gits/pkg-exppsy/pandas/debian/tmp/usr/lib/python2.7/dist-packages/pandas/io/stata.py", line 305, in __init__ self._read_header() File "/home/yoh/deb/gits/pkg-exppsy/pandas/debian/tmp/usr/lib/python2.7/dist-packages/pandas/io/stata.py", line 331, in _read_header self.dtyplist = [self.DTYPE_MAP[typ] for typ in typlist] KeyError: 0 ``` on 0.12.0~rc1+git43-g7b2eaa4-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/4222/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4222/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4223
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4223/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4223/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4223/events
https://github.com/pandas-dev/pandas/issues/4223
16,683,556
MDU6SXNzdWUxNjY4MzU1Ng==
4,223
BLD: sparc test_decimalDecodeTest - {u'a': 4.56} + {u'a': 4.5600000000000005}
{ "avatar_url": "https://avatars.githubusercontent.com/u/39889?v=4", "events_url": "https://api.github.com/users/yarikoptic/events{/privacy}", "followers_url": "https://api.github.com/users/yarikoptic/followers", "following_url": "https://api.github.com/users/yarikoptic/following{/other_user}", "gists_url": "https://api.github.com/users/yarikoptic/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/yarikoptic", "id": 39889, "login": "yarikoptic", "node_id": "MDQ6VXNlcjM5ODg5", "organizations_url": "https://api.github.com/users/yarikoptic/orgs", "received_events_url": "https://api.github.com/users/yarikoptic/received_events", "repos_url": "https://api.github.com/users/yarikoptic/repos", "site_admin": false, "starred_url": "https://api.github.com/users/yarikoptic/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/yarikoptic/subscriptions", "type": "User", "url": "https://api.github.com/users/yarikoptic" }
[]
closed
false
null
[]
{ "closed_at": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
9
2013-07-12T14:17:33Z
2013-07-18T20:31:48Z
2013-07-18T20:31:48Z
CONTRIBUTOR
null
``` ====================================================================== FAIL: test_decimalDecodeTest (pandas.io.tests.test_json.test_ujson.UltraJSONTests) ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/yoh/deb/gits/pkg-exppsy/pandas/debian/tmp/usr/lib/python2.7/dist-packages/pandas/io/tests/test_json/test_ujson.py", line 102, in test_decimalDecodeTest self.assertEqual(sut, decoded) AssertionError: {u'a': 4.56} != {u'a': 4.5600000000000005} - {u'a': 4.56} + {u'a': 4.5600000000000005} ``` on 0.12.0~rc1+git43-g7b2eaa4-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/4223/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4223/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4224
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4224/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4224/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4224/events
https://github.com/pandas-dev/pandas/issues/4224
16,685,498
MDU6SXNzdWUxNjY4NTQ5OA==
4,224
fast cross correlation function/method
{ "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" }
[]
closed
false
null
[]
null
3
2013-07-12T14:56:03Z
2013-07-20T22:21:36Z
2013-07-20T22:21:36Z
MEMBER
null
this is bordering on not being the domain of pandas, but i think a library that is advertised at being good at time series should include this functionality the numpy version is dog slow something like ``` python s.xcorr(s2, lags=100, scaling='normalized') # first 100 lags, scaled to be -1 <= 0 <= 1 df.xcorr() # all non repeating pairs of series_i, series_j xcorrs df.xcorr(s2) # xcorr of all series in a frame with s2 ```
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4224/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4224/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4225
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4225/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4225/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4225/events
https://github.com/pandas-dev/pandas/issues/4225
16,698,210
MDU6SXNzdWUxNjY5ODIxMA==
4,225
BUG: infinite loop when column index includes periodindex and string
{ "avatar_url": "https://avatars.githubusercontent.com/u/4999066?v=4", "events_url": "https://api.github.com/users/johnpapp/events{/privacy}", "followers_url": "https://api.github.com/users/johnpapp/followers", "following_url": "https://api.github.com/users/johnpapp/following{/other_user}", "gists_url": "https://api.github.com/users/johnpapp/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/johnpapp", "id": 4999066, "login": "johnpapp", "node_id": "MDQ6VXNlcjQ5OTkwNjY=", "organizations_url": "https://api.github.com/users/johnpapp/orgs", "received_events_url": "https://api.github.com/users/johnpapp/received_events", "repos_url": "https://api.github.com/users/johnpapp/repos", "site_admin": false, "starred_url": "https://api.github.com/users/johnpapp/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/johnpapp/subscriptions", "type": "User", "url": "https://api.github.com/users/johnpapp" }
[ { "color": "009800", "default": false, "description": "Duplicate issue or pull request", "id": 40153326, "name": "Duplicate Report", "node_id": "MDU6TGFiZWw0MDE1MzMyNg==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Duplicate%20Report" } ]
closed
false
null
[]
null
1
2013-07-12T19:27:22Z
2013-07-13T00:33:18Z
2013-07-13T00:33:18Z
NONE
null
the following code creates an infinite loop in python: import pandas as pd cols = [pd.Period('1998', 'A-DEC'), pd.Period('1999', 'A-DEC'), 'test'] df = pd.DataFrame(np.random.randn(10, 3), columns=cols) df[[pd.Period('1998'), pd.Period('1999')]] It appears to be because Index.get_indexer changes the index from an int type to an object and recalls get_indexer which then changes it back to an object.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4225/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4225/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4226
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4226/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4226/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4226/events
https://github.com/pandas-dev/pandas/issues/4226
16,703,052
MDU6SXNzdWUxNjcwMzA1Mg==
4,226
API: DateTimeIndex slicing removes name label
{ "avatar_url": "https://avatars.githubusercontent.com/u/751169?v=4", "events_url": "https://api.github.com/users/diezguerra/events{/privacy}", "followers_url": "https://api.github.com/users/diezguerra/followers", "following_url": "https://api.github.com/users/diezguerra/following{/other_user}", "gists_url": "https://api.github.com/users/diezguerra/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/diezguerra", "id": 751169, "login": "diezguerra", "node_id": "MDQ6VXNlcjc1MTE2OQ==", "organizations_url": "https://api.github.com/users/diezguerra/orgs", "received_events_url": "https://api.github.com/users/diezguerra/received_events", "repos_url": "https://api.github.com/users/diezguerra/repos", "site_admin": false, "starred_url": "https://api.github.com/users/diezguerra/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/diezguerra/subscriptions", "type": "User", "url": "https://api.github.com/users/diezguerra" }
[ { "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": "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" } ]
closed
false
null
[]
{ "closed_at": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
8
2013-07-12T21:23:55Z
2013-08-10T01:48:29Z
2013-07-14T13:32:53Z
NONE
null
Shouldn't it carry all possible properties instead? Steps to reproduce: ``` python import pandas as pd st = pd.Timestamp('2013-07-01 00:00:00', tz='America/Los_Angeles') et = pd.Timestamp('2013-07-02 00:00:00', tz='America/Los_Angeles') dr = pd.date_range(st, et, freq='H', name='timebucket') assert dr.name == 'timebucket' dr = dr[1:] assert dr.name == None ```
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4226/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4226/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4227
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4227/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4227/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4227/events
https://github.com/pandas-dev/pandas/issues/4227
16,707,017
MDU6SXNzdWUxNjcwNzAxNw==
4,227
basic sqlite insertion with integer frames does not work
{ "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" }
[ { "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
[]
null
11
2013-07-12T23:33:43Z
2013-07-13T00:27:45Z
2013-07-13T00:26:57Z
MEMBER
null
i'm an sql noob, but this seems like it should work without a hitch ``` In [11]: import sqlite3 as sql In [12]: dfi = DataFrame(randint(10, size=(10, 3))) In [13]: conn = sql.connect(':memory:') In [14]: dfi.to_sql('blah', conn) --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) <ipython-input-14-25b1bf847714> in <module>() ----> 1 dfi.to_sql('blah', conn) /home/phillip/Documents/code/py/pandas/pandas/core/frame.pyc in to_sql(self, name, con, flavor, if_exists, **kwargs) 1519 """ 1520 from pandas.io.sql import write_frame -> 1521 write_frame(self, name, con, flavor=flavor, if_exists=if_exists, **kwargs) 1522 1523 @Appender(fmt.docstring_to_string, indents=1) /home/phillip/Documents/code/py/pandas/pandas/io/sql.pyc in write_frame(frame, name, con, flavor, if_exists, **kwargs) 206 create = "DROP TABLE %s" % name 207 elif not exists: --> 208 create = get_schema(frame, name, flavor) 209 210 if create is not None: /home/phillip/Documents/code/py/pandas/pandas/io/sql.pyc in get_schema(frame, name, flavor, keys) 289 lookup_type = lambda dtype: get_sqltype(dtype.type, flavor) 290 # Replace spaces in DataFrame column names with _. --> 291 safe_columns = [s.replace(' ', '_').strip() for s in frame.dtypes.index] 292 column_types = zip(safe_columns, map(lookup_type, frame.dtypes)) 293 if flavor == 'sqlite': AttributeError: 'numpy.int64' object has no attribute 'replace' ``` i'm guessing this is because `sqlite3` doesn't see `int64` objects as `int`s.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4227/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4227/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4228
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4228/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4228/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4228/events
https://github.com/pandas-dev/pandas/pull/4228
16,708,521
MDExOlB1bGxSZXF1ZXN0NjkwNjcyMg==
4,228
TST: little endian failure, GH4222
{ "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://api.github.com/users/jreback/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/jreback", "id": 953992, "login": "jreback", "node_id": "MDQ6VXNlcjk1Mzk5Mg==", "organizations_url": "https://api.github.com/users/jreback/orgs", "received_events_url": "https://api.github.com/users/jreback/received_events", "repos_url": "https://api.github.com/users/jreback/repos", "site_admin": false, "starred_url": "https://api.github.com/users/jreback/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jreback/subscriptions", "type": "User", "url": "https://api.github.com/users/jreback" }
[]
closed
false
null
[]
{ "closed_at": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
0
2013-07-13T00:44:41Z
2014-07-16T08:19:04Z
2013-07-13T01:27:34Z
CONTRIBUTOR
null
closes #4222
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4228/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4228/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4228.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4228", "merged_at": "2013-07-13T01:27:34Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4228.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4228" }
https://api.github.com/repos/pandas-dev/pandas/issues/4229
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4229/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4229/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4229/events
https://github.com/pandas-dev/pandas/issues/4229
16,715,680
MDU6SXNzdWUxNjcxNTY4MA==
4,229
Inconsistent behavior initializing DatetimeIndex to tz with list/array of string times
{ "avatar_url": "https://avatars.githubusercontent.com/u/3195015?v=4", "events_url": "https://api.github.com/users/rockg/events{/privacy}", "followers_url": "https://api.github.com/users/rockg/followers", "following_url": "https://api.github.com/users/rockg/following{/other_user}", "gists_url": "https://api.github.com/users/rockg/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/rockg", "id": 3195015, "login": "rockg", "node_id": "MDQ6VXNlcjMxOTUwMTU=", "organizations_url": "https://api.github.com/users/rockg/orgs", "received_events_url": "https://api.github.com/users/rockg/received_events", "repos_url": "https://api.github.com/users/rockg/repos", "site_admin": false, "starred_url": "https://api.github.com/users/rockg/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/rockg/subscriptions", "type": "User", "url": "https://api.github.com/users/rockg" }
[]
closed
false
null
[]
{ "closed_at": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
1
2013-07-13T14:34:58Z
2013-07-14T19:21:18Z
2013-07-14T19:21:09Z
CONTRIBUTOR
null
Initializing a DatetimeIndex with a list of strings behaves differently than initializing with a numpy array of strings. To me these should behave the same and I personally like the list behavior better. My understanding of the tz argument to DatetimeIndex is that it is localizing rather than converting in which case the numpy array case is inconsistent. I don't think there should be an assumption made about the tz of the strings before indicating it by localizing. ``` python >>> idx = ['11/10/2005 08:00:00','11/10/2005 09:00:00'] >>> DatetimeIndex(idx, tz='US/Eastern') <class 'pandas.tseries.index.DatetimeIndex'> [2005-11-10 08:00:00, 2005-11-10 09:00:00] Length: 2, Freq: None, Timezone: US/Eastern >>> import numpy as np >>> idxnp = np.array(idx) >>> DatetimeIndex(idxnp, tz='US/Eastern') <class 'pandas.tseries.index.DatetimeIndex'> [2005-11-10 03:00:00, 2005-11-10 04:00:00] Length: 2, Freq: None, Timezone: US/Eastern ```
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4229/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4229/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4230
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4230/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4230/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4230/events
https://github.com/pandas-dev/pandas/issues/4230
16,715,763
MDU6SXNzdWUxNjcxNTc2Mw==
4,230
ENH: Create ability to localize tz with data already in that tz (fall transition)
{ "avatar_url": "https://avatars.githubusercontent.com/u/3195015?v=4", "events_url": "https://api.github.com/users/rockg/events{/privacy}", "followers_url": "https://api.github.com/users/rockg/followers", "following_url": "https://api.github.com/users/rockg/following{/other_user}", "gists_url": "https://api.github.com/users/rockg/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/rockg", "id": 3195015, "login": "rockg", "node_id": "MDQ6VXNlcjMxOTUwMTU=", "organizations_url": "https://api.github.com/users/rockg/orgs", "received_events_url": "https://api.github.com/users/rockg/received_events", "repos_url": "https://api.github.com/users/rockg/repos", "site_admin": false, "starred_url": "https://api.github.com/users/rockg/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/rockg/subscriptions", "type": "User", "url": "https://api.github.com/users/rockg" }
[ { "color": "AFEEEE", "default": false, "description": null, "id": 211840, "name": "Timeseries", "node_id": "MDU6TGFiZWwyMTE4NDA=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Timeseries" } ]
closed
false
null
[]
{ "closed_at": "2013-12-30T19:53:14Z", "closed_issues": 1076, "created_at": "2012-11-15T23:33:37Z", "creator": { "avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4", "events_url": "https://api.github.com/users/wesm/events{/privacy}", "followers_url": "https://api.github.com/users/wesm/followers", "following_url": "https://api.github.com/users/wesm/following{/other_user}", "gists_url": "https://api.github.com/users/wesm/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/wesm", "id": 329591, "login": "wesm", "node_id": "MDQ6VXNlcjMyOTU5MQ==", "organizations_url": "https://api.github.com/users/wesm/orgs", "received_events_url": "https://api.github.com/users/wesm/received_events", "repos_url": "https://api.github.com/users/wesm/repos", "site_admin": false, "starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/wesm/subscriptions", "type": "User", "url": "https://api.github.com/users/wesm" }, "description": "RC1 ANN went out on 2013-12-6: https://groups.google.com/forum/#!topic/pydata/OHutLByJvK0\r\nTwo weeks, clear all reported bugs then call it on 2013-12-20. \r\n(@y-p)\r\n\r\nsince we've had some bugs reported at a high enough rate, extending rc by one\r\nweek until 2013-12-27. \r\n(@y-p)\r\n\r\nBumping to clear debian sparc\r\n2013-12-30. \r\n(@y-p)", "due_on": "2013-12-30T08:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/18", "id": 213925, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18/labels", "node_id": "MDk6TWlsZXN0b25lMjEzOTI1", "number": 18, "open_issues": 0, "state": "closed", "title": "0.13", "updated_at": "2017-07-22T19:00:05Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18" }
3
2013-07-13T14:42:43Z
2013-10-02T21:01:13Z
2013-10-02T21:01:13Z
CONTRIBUTOR
null
Many times data is already presented assuming a local timezone (e.g., with two hour 1s in the fall dst). Currently there is no way to localize this data as it raises an ambiguous time error. Please see the link for an example. http://stackoverflow.com/questions/17370826/create-pandas-timezone-aware-datetimeindex-on-already-local-timezone I think many times the simple assumption about the second hour being non-dst is a sound one and should be available. Perhaps there is already a way to do this, but I have yet to find it.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4230/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4230/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4231
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4231/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4231/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4231/events
https://github.com/pandas-dev/pandas/pull/4231
16,716,589
MDExOlB1bGxSZXF1ZXN0NjkwOTg1NQ==
4,231
BUG: raise on invalid colormap for older mpl
{ "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" }
[]
closed
false
{ "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" }
[ { "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" } ]
{ "closed_at": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
3
2013-07-13T15:58:46Z
2014-07-16T08:19:08Z
2013-07-13T18:19:43Z
MEMBER
null
closes #4215
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4231/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4231/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4231.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4231", "merged_at": "2013-07-13T18:19:43Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4231.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4231" }
https://api.github.com/repos/pandas-dev/pandas/issues/4232
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4232/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4232/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4232/events
https://github.com/pandas-dev/pandas/pull/4232
16,717,201
MDExOlB1bGxSZXF1ZXN0NjkxMDA3NA==
4,232
CLN/TST: clean up and raise on bs4 version and no tables
{ "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" }
[]
closed
false
{ "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" }
[ { "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" } ]
{ "closed_at": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
6
2013-07-13T16:54:53Z
2014-06-30T17:58:37Z
2013-07-13T22:00:55Z
MEMBER
null
closes #4214
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4232/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4232/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4232.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4232", "merged_at": "2013-07-13T22:00:55Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4232.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4232" }
https://api.github.com/repos/pandas-dev/pandas/issues/4233
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4233/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4233/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4233/events
https://github.com/pandas-dev/pandas/pull/4233
16,717,923
MDExOlB1bGxSZXF1ZXN0NjkxMDM0NA==
4,233
BUG: Index removes name when sliced
{ "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" }
[]
closed
false
{ "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" }
[ { "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" } ]
{ "closed_at": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
14
2013-07-13T18:05:44Z
2014-06-30T17:57:37Z
2013-07-14T13:32:53Z
MEMBER
null
closes #4226
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4233/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4233/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4233.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4233", "merged_at": "2013-07-14T13:32:53Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4233.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4233" }
https://api.github.com/repos/pandas-dev/pandas/issues/4234
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4234/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4234/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4234/events
https://github.com/pandas-dev/pandas/pull/4234
16,718,149
MDExOlB1bGxSZXF1ZXN0NjkxMDQyNg==
4,234
BUG: initialize DatetimeIndex with array of strings (#4229)
{ "avatar_url": "https://avatars.githubusercontent.com/u/1020496?v=4", "events_url": "https://api.github.com/users/jorisvandenbossche/events{/privacy}", "followers_url": "https://api.github.com/users/jorisvandenbossche/followers", "following_url": "https://api.github.com/users/jorisvandenbossche/following{/other_user}", "gists_url": "https://api.github.com/users/jorisvandenbossche/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/jorisvandenbossche", "id": 1020496, "login": "jorisvandenbossche", "node_id": "MDQ6VXNlcjEwMjA0OTY=", "organizations_url": "https://api.github.com/users/jorisvandenbossche/orgs", "received_events_url": "https://api.github.com/users/jorisvandenbossche/received_events", "repos_url": "https://api.github.com/users/jorisvandenbossche/repos", "site_admin": false, "starred_url": "https://api.github.com/users/jorisvandenbossche/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jorisvandenbossche/subscriptions", "type": "User", "url": "https://api.github.com/users/jorisvandenbossche" }
[]
closed
false
null
[]
{ "closed_at": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
8
2013-07-13T18:27:35Z
2014-06-18T22:09:26Z
2013-07-14T19:20:15Z
MEMBER
null
Possibly a fix for #4229. The rationale is that an array of strings should be handled in the same way as a list of strings (after applying `np.asarray(list)`), and I supposed that the list was handling the timezone correctly. ## More in detail: - handling of the list of strings: https://github.com/pydata/pandas/blob/master/pandas/tseries/index.py#L196 => returning `data` - handling of an array of strings: https://github.com/pydata/pandas/blob/master/pandas/tseries/index.py#L211 => returning directly `subarr` Because in the case of an array `subarr` is set as a DatetimeIndex (instead of as `.values` attribute of it => array of datetime64), the array is not localized to UTC (https://github.com/pydata/pandas/blob/master/pandas/tseries/index.py#L249) but assumed to be UTC. So, in fact, the `tz` keyword is ignored. ## Something else: it is not completely clear what the `tz` keyword is supposed to do (it is not documented in the DatetimeIndex docstring). But I assumed it is to say that the given values to DatetimeIndex are in that timezone (and so the behaviour with a list is correct). However, it is also a little bit strange that eg `to_datetime` has not such of a keyword then. ## PS: the PR is not ready (I want to add some tests, release notes, and there is too much whitespace in the commit), but I just wanted to submit it already to see if this makes sense.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4234/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4234/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4234.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4234", "merged_at": "2013-07-14T19:20:15Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4234.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4234" }
https://api.github.com/repos/pandas-dev/pandas/issues/4235
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4235/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4235/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4235/events
https://github.com/pandas-dev/pandas/issues/4235
16,721,697
MDU6SXNzdWUxNjcyMTY5Nw==
4,235
BUG: Boolean indexing on an empty series loses index names
{ "avatar_url": "https://avatars.githubusercontent.com/u/2701643?v=4", "events_url": "https://api.github.com/users/miketkelly/events{/privacy}", "followers_url": "https://api.github.com/users/miketkelly/followers", "following_url": "https://api.github.com/users/miketkelly/following{/other_user}", "gists_url": "https://api.github.com/users/miketkelly/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/miketkelly", "id": 2701643, "login": "miketkelly", "node_id": "MDQ6VXNlcjI3MDE2NDM=", "organizations_url": "https://api.github.com/users/miketkelly/orgs", "received_events_url": "https://api.github.com/users/miketkelly/received_events", "repos_url": "https://api.github.com/users/miketkelly/repos", "site_admin": false, "starred_url": "https://api.github.com/users/miketkelly/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/miketkelly/subscriptions", "type": "User", "url": "https://api.github.com/users/miketkelly" }
[ { "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 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
[]
{ "closed_at": "2013-12-30T19:53:14Z", "closed_issues": 1076, "created_at": "2012-11-15T23:33:37Z", "creator": { "avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4", "events_url": "https://api.github.com/users/wesm/events{/privacy}", "followers_url": "https://api.github.com/users/wesm/followers", "following_url": "https://api.github.com/users/wesm/following{/other_user}", "gists_url": "https://api.github.com/users/wesm/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/wesm", "id": 329591, "login": "wesm", "node_id": "MDQ6VXNlcjMyOTU5MQ==", "organizations_url": "https://api.github.com/users/wesm/orgs", "received_events_url": "https://api.github.com/users/wesm/received_events", "repos_url": "https://api.github.com/users/wesm/repos", "site_admin": false, "starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/wesm/subscriptions", "type": "User", "url": "https://api.github.com/users/wesm" }, "description": "RC1 ANN went out on 2013-12-6: https://groups.google.com/forum/#!topic/pydata/OHutLByJvK0\r\nTwo weeks, clear all reported bugs then call it on 2013-12-20. \r\n(@y-p)\r\n\r\nsince we've had some bugs reported at a high enough rate, extending rc by one\r\nweek until 2013-12-27. \r\n(@y-p)\r\n\r\nBumping to clear debian sparc\r\n2013-12-30. \r\n(@y-p)", "due_on": "2013-12-30T08:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/18", "id": 213925, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18/labels", "node_id": "MDk6TWlsZXN0b25lMjEzOTI1", "number": 18, "open_issues": 0, "state": "closed", "title": "0.13", "updated_at": "2017-07-22T19:00:05Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18" }
1
2013-07-14T00:08:49Z
2013-08-23T13:03:32Z
2013-08-23T13:03:32Z
CONTRIBUTOR
null
``` import pandas as pd df = pd.DataFrame({'a': [], 'b': [], 'c': []}) df = df.set_index(['a', 'b']) print df.c.index.names print df.c[df.c.isnull()].index.names ``` Output: ``` ['a', 'b'] [None] ``` The problem is that the empty boolean mask isn't recognized as a boolean array by infer_dtype in inference.pyx. I have a fix here: 87b9f21d0f298e35c5ec965b48b53ff17d40ab7e. If you agree with the approach I'll submit the PR.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4235/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4235/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4236
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4236/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4236/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4236/events
https://github.com/pandas-dev/pandas/pull/4236
16,721,877
MDExOlB1bGxSZXF1ZXN0NjkxMTcxNA==
4,236
BUG: Boolean indexing on an empty series loses index names
{ "avatar_url": "https://avatars.githubusercontent.com/u/2701643?v=4", "events_url": "https://api.github.com/users/miketkelly/events{/privacy}", "followers_url": "https://api.github.com/users/miketkelly/followers", "following_url": "https://api.github.com/users/miketkelly/following{/other_user}", "gists_url": "https://api.github.com/users/miketkelly/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/miketkelly", "id": 2701643, "login": "miketkelly", "node_id": "MDQ6VXNlcjI3MDE2NDM=", "organizations_url": "https://api.github.com/users/miketkelly/orgs", "received_events_url": "https://api.github.com/users/miketkelly/received_events", "repos_url": "https://api.github.com/users/miketkelly/repos", "site_admin": false, "starred_url": "https://api.github.com/users/miketkelly/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/miketkelly/subscriptions", "type": "User", "url": "https://api.github.com/users/miketkelly" }
[]
closed
false
null
[]
{ "closed_at": "2013-12-30T19:53:14Z", "closed_issues": 1076, "created_at": "2012-11-15T23:33:37Z", "creator": { "avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4", "events_url": "https://api.github.com/users/wesm/events{/privacy}", "followers_url": "https://api.github.com/users/wesm/followers", "following_url": "https://api.github.com/users/wesm/following{/other_user}", "gists_url": "https://api.github.com/users/wesm/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/wesm", "id": 329591, "login": "wesm", "node_id": "MDQ6VXNlcjMyOTU5MQ==", "organizations_url": "https://api.github.com/users/wesm/orgs", "received_events_url": "https://api.github.com/users/wesm/received_events", "repos_url": "https://api.github.com/users/wesm/repos", "site_admin": false, "starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/wesm/subscriptions", "type": "User", "url": "https://api.github.com/users/wesm" }, "description": "RC1 ANN went out on 2013-12-6: https://groups.google.com/forum/#!topic/pydata/OHutLByJvK0\r\nTwo weeks, clear all reported bugs then call it on 2013-12-20. \r\n(@y-p)\r\n\r\nsince we've had some bugs reported at a high enough rate, extending rc by one\r\nweek until 2013-12-27. \r\n(@y-p)\r\n\r\nBumping to clear debian sparc\r\n2013-12-30. \r\n(@y-p)", "due_on": "2013-12-30T08:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/18", "id": 213925, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18/labels", "node_id": "MDk6TWlsZXN0b25lMjEzOTI1", "number": 18, "open_issues": 0, "state": "closed", "title": "0.13", "updated_at": "2017-07-22T19:00:05Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18" }
12
2013-07-14T00:18:58Z
2014-06-14T18:14:51Z
2013-08-23T13:03:40Z
CONTRIBUTOR
null
#4235
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4236/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4236/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4236.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4236", "merged_at": null, "patch_url": "https://github.com/pandas-dev/pandas/pull/4236.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4236" }
https://api.github.com/repos/pandas-dev/pandas/issues/4237
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4237/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4237/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4237/events
https://github.com/pandas-dev/pandas/pull/4237
16,728,413
MDExOlB1bGxSZXF1ZXN0NjkxMzkyNQ==
4,237
ENH: DataFrame isin
{ "avatar_url": "https://avatars.githubusercontent.com/u/1312546?v=4", "events_url": "https://api.github.com/users/TomAugspurger/events{/privacy}", "followers_url": "https://api.github.com/users/TomAugspurger/followers", "following_url": "https://api.github.com/users/TomAugspurger/following{/other_user}", "gists_url": "https://api.github.com/users/TomAugspurger/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/TomAugspurger", "id": 1312546, "login": "TomAugspurger", "node_id": "MDQ6VXNlcjEzMTI1NDY=", "organizations_url": "https://api.github.com/users/TomAugspurger/orgs", "received_events_url": "https://api.github.com/users/TomAugspurger/received_events", "repos_url": "https://api.github.com/users/TomAugspurger/repos", "site_admin": false, "starred_url": "https://api.github.com/users/TomAugspurger/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/TomAugspurger/subscriptions", "type": "User", "url": "https://api.github.com/users/TomAugspurger" }
[]
closed
false
null
[]
{ "closed_at": "2013-12-30T19:53:14Z", "closed_issues": 1076, "created_at": "2012-11-15T23:33:37Z", "creator": { "avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4", "events_url": "https://api.github.com/users/wesm/events{/privacy}", "followers_url": "https://api.github.com/users/wesm/followers", "following_url": "https://api.github.com/users/wesm/following{/other_user}", "gists_url": "https://api.github.com/users/wesm/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/wesm", "id": 329591, "login": "wesm", "node_id": "MDQ6VXNlcjMyOTU5MQ==", "organizations_url": "https://api.github.com/users/wesm/orgs", "received_events_url": "https://api.github.com/users/wesm/received_events", "repos_url": "https://api.github.com/users/wesm/repos", "site_admin": false, "starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/wesm/subscriptions", "type": "User", "url": "https://api.github.com/users/wesm" }, "description": "RC1 ANN went out on 2013-12-6: https://groups.google.com/forum/#!topic/pydata/OHutLByJvK0\r\nTwo weeks, clear all reported bugs then call it on 2013-12-20. \r\n(@y-p)\r\n\r\nsince we've had some bugs reported at a high enough rate, extending rc by one\r\nweek until 2013-12-27. \r\n(@y-p)\r\n\r\nBumping to clear debian sparc\r\n2013-12-30. \r\n(@y-p)", "due_on": "2013-12-30T08:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/18", "id": 213925, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18/labels", "node_id": "MDk6TWlsZXN0b25lMjEzOTI1", "number": 18, "open_issues": 0, "state": "closed", "title": "0.13", "updated_at": "2017-07-22T19:00:05Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18" }
19
2013-07-14T14:21:47Z
2014-06-23T00:41:35Z
2013-07-24T21:45:47Z
CONTRIBUTOR
null
WIP for now. See #4211 for more info. A few things to check before this is ready to merge: This is basically a convenience method. I use the `Series` method for each column passed, and aggregate the methods sensibly. A few questions before merge though: - Do we have a preference for `any`/`all` vs. `and`/`or`? Seems like `any/all` would be more consistent with other methods like `df.dropna(how='all')` - I'm not thrilled about all the nested if statements. The problem is accepting both dicts and just flat arrays as values. The idea is to use dicts like `{colname: array_of_possible_values}` if the set of possible values to match against differs by columns (most likely case I think). I need the extra nested if statement here: ``` python if how == 'and': if isinstance(values, dict): cond_n = len(values) else: cond_n = len(self.columns) # Flat matching. elif how == 'or': cond_n = 1 ``` since the two ways of calling will be a bit different. If you're passing a dict it will probably just be df.isin(values=dict). If you don't care which column matches what, the call will be df[subset_of_columns].isin(values). It's messy, but it works. - I check for empty values, and raise an error instead of just returning all `False`s. Passing an empty list as values, it would actually would work. `Series.isin([])` will return all Falses. But it would fail on an empty dict, so I just check for it ahead of time and raise an error. - Also, I may have messed up the history. I thought I rebased and squashed everything into one commit, but apparently not. I had some merge conflicts that I had to fix (just picking HEAD over the old stuff everywhere). I'll take a closer look at this. Also I may have done `git pull` instead of `git pull --rebase` at some point. Will that mess up the history? Happy to move this to .13 also.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4237/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4237/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4237.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4237", "merged_at": "2013-07-24T21:45:47Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4237.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4237" }
https://api.github.com/repos/pandas-dev/pandas/issues/4238
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4238/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4238/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4238/events
https://github.com/pandas-dev/pandas/pull/4238
16,735,529
MDExOlB1bGxSZXF1ZXN0NjkxNjIxNQ==
4,238
TST: remove fudgy ujson test #4223
{ "avatar_url": "https://avatars.githubusercontent.com/u/107748?v=4", "events_url": "https://api.github.com/users/Komnomnomnom/events{/privacy}", "followers_url": "https://api.github.com/users/Komnomnomnom/followers", "following_url": "https://api.github.com/users/Komnomnomnom/following{/other_user}", "gists_url": "https://api.github.com/users/Komnomnomnom/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/Komnomnomnom", "id": 107748, "login": "Komnomnomnom", "node_id": "MDQ6VXNlcjEwNzc0OA==", "organizations_url": "https://api.github.com/users/Komnomnomnom/orgs", "received_events_url": "https://api.github.com/users/Komnomnomnom/received_events", "repos_url": "https://api.github.com/users/Komnomnomnom/repos", "site_admin": false, "starred_url": "https://api.github.com/users/Komnomnomnom/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Komnomnomnom/subscriptions", "type": "User", "url": "https://api.github.com/users/Komnomnomnom" }
[]
closed
false
null
[]
{ "closed_at": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
3
2013-07-14T23:54:55Z
2014-06-16T17:36:41Z
2013-07-15T01:07:52Z
CONTRIBUTOR
null
Removed ambiguous ujson test, see #4223, #4186.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4238/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4238/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4238.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4238", "merged_at": "2013-07-15T01:07:52Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4238.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4238" }
https://api.github.com/repos/pandas-dev/pandas/issues/4239
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4239/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4239/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4239/events
https://github.com/pandas-dev/pandas/issues/4239
16,736,538
MDU6SXNzdWUxNjczNjUzOA==
4,239
BLD: all builds failing to build pandas on travis - something change?
{ "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://api.github.com/users/jreback/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/jreback", "id": 953992, "login": "jreback", "node_id": "MDQ6VXNlcjk1Mzk5Mg==", "organizations_url": "https://api.github.com/users/jreback/orgs", "received_events_url": "https://api.github.com/users/jreback/received_events", "repos_url": "https://api.github.com/users/jreback/repos", "site_admin": false, "starred_url": "https://api.github.com/users/jreback/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jreback/subscriptions", "type": "User", "url": "https://api.github.com/users/jreback" }
[ { "color": "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": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
7
2013-07-15T01:25:51Z
2013-07-15T13:04:08Z
2013-07-15T04:02:51Z
CONTRIBUTOR
null
https://travis-ci.org/pydata/pandas/builds/9080112
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4239/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4239/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4240
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4240/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4240/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4240/events
https://github.com/pandas-dev/pandas/pull/4240
16,738,667
MDExOlB1bGxSZXF1ZXN0NjkxNzM1OQ==
4,240
BLD: use wheels and newer scipy bc of py33 scipy issue
{ "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" }
[]
closed
false
{ "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" }
[ { "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" } ]
{ "closed_at": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
1
2013-07-15T03:51:42Z
2014-07-03T21:40:16Z
2013-07-15T04:02:51Z
MEMBER
null
closes #4239 #4194 using scipy 0.10 for 2.7 builds and 0.12 for 3.2 and 3.3 builds
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4240/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4240/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4240.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4240", "merged_at": "2013-07-15T04:02:51Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4240.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4240" }
https://api.github.com/repos/pandas-dev/pandas/issues/4241
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4241/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4241/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4241/events
https://github.com/pandas-dev/pandas/pull/4241
16,752,620
MDExOlB1bGxSZXF1ZXN0NjkyNDE4Mw==
4,241
CLN: replace __repr__ with __unicode__ for string printing (to use StringMixIn)
{ "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://api.github.com/users/jreback/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/jreback", "id": 953992, "login": "jreback", "node_id": "MDQ6VXNlcjk1Mzk5Mg==", "organizations_url": "https://api.github.com/users/jreback/orgs", "received_events_url": "https://api.github.com/users/jreback/received_events", "repos_url": "https://api.github.com/users/jreback/repos", "site_admin": false, "starred_url": "https://api.github.com/users/jreback/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jreback/subscriptions", "type": "User", "url": "https://api.github.com/users/jreback" }
[]
closed
false
null
[]
null
0
2013-07-15T12:59:23Z
2014-07-16T08:19:19Z
2013-07-15T13:14:13Z
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/4241/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4241/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4241.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4241", "merged_at": "2013-07-15T13:14:13Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4241.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4241" }
https://api.github.com/repos/pandas-dev/pandas/issues/4242
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4242/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4242/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4242/events
https://github.com/pandas-dev/pandas/issues/4242
16,754,146
MDU6SXNzdWUxNjc1NDE0Ng==
4,242
wonky test: TestGoogle:test_get_multi1
{ "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://api.github.com/users/jreback/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/jreback", "id": 953992, "login": "jreback", "node_id": "MDQ6VXNlcjk1Mzk5Mg==", "organizations_url": "https://api.github.com/users/jreback/orgs", "received_events_url": "https://api.github.com/users/jreback/received_events", "repos_url": "https://api.github.com/users/jreback/repos", "site_admin": false, "starred_url": "https://api.github.com/users/jreback/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jreback/subscriptions", "type": "User", "url": "https://api.github.com/users/jreback" }
[ { "color": "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": "06909A", "default": false, "description": "IO issues that don't fit into a more specific label", "id": 2301354, "name": "IO Data", "node_id": "MDU6TGFiZWwyMzAxMzU0", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20Data" }, { "color": "e4a5f1", "default": false, "description": "Local or Cloud (AWS, GCS, etc.) IO Issues", "id": 49381477, "name": "IO Network", "node_id": "MDU6TGFiZWw0OTM4MTQ3Nw==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20Network" }, { "color": "5319e7", "default": false, "description": "Unit tests that occasionally fail", "id": 76939933, "name": "Unreliable Test", "node_id": "MDU6TGFiZWw3NjkzOTkzMw==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Unreliable%20Test" } ]
closed
false
null
[]
{ "closed_at": "2013-12-30T19:53:14Z", "closed_issues": 1076, "created_at": "2012-11-15T23:33:37Z", "creator": { "avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4", "events_url": "https://api.github.com/users/wesm/events{/privacy}", "followers_url": "https://api.github.com/users/wesm/followers", "following_url": "https://api.github.com/users/wesm/following{/other_user}", "gists_url": "https://api.github.com/users/wesm/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/wesm", "id": 329591, "login": "wesm", "node_id": "MDQ6VXNlcjMyOTU5MQ==", "organizations_url": "https://api.github.com/users/wesm/orgs", "received_events_url": "https://api.github.com/users/wesm/received_events", "repos_url": "https://api.github.com/users/wesm/repos", "site_admin": false, "starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/wesm/subscriptions", "type": "User", "url": "https://api.github.com/users/wesm" }, "description": "RC1 ANN went out on 2013-12-6: https://groups.google.com/forum/#!topic/pydata/OHutLByJvK0\r\nTwo weeks, clear all reported bugs then call it on 2013-12-20. \r\n(@y-p)\r\n\r\nsince we've had some bugs reported at a high enough rate, extending rc by one\r\nweek until 2013-12-27. \r\n(@y-p)\r\n\r\nBumping to clear debian sparc\r\n2013-12-30. \r\n(@y-p)", "due_on": "2013-12-30T08:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/18", "id": 213925, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18/labels", "node_id": "MDk6TWlsZXN0b25lMjEzOTI1", "number": 18, "open_issues": 0, "state": "closed", "title": "0.13", "updated_at": "2017-07-22T19:00:05Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18" }
14
2013-07-15T13:37:10Z
2014-01-25T15:48:31Z
2013-10-09T18:48:52Z
CONTRIBUTOR
null
https://travis-ci.org/pydata/pandas/jobs/9095624 cc @cpcloud @jtratner
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4242/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4242/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4243
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4243/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4243/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4243/events
https://github.com/pandas-dev/pandas/pull/4243
16,770,485
MDExOlB1bGxSZXF1ZXN0NjkzMzE0Mw==
4,243
DOC: Fix typos in CONTRIBUTING.md
{ "avatar_url": "https://avatars.githubusercontent.com/u/499079?v=4", "events_url": "https://api.github.com/users/kjordahl/events{/privacy}", "followers_url": "https://api.github.com/users/kjordahl/followers", "following_url": "https://api.github.com/users/kjordahl/following{/other_user}", "gists_url": "https://api.github.com/users/kjordahl/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/kjordahl", "id": 499079, "login": "kjordahl", "node_id": "MDQ6VXNlcjQ5OTA3OQ==", "organizations_url": "https://api.github.com/users/kjordahl/orgs", "received_events_url": "https://api.github.com/users/kjordahl/received_events", "repos_url": "https://api.github.com/users/kjordahl/repos", "site_admin": false, "starred_url": "https://api.github.com/users/kjordahl/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/kjordahl/subscriptions", "type": "User", "url": "https://api.github.com/users/kjordahl" }
[]
closed
false
null
[]
null
1
2013-07-15T18:31:15Z
2014-07-16T08:19:20Z
2013-07-15T23:01:07Z
NONE
null
Fix a few minor typos.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4243/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4243/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4243.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4243", "merged_at": "2013-07-15T23:01:07Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4243.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4243" }
https://api.github.com/repos/pandas-dev/pandas/issues/4244
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4244/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4244/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4244/events
https://github.com/pandas-dev/pandas/issues/4244
16,774,865
MDU6SXNzdWUxNjc3NDg2NQ==
4,244
DOC: 10 Minutes to Pandas - docs missing 'pd.' in example code
{ "avatar_url": "https://avatars.githubusercontent.com/u/208920?v=4", "events_url": "https://api.github.com/users/campeterson/events{/privacy}", "followers_url": "https://api.github.com/users/campeterson/followers", "following_url": "https://api.github.com/users/campeterson/following{/other_user}", "gists_url": "https://api.github.com/users/campeterson/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/campeterson", "id": 208920, "login": "campeterson", "node_id": "MDQ6VXNlcjIwODkyMA==", "organizations_url": "https://api.github.com/users/campeterson/orgs", "received_events_url": "https://api.github.com/users/campeterson/received_events", "repos_url": "https://api.github.com/users/campeterson/repos", "site_admin": false, "starred_url": "https://api.github.com/users/campeterson/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/campeterson/subscriptions", "type": "User", "url": "https://api.github.com/users/campeterson" }
[ { "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": "2013-12-30T19:53:14Z", "closed_issues": 1076, "created_at": "2012-11-15T23:33:37Z", "creator": { "avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4", "events_url": "https://api.github.com/users/wesm/events{/privacy}", "followers_url": "https://api.github.com/users/wesm/followers", "following_url": "https://api.github.com/users/wesm/following{/other_user}", "gists_url": "https://api.github.com/users/wesm/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/wesm", "id": 329591, "login": "wesm", "node_id": "MDQ6VXNlcjMyOTU5MQ==", "organizations_url": "https://api.github.com/users/wesm/orgs", "received_events_url": "https://api.github.com/users/wesm/received_events", "repos_url": "https://api.github.com/users/wesm/repos", "site_admin": false, "starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/wesm/subscriptions", "type": "User", "url": "https://api.github.com/users/wesm" }, "description": "RC1 ANN went out on 2013-12-6: https://groups.google.com/forum/#!topic/pydata/OHutLByJvK0\r\nTwo weeks, clear all reported bugs then call it on 2013-12-20. \r\n(@y-p)\r\n\r\nsince we've had some bugs reported at a high enough rate, extending rc by one\r\nweek until 2013-12-27. \r\n(@y-p)\r\n\r\nBumping to clear debian sparc\r\n2013-12-30. \r\n(@y-p)", "due_on": "2013-12-30T08:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/18", "id": 213925, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18/labels", "node_id": "MDk6TWlsZXN0b25lMjEzOTI1", "number": 18, "open_issues": 0, "state": "closed", "title": "0.13", "updated_at": "2017-07-22T19:00:05Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18" }
5
2013-07-15T19:49:02Z
2013-08-01T16:33:17Z
2013-08-01T16:33:17Z
NONE
null
In the 10 Minutes to Pandas documentation (http://pandas.pydata.org/pandas-docs/stable/10min.html) there are several places where the sample code shows 'Series', 'date_range' or other Pandas methods are missing 'pd.'. If you evaluate the code examples, you get this error: ``` NameError: name 'Series' is not defined ``` NOTE: This error occurs when you're evaluating sample code in the docs.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4244/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4244/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4245
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4245/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4245/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4245/events
https://github.com/pandas-dev/pandas/pull/4245
16,775,117
MDExOlB1bGxSZXF1ZXN0NjkzNTU4Nw==
4,245
DOC: Fixed erroneous method calls in 10min.rst. 'pd.' was missing - Issue #4244
{ "avatar_url": "https://avatars.githubusercontent.com/u/208920?v=4", "events_url": "https://api.github.com/users/campeterson/events{/privacy}", "followers_url": "https://api.github.com/users/campeterson/followers", "following_url": "https://api.github.com/users/campeterson/following{/other_user}", "gists_url": "https://api.github.com/users/campeterson/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/campeterson", "id": 208920, "login": "campeterson", "node_id": "MDQ6VXNlcjIwODkyMA==", "organizations_url": "https://api.github.com/users/campeterson/orgs", "received_events_url": "https://api.github.com/users/campeterson/received_events", "repos_url": "https://api.github.com/users/campeterson/repos", "site_admin": false, "starred_url": "https://api.github.com/users/campeterson/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/campeterson/subscriptions", "type": "User", "url": "https://api.github.com/users/campeterson" }
[]
closed
false
null
[]
{ "closed_at": "2013-12-30T19:53:14Z", "closed_issues": 1076, "created_at": "2012-11-15T23:33:37Z", "creator": { "avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4", "events_url": "https://api.github.com/users/wesm/events{/privacy}", "followers_url": "https://api.github.com/users/wesm/followers", "following_url": "https://api.github.com/users/wesm/following{/other_user}", "gists_url": "https://api.github.com/users/wesm/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/wesm", "id": 329591, "login": "wesm", "node_id": "MDQ6VXNlcjMyOTU5MQ==", "organizations_url": "https://api.github.com/users/wesm/orgs", "received_events_url": "https://api.github.com/users/wesm/received_events", "repos_url": "https://api.github.com/users/wesm/repos", "site_admin": false, "starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/wesm/subscriptions", "type": "User", "url": "https://api.github.com/users/wesm" }, "description": "RC1 ANN went out on 2013-12-6: https://groups.google.com/forum/#!topic/pydata/OHutLByJvK0\r\nTwo weeks, clear all reported bugs then call it on 2013-12-20. \r\n(@y-p)\r\n\r\nsince we've had some bugs reported at a high enough rate, extending rc by one\r\nweek until 2013-12-27. \r\n(@y-p)\r\n\r\nBumping to clear debian sparc\r\n2013-12-30. \r\n(@y-p)", "due_on": "2013-12-30T08:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/18", "id": 213925, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18/labels", "node_id": "MDk6TWlsZXN0b25lMjEzOTI1", "number": 18, "open_issues": 0, "state": "closed", "title": "0.13", "updated_at": "2017-07-22T19:00:05Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18" }
11
2013-07-15T19:54:16Z
2014-06-15T13:59:46Z
2013-08-01T16:33:39Z
NONE
null
Added 'pd.' to the examples in 10min.rst (10 Minutes to Pandas).
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4245/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4245/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4245.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4245", "merged_at": null, "patch_url": "https://github.com/pandas-dev/pandas/pull/4245.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4245" }
https://api.github.com/repos/pandas-dev/pandas/issues/4246
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4246/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4246/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4246/events
https://github.com/pandas-dev/pandas/issues/4246
16,781,095
MDU6SXNzdWUxNjc4MTA5NQ==
4,246
API: non-unique indexing on Series
{ "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://api.github.com/users/jreback/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/jreback", "id": 953992, "login": "jreback", "node_id": "MDQ6VXNlcjk1Mzk5Mg==", "organizations_url": "https://api.github.com/users/jreback/orgs", "received_events_url": "https://api.github.com/users/jreback/received_events", "repos_url": "https://api.github.com/users/jreback/repos", "site_admin": false, "starred_url": "https://api.github.com/users/jreback/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jreback/subscriptions", "type": "User", "url": "https://api.github.com/users/jreback" }
[ { "color": "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" } ]
closed
false
null
[]
{ "closed_at": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
2
2013-07-15T21:50:54Z
2013-07-15T22:56:02Z
2013-07-15T22:56:02Z
CONTRIBUTOR
null
The following currently are exceptions in master(the corresponding operations on DataFrames work though) ``` In [4]: s = Series([1,2,3,4],['foo','bar','foo','bah']) In [5]: s.ix[['foo','bar','bah','bam']] NotImplementedError: cannot handle non-unique indexing for non-DataFrame (yet) In [6]: s[['foo','bar','bah','bam']] AssertionError: Index length did not match values ```
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4246/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4246/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4247
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4247/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4247/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4247/events
https://github.com/pandas-dev/pandas/pull/4247
16,781,291
MDExOlB1bGxSZXF1ZXN0NjkzOTExMw==
4,247
API: implement non-unique indexing in series (GH4246)
{ "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://api.github.com/users/jreback/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/jreback", "id": 953992, "login": "jreback", "node_id": "MDQ6VXNlcjk1Mzk5Mg==", "organizations_url": "https://api.github.com/users/jreback/orgs", "received_events_url": "https://api.github.com/users/jreback/received_events", "repos_url": "https://api.github.com/users/jreback/repos", "site_admin": false, "starred_url": "https://api.github.com/users/jreback/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jreback/subscriptions", "type": "User", "url": "https://api.github.com/users/jreback" }
[]
closed
false
null
[]
{ "closed_at": "2013-12-30T19:53:14Z", "closed_issues": 1076, "created_at": "2012-11-15T23:33:37Z", "creator": { "avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4", "events_url": "https://api.github.com/users/wesm/events{/privacy}", "followers_url": "https://api.github.com/users/wesm/followers", "following_url": "https://api.github.com/users/wesm/following{/other_user}", "gists_url": "https://api.github.com/users/wesm/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/wesm", "id": 329591, "login": "wesm", "node_id": "MDQ6VXNlcjMyOTU5MQ==", "organizations_url": "https://api.github.com/users/wesm/orgs", "received_events_url": "https://api.github.com/users/wesm/received_events", "repos_url": "https://api.github.com/users/wesm/repos", "site_admin": false, "starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/wesm/subscriptions", "type": "User", "url": "https://api.github.com/users/wesm" }, "description": "RC1 ANN went out on 2013-12-6: https://groups.google.com/forum/#!topic/pydata/OHutLByJvK0\r\nTwo weeks, clear all reported bugs then call it on 2013-12-20. \r\n(@y-p)\r\n\r\nsince we've had some bugs reported at a high enough rate, extending rc by one\r\nweek until 2013-12-27. \r\n(@y-p)\r\n\r\nBumping to clear debian sparc\r\n2013-12-30. \r\n(@y-p)", "due_on": "2013-12-30T08:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/18", "id": 213925, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18/labels", "node_id": "MDk6TWlsZXN0b25lMjEzOTI1", "number": 18, "open_issues": 0, "state": "closed", "title": "0.13", "updated_at": "2017-07-22T19:00:05Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18" }
0
2013-07-15T21:55:08Z
2014-06-25T22:17:51Z
2013-07-15T22:56:02Z
CONTRIBUTOR
null
closes #4246 ``` In [3]: s = Series([1,2,3,4],['foo','bar','foo','bah']) In [4]: s.ix[['foo','bar','bah','bam']] Out[4]: foo 1 foo 3 bar 2 bah 4 bam NaN dtype: float64 In [5]: s[['foo','bar','bah','bam']] Out[5]: foo 1 foo 3 bar 2 bah 4 bam NaN dtype: float64 ```
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4247/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4247/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4247.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4247", "merged_at": "2013-07-15T22:56:02Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4247.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4247" }
https://api.github.com/repos/pandas-dev/pandas/issues/4248
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4248/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4248/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4248/events
https://github.com/pandas-dev/pandas/pull/4248
16,782,873
MDExOlB1bGxSZXF1ZXN0NjkzOTk5Ng==
4,248
BLD: use mpl 1.1.1 in python 2.7 production travis build
{ "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" }
[]
closed
false
{ "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" }
[ { "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" } ]
{ "closed_at": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
0
2013-07-15T22:29:22Z
2014-07-16T08:19:24Z
2013-07-15T23:17:07Z
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/4248/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4248/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4248.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4248", "merged_at": "2013-07-15T23:17:07Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4248.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4248" }
https://api.github.com/repos/pandas-dev/pandas/issues/4249
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4249/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4249/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4249/events
https://github.com/pandas-dev/pandas/issues/4249
16,785,637
MDU6SXNzdWUxNjc4NTYzNw==
4,249
1e69dad import failure
{ "avatar_url": "https://avatars.githubusercontent.com/u/69774?v=4", "events_url": "https://api.github.com/users/michaelaye/events{/privacy}", "followers_url": "https://api.github.com/users/michaelaye/followers", "following_url": "https://api.github.com/users/michaelaye/following{/other_user}", "gists_url": "https://api.github.com/users/michaelaye/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/michaelaye", "id": 69774, "login": "michaelaye", "node_id": "MDQ6VXNlcjY5Nzc0", "organizations_url": "https://api.github.com/users/michaelaye/orgs", "received_events_url": "https://api.github.com/users/michaelaye/received_events", "repos_url": "https://api.github.com/users/michaelaye/repos", "site_admin": false, "starred_url": "https://api.github.com/users/michaelaye/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/michaelaye/subscriptions", "type": "User", "url": "https://api.github.com/users/michaelaye" }
[ { "color": "e10c02", "default": false, "description": null, "id": 76811, "name": "Bug", "node_id": "MDU6TGFiZWw3NjgxMQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug" } ]
closed
false
null
[]
{ "closed_at": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
7
2013-07-15T23:45:03Z
2016-10-12T23:04:00Z
2013-07-16T13:19:21Z
CONTRIBUTOR
null
(master)[maye@luna4 ~/src/pandas]$ git log -1 commit 1e69dade1309b494e43f26f9831326c2ce63f7de Merge: 5be1e5a 5b908a5 Author: Phillip Cloud [email protected] Date: Mon Jul 15 16:17:06 2013 -0700 ``` Merge pull request #4248 from cpcloud/mpl-1.1.1-build BLD: use mpl 1.1.1 in python 2.7 production travis build ``` This happened after doing: ``` python python setup.py clean python setup.py install ``` Here's the error: ``` python In [1]: import pandas --------------------------------------------------------------------------- ImportError Traceback (most recent call last) <ipython-input-1-d6ac987968b6> in <module>() ----> 1 import pandas /Library/Frameworks/EPD64.framework/Versions/7.3/lib/python2.7/site-packages/pandas-0.12.0.dev_1e69dad-py2.7-macosx-10.5-x86_64.egg/pandas/__init__.pyc in <module>() 25 import pandas.core.config_init 26 ---> 27 from pandas.core.api import * 28 from pandas.sparse.api import * 29 from pandas.stats.api import * /Library/Frameworks/EPD64.framework/Versions/7.3/lib/python2.7/site-packages/pandas-0.12.0.dev_1e69dad-py2.7-macosx-10.5-x86_64.egg/pandas/core/api.py in <module>() 16 from pandas.core.panel4d import Panel4D 17 from pandas.core.groupby import groupby ---> 18 from pandas.core.reshape import (pivot_simple as pivot, get_dummies, 19 lreshape) 20 /Library/Frameworks/EPD64.framework/Versions/7.3/lib/python2.7/site-packages/pandas-0.12.0.dev_1e69dad-py2.7-macosx-10.5-x86_64.egg/pandas/core/reshape.py in <module>() 6 import numpy as np 7 ----> 8 import six 9 10 from pandas.core.series import Series ImportError: No module named six ```
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4249/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4249/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4250
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4250/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4250/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4250/events
https://github.com/pandas-dev/pandas/pull/4250
16,786,315
MDExOlB1bGxSZXF1ZXN0Njk0MTkzMA==
4,250
BUG: remove six import
{ "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" }
[]
closed
false
{ "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" }
[ { "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" } ]
{ "closed_at": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
4
2013-07-16T00:07:26Z
2014-07-12T05:11:20Z
2013-07-16T13:19:21Z
MEMBER
null
closes #4249
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4250/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4250/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4250.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4250", "merged_at": "2013-07-16T13:19:21Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4250.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4250" }
https://api.github.com/repos/pandas-dev/pandas/issues/4251
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4251/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4251/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4251/events
https://github.com/pandas-dev/pandas/pull/4251
16,790,421
MDExOlB1bGxSZXF1ZXN0Njk0NDAwMA==
4,251
CLN: Remove unused and cleanup imports throughout.
{ "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": "https://api.github.com/users/jtratner/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/jtratner", "id": 1598379, "login": "jtratner", "node_id": "MDQ6VXNlcjE1OTgzNzk=", "organizations_url": "https://api.github.com/users/jtratner/orgs", "received_events_url": "https://api.github.com/users/jtratner/received_events", "repos_url": "https://api.github.com/users/jtratner/repos", "site_admin": false, "starred_url": "https://api.github.com/users/jtratner/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jtratner/subscriptions", "type": "User", "url": "https://api.github.com/users/jtratner" }
[]
closed
false
null
[]
{ "closed_at": "2013-12-30T19:53:14Z", "closed_issues": 1076, "created_at": "2012-11-15T23:33:37Z", "creator": { "avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4", "events_url": "https://api.github.com/users/wesm/events{/privacy}", "followers_url": "https://api.github.com/users/wesm/followers", "following_url": "https://api.github.com/users/wesm/following{/other_user}", "gists_url": "https://api.github.com/users/wesm/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/wesm", "id": 329591, "login": "wesm", "node_id": "MDQ6VXNlcjMyOTU5MQ==", "organizations_url": "https://api.github.com/users/wesm/orgs", "received_events_url": "https://api.github.com/users/wesm/received_events", "repos_url": "https://api.github.com/users/wesm/repos", "site_admin": false, "starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/wesm/subscriptions", "type": "User", "url": "https://api.github.com/users/wesm" }, "description": "RC1 ANN went out on 2013-12-6: https://groups.google.com/forum/#!topic/pydata/OHutLByJvK0\r\nTwo weeks, clear all reported bugs then call it on 2013-12-20. \r\n(@y-p)\r\n\r\nsince we've had some bugs reported at a high enough rate, extending rc by one\r\nweek until 2013-12-27. \r\n(@y-p)\r\n\r\nBumping to clear debian sparc\r\n2013-12-30. \r\n(@y-p)", "due_on": "2013-12-30T08:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/18", "id": 213925, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18/labels", "node_id": "MDk6TWlsZXN0b25lMjEzOTI1", "number": 18, "open_issues": 0, "state": "closed", "title": "0.13", "updated_at": "2017-07-22T19:00:05Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18" }
7
2013-07-16T02:52:45Z
2014-06-26T17:39:32Z
2013-07-31T12:20:38Z
CONTRIBUTOR
null
Cleans up imports throughout pandas, removing unused and reordering to better match PEP8 where reasonable. Thanks to PyCharm for making this much easier. Doesn't change any .pyx or .pyd files. (inspired by import issue in #4249)
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4251/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4251/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4251.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4251", "merged_at": null, "patch_url": "https://github.com/pandas-dev/pandas/pull/4251.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4251" }
https://api.github.com/repos/pandas-dev/pandas/issues/4252
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4252/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4252/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4252/events
https://github.com/pandas-dev/pandas/issues/4252
16,790,472
MDU6SXNzdWUxNjc5MDQ3Mg==
4,252
AttributeError: 'TestReadHtmlBase' object has no attribute 'flavor'
{ "avatar_url": "https://avatars.githubusercontent.com/u/39889?v=4", "events_url": "https://api.github.com/users/yarikoptic/events{/privacy}", "followers_url": "https://api.github.com/users/yarikoptic/followers", "following_url": "https://api.github.com/users/yarikoptic/following{/other_user}", "gists_url": "https://api.github.com/users/yarikoptic/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/yarikoptic", "id": 39889, "login": "yarikoptic", "node_id": "MDQ6VXNlcjM5ODg5", "organizations_url": "https://api.github.com/users/yarikoptic/orgs", "received_events_url": "https://api.github.com/users/yarikoptic/received_events", "repos_url": "https://api.github.com/users/yarikoptic/repos", "site_admin": false, "starred_url": "https://api.github.com/users/yarikoptic/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/yarikoptic/subscriptions", "type": "User", "url": "https://api.github.com/users/yarikoptic" }
[ { "color": "e10c02", "default": false, "description": null, "id": 76811, "name": "Bug", "node_id": "MDU6TGFiZWw3NjgxMQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug" }, { "color": "C4A000", "default": false, "description": "pandas testing functions or related to the test suite", "id": 127685, "name": "Testing", "node_id": "MDU6TGFiZWwxMjc2ODU=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Testing" } ]
closed
false
null
[]
{ "closed_at": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
8
2013-07-16T02:55:33Z
2016-10-12T23:04:00Z
2013-07-17T13:28:48Z
CONTRIBUTOR
null
Was testing 0.12.0~rc1+git79-g50eff60 on a sparc for the recent fixes: test_html tests puked before trying with ``` ====================================================================== ERROR: test_bad_url_protocol (pandas.io.tests.test_html.TestReadHtmlBase) ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/yoh/deb/gits/pkg-exppsy/pandas/debian/tmp/usr/lib/python2.7/dist-packages/pandas/io/tests/test_html.py", line 98, in setUp self.try_skip() File "/home/yoh/deb/gits/pkg-exppsy/pandas/debian/tmp/usr/lib/python2.7/dist-packages/pandas/io/tests/test_html.py", line 87, in try_skip self.flavor != ['lxml']): AttributeError: 'TestReadHtmlBase' object has no attribute 'flavor' ```
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4252/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4252/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4253
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4253/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4253/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4253/events
https://github.com/pandas-dev/pandas/issues/4253
16,790,514
MDU6SXNzdWUxNjc5MDUxNA==
4,253
test_fallback_success: missing skip conditioning
{ "avatar_url": "https://avatars.githubusercontent.com/u/39889?v=4", "events_url": "https://api.github.com/users/yarikoptic/events{/privacy}", "followers_url": "https://api.github.com/users/yarikoptic/followers", "following_url": "https://api.github.com/users/yarikoptic/following{/other_user}", "gists_url": "https://api.github.com/users/yarikoptic/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/yarikoptic", "id": 39889, "login": "yarikoptic", "node_id": "MDQ6VXNlcjM5ODg5", "organizations_url": "https://api.github.com/users/yarikoptic/orgs", "received_events_url": "https://api.github.com/users/yarikoptic/received_events", "repos_url": "https://api.github.com/users/yarikoptic/repos", "site_admin": false, "starred_url": "https://api.github.com/users/yarikoptic/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/yarikoptic/subscriptions", "type": "User", "url": "https://api.github.com/users/yarikoptic" }
[ { "color": "e10c02", "default": false, "description": null, "id": 76811, "name": "Bug", "node_id": "MDU6TGFiZWw3NjgxMQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug" }, { "color": "C4A000", "default": false, "description": "pandas testing functions or related to the test suite", "id": 127685, "name": "Testing", "node_id": "MDU6TGFiZWwxMjc2ODU=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Testing" } ]
closed
false
null
[]
{ "closed_at": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
2
2013-07-16T02:57:41Z
2016-10-12T23:04:00Z
2013-07-17T13:29:00Z
CONTRIBUTOR
null
with 0.12.0~rc1+git79-g50eff60 ``` ====================================================================== FAIL: test_fallback_success (pandas.io.tests.test_html.TestReadHtmlLxml) ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/yoh/deb/gits/pkg-exppsy/pandas/debian/tmp/usr/lib/python2.7/dist-packages/pandas/io/tests/test_html.py", line 449, in test_fallback_success 'html5lib']) File "/home/yoh/deb/gits/pkg-exppsy/pandas/debian/tmp/usr/lib/python2.7/dist-packages/pandas/io/tests/test_html.py", line 420, in run_read_html return read_html(*args, **kwargs) File "/home/yoh/deb/gits/pkg-exppsy/pandas/debian/tmp/usr/lib/python2.7/dist-packages/pandas/io/html.py", line 906, in read_html attrs) File "/home/yoh/deb/gits/pkg-exppsy/pandas/debian/tmp/usr/lib/python2.7/dist-packages/pandas/io/html.py", line 765, in _parse parser = _parser_dispatch(flav) File "/home/yoh/deb/gits/pkg-exppsy/pandas/debian/tmp/usr/lib/python2.7/dist-packages/pandas/io/html.py", line 723, in _parser_dispatch raise AssertionError("You're using a version" AssertionError: You're using a version of BeautifulSoup4 (4.2.0) that has been known to cause problems on certain operating systems such as Debian. Please install a version of BeautifulSoup4 != 4.2.0, both earlier and later releases will 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/4253/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4253/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4254
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4254/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4254/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4254/events
https://github.com/pandas-dev/pandas/pull/4254
16,803,511
MDExOlB1bGxSZXF1ZXN0Njk1MDM4Ng==
4,254
ENH: Keep original stack when exception happened in dataframe.apply
{ "avatar_url": "https://avatars.githubusercontent.com/u/657796?v=4", "events_url": "https://api.github.com/users/Wuvist/events{/privacy}", "followers_url": "https://api.github.com/users/Wuvist/followers", "following_url": "https://api.github.com/users/Wuvist/following{/other_user}", "gists_url": "https://api.github.com/users/Wuvist/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/Wuvist", "id": 657796, "login": "Wuvist", "node_id": "MDQ6VXNlcjY1Nzc5Ng==", "organizations_url": "https://api.github.com/users/Wuvist/orgs", "received_events_url": "https://api.github.com/users/Wuvist/received_events", "repos_url": "https://api.github.com/users/Wuvist/repos", "site_admin": false, "starred_url": "https://api.github.com/users/Wuvist/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Wuvist/subscriptions", "type": "User", "url": "https://api.github.com/users/Wuvist" }
[]
closed
false
null
[]
{ "closed_at": "2013-12-30T19:53:14Z", "closed_issues": 1076, "created_at": "2012-11-15T23:33:37Z", "creator": { "avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4", "events_url": "https://api.github.com/users/wesm/events{/privacy}", "followers_url": "https://api.github.com/users/wesm/followers", "following_url": "https://api.github.com/users/wesm/following{/other_user}", "gists_url": "https://api.github.com/users/wesm/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/wesm", "id": 329591, "login": "wesm", "node_id": "MDQ6VXNlcjMyOTU5MQ==", "organizations_url": "https://api.github.com/users/wesm/orgs", "received_events_url": "https://api.github.com/users/wesm/received_events", "repos_url": "https://api.github.com/users/wesm/repos", "site_admin": false, "starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/wesm/subscriptions", "type": "User", "url": "https://api.github.com/users/wesm" }, "description": "RC1 ANN went out on 2013-12-6: https://groups.google.com/forum/#!topic/pydata/OHutLByJvK0\r\nTwo weeks, clear all reported bugs then call it on 2013-12-20. \r\n(@y-p)\r\n\r\nsince we've had some bugs reported at a high enough rate, extending rc by one\r\nweek until 2013-12-27. \r\n(@y-p)\r\n\r\nBumping to clear debian sparc\r\n2013-12-30. \r\n(@y-p)", "due_on": "2013-12-30T08:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/18", "id": 213925, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18/labels", "node_id": "MDk6TWlsZXN0b25lMjEzOTI1", "number": 18, "open_issues": 0, "state": "closed", "title": "0.13", "updated_at": "2017-07-22T19:00:05Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18" }
19
2013-07-16T10:48:28Z
2014-07-11T22:39:12Z
2013-08-21T13:32:23Z
NONE
null
when using raise e, the error stack app user received will begin in _apply_standard method. Use raise instead, so that user could received error stack in funv(v) call. Easier for user to debug.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4254/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4254/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4254.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4254", "merged_at": null, "patch_url": "https://github.com/pandas-dev/pandas/pull/4254.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4254" }
https://api.github.com/repos/pandas-dev/pandas/issues/4255
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4255/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4255/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4255/events
https://github.com/pandas-dev/pandas/issues/4255
16,806,279
MDU6SXNzdWUxNjgwNjI3OQ==
4,255
Overflow datetime, ValueError: Out of bounds nanosecond timestamp: 9999-12-31 00:00:00, Release Candidate 0.12
{ "avatar_url": "https://avatars.githubusercontent.com/u/4462724?v=4", "events_url": "https://api.github.com/users/amanhanda/events{/privacy}", "followers_url": "https://api.github.com/users/amanhanda/followers", "following_url": "https://api.github.com/users/amanhanda/following{/other_user}", "gists_url": "https://api.github.com/users/amanhanda/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/amanhanda", "id": 4462724, "login": "amanhanda", "node_id": "MDQ6VXNlcjQ0NjI3MjQ=", "organizations_url": "https://api.github.com/users/amanhanda/orgs", "received_events_url": "https://api.github.com/users/amanhanda/received_events", "repos_url": "https://api.github.com/users/amanhanda/repos", "site_admin": false, "starred_url": "https://api.github.com/users/amanhanda/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/amanhanda/subscriptions", "type": "User", "url": "https://api.github.com/users/amanhanda" }
[ { "color": "AFEEEE", "default": false, "description": null, "id": 211840, "name": "Timeseries", "node_id": "MDU6TGFiZWwyMTE4NDA=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Timeseries" } ]
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", "following_url": "https://api.github.com/users/wesm/following{/other_user}", "gists_url": "https://api.github.com/users/wesm/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/wesm", "id": 329591, "login": "wesm", "node_id": "MDQ6VXNlcjMyOTU5MQ==", "organizations_url": "https://api.github.com/users/wesm/orgs", "received_events_url": "https://api.github.com/users/wesm/received_events", "repos_url": "https://api.github.com/users/wesm/repos", "site_admin": false, "starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/wesm/subscriptions", "type": "User", "url": "https://api.github.com/users/wesm" }, "description": "Milestone for filing things away that may be reached someday (at which point such issues should be moved to the appropriate release milestone)", "due_on": "2022-12-31T08:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/20", "id": 239227, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/20/labels", "node_id": "MDk6TWlsZXN0b25lMjM5MjI3", "number": 20, "open_issues": 108, "state": "open", "title": "Someday", "updated_at": "2021-08-08T01:48:22Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/20" }
7
2013-07-16T12:13:12Z
2013-07-22T16:50:58Z
2013-07-22T16:50:58Z
NONE
null
We use 9999-12-31 as end of time while processing. No issue with it in .10.1 or .11 release. Was trying .12rc1 and ran into the issue where I can create a dataframe with 9999-12-31 00:00:00 but if an apply operation does the same, there is an overflow reported. In [1]: import pandas as pd In [2]: import datetime In [3]: data = [("a{0}".format(i), 99991231, 20130715) for i in xrange(10)] In [4]: data Out[4]: [('a0', 99991231, 20130715), ('a1', 99991231, 20130715), ('a2', 99991231, 20130715), ('a3', 99991231, 20130715), ('a4', 99991231, 20130715), ('a5', 99991231, 20130715), ('a6', 99991231, 20130715), ('a7', 99991231, 20130715), ('a8', 99991231, 20130715), ('a9', 99991231, 20130715)] In [5]: df = pd.DataFrame(data) In [6]: In [6]: df Out[6]: 0 1 2 0 a0 99991231 20130715 1 a1 99991231 20130715 2 a2 99991231 20130715 3 a3 99991231 20130715 4 a4 99991231 20130715 5 a5 99991231 20130715 6 a6 99991231 20130715 7 a7 99991231 20130715 8 a8 99991231 20130715 9 a9 99991231 20130715 ## In [8]: df.apply(lambda x: (x[0], datetime.datetime(9999,12,31),datetime.datetime(9999,12,31)), axis=1) ValueError Traceback (most recent call last) /home/ahanda/python/learning/src/<ipython-input-8-5b4db85f40d0> in <module>() ----> 1 df.apply(lambda x: (x[0], datetime.datetime(9999,12,31),datetime.datetime(9999,12,31)), axis=1) /logs/tmp/taserv/pandasrc/lib/python2.7/site-packages/pandas-0.12.0rc1-py2.7-linux-x86_64.egg/pandas/core/frame.pyc in apply(self, func, axis, broadcast, raw, args, **kwds) 4414 return self._apply_raw(f, axis) 4415 else: -> 4416 return self._apply_standard(f, axis) 4417 else: 4418 return self._apply_broadcast(f, axis) /logs/tmp/taserv/pandasrc/lib/python2.7/site-packages/pandas-0.12.0rc1-py2.7-linux-x86_64.egg/pandas/core/frame.pyc in _apply_standard(self, func, axis, ignore_failures) 4503 if axis == 1: 4504 result = result.T -> 4505 result = result.convert_objects(copy=False) 4506 4507 return result /logs/tmp/taserv/pandasrc/lib/python2.7/site-packages/pandas-0.12.0rc1-py2.7-linux-x86_64.egg/pandas/core/frame.pyc in convert_objects(self, convert_dates, convert_numeric, copy) 1712 return self._constructor(self._data.convert(convert_dates=convert_dates, 1713 convert_numeric=convert_numeric, -> 1714 copy=copy)) 1715 1716 #---------------------------------------------------------------------- /logs/tmp/taserv/pandasrc/lib/python2.7/site-packages/pandas-0.12.0rc1-py2.7-linux-x86_64.egg/pandas/core/internals.pyc in convert(self, _args, *_kwargs) 1305 1306 def convert(self, _args, *_kwargs): -> 1307 return self.apply('convert', _args, *_kwargs) 1308 1309 def replace(self, _args, *_kwargs): /logs/tmp/taserv/pandasrc/lib/python2.7/site-packages/pandas-0.12.0rc1-py2.7-linux-x86_64.egg/pandas/core/internals.pyc in apply(self, f, _args, *_kwargs) 1267 applied = f(blk, _args, *_kwargs) 1268 else: -> 1269 applied = getattr(blk,f)(_args, *_kwargs) 1270 1271 if isinstance(applied,list): /logs/tmp/taserv/pandasrc/lib/python2.7/site-packages/pandas-0.12.0rc1-py2.7-linux-x86_64.egg/pandas/core/internals.pyc in convert(self, convert_dates, convert_numeric, copy) 721 values = self.iget(i) 722 --> 723 values = com._possibly_convert_objects(values, convert_dates=convert_dates, convert_numeric=convert_numeric) 724 values = _block_shape(values) 725 items = self.items.take([i]) /logs/tmp/taserv/pandasrc/lib/python2.7/site-packages/pandas-0.12.0rc1-py2.7-linux-x86_64.egg/pandas/core/common.pyc in _possibly_convert_objects(values, convert_dates, convert_numeric) 1108 1109 else: -> 1110 values = lib.maybe_convert_objects(values, convert_datetime=convert_dates) 1111 1112 # convert to numeric /logs/tmp/taserv/pandasrc/lib/python2.7/site-packages/pandas-0.12.0rc1-py2.7-linux-x86_64.egg/pandas/lib.so in pandas.lib.maybe_convert_objects (pandas/lib.c:36583)() /logs/tmp/taserv/pandasrc/lib/python2.7/site-packages/pandas-0.12.0rc1-py2.7-linux-x86_64.egg/pandas/tslib.so in pandas.tslib.convert_to_tsobject (pandas/tslib.c:12743)() /logs/tmp/taserv/pandasrc/lib/python2.7/site-packages/pandas-0.12.0rc1-py2.7-linux-x86_64.egg/pandas/tslib.so in pandas.tslib._check_dts_bounds (pandas/tslib.c:13800)() ValueError: Out of bounds nanosecond timestamp: 9999-12-31 00:00:00 In [9]: df.apply(lambda x: (x[0], datetime.datetime(2100,12,31),datetime.datetime(2100,12,31)), axis=1) Out[9]: 0 1 2 0 a0 2100-12-31 00:00:00 2100-12-31 00:00:00 1 a1 2100-12-31 00:00:00 2100-12-31 00:00:00 2 a2 2100-12-31 00:00:00 2100-12-31 00:00:00 3 a3 2100-12-31 00:00:00 2100-12-31 00:00:00 4 a4 2100-12-31 00:00:00 2100-12-31 00:00:00 5 a5 2100-12-31 00:00:00 2100-12-31 00:00:00 6 a6 2100-12-31 00:00:00 2100-12-31 00:00:00 7 a7 2100-12-31 00:00:00 2100-12-31 00:00:00 8 a8 2100-12-31 00:00:00 2100-12-31 00:00:00 9 a9 2100-12-31 00:00:00 2100-12-31 00:00:00 In [11]: data1 = [("a{0}".format(i), datetime.datetime(9999,12,31), datetime.datetime(9999,12,31)) for i in xrange(10)] In [12]: df1 = pd.DataFrame(data1) In [13]: df1 Out[13]: 0 1 2 0 a0 9999-12-31 00:00:00 9999-12-31 00:00:00 1 a1 9999-12-31 00:00:00 9999-12-31 00:00:00 2 a2 9999-12-31 00:00:00 9999-12-31 00:00:00 3 a3 9999-12-31 00:00:00 9999-12-31 00:00:00 4 a4 9999-12-31 00:00:00 9999-12-31 00:00:00 5 a5 9999-12-31 00:00:00 9999-12-31 00:00:00 6 a6 9999-12-31 00:00:00 9999-12-31 00:00:00 7 a7 9999-12-31 00:00:00 9999-12-31 00:00:00 8 a8 9999-12-31 00:00:00 9999-12-31 00:00:00 9 a9 9999-12-31 00:00:00 9999-12-31 00:00:00 In [15]: np.version.version Out[15]: '1.6.1' In [16]: pd.version.version Out[16]: '0.12.0rc1'
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4255/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4255/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4256
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4256/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4256/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4256/events
https://github.com/pandas-dev/pandas/issues/4256
16,808,490
MDU6SXNzdWUxNjgwODQ5MA==
4,256
Storing string in indf file (python 3 only issue)
{ "avatar_url": "https://avatars.githubusercontent.com/u/528003?v=4", "events_url": "https://api.github.com/users/hadim/events{/privacy}", "followers_url": "https://api.github.com/users/hadim/followers", "following_url": "https://api.github.com/users/hadim/following{/other_user}", "gists_url": "https://api.github.com/users/hadim/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/hadim", "id": 528003, "login": "hadim", "node_id": "MDQ6VXNlcjUyODAwMw==", "organizations_url": "https://api.github.com/users/hadim/orgs", "received_events_url": "https://api.github.com/users/hadim/received_events", "repos_url": "https://api.github.com/users/hadim/repos", "site_admin": false, "starred_url": "https://api.github.com/users/hadim/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/hadim/subscriptions", "type": "User", "url": "https://api.github.com/users/hadim" }
[]
closed
false
null
[]
null
8
2013-07-16T13:10:33Z
2013-07-16T13:48:10Z
2013-07-16T13:38:30Z
NONE
null
`str` from python 3 are more or less the same as `unicode` from python 2.7. It appears that numpy or pytables or pandas (check the guilty but I vote for pytables) does not properly handle python 3 string and see them as object. Since it's working with python 2.7, it should be a way to revert python 3 string to python 2.7 string if no other cleaner solution exists... Here there is some code to play with: ``` python import pandas as pd df = pd.DataFrame([ ['span', '2000', 's', '0.1', '2000.', '10.'], ['dt', '10', 's', '0.1', '2.', '0.1'], ['t_A', '1750', 's', '0.', '1000.', '1.'], ['d_alpha', '0.05', 'µm', '0', '100', '0.005'], ['orientation', '1', ' ', '0', '100', '1'], ['sac', '1', ' ', '0', '1', '1'], ], columns=['name', 'value', 'unit', 'min', 'max', 'step']) print(df) print(df.values.dtype) ``` ``` name value unit min max step 0 span 2000 s 0.1 2000. 10. 1 dt 10 s 0.1 2. 0.1 2 t_A 1750 s 0. 1000. 1. 3 d_alpha 0.05 µm 0 100 0.005 4 orientation 1 0 100 1 5 sac 1 0 1 1 object ``` ``` python df.to_hdf('test.h5', 'df') ``` ``` --------------------------------------------------------------------------- TypeError Traceback (most recent call last) <ipython-input-19-ed2af0f74bd2> in <module>() ----> 1 df.to_hdf('test.h5', 'df') /home/hadim/local/virtualenvs/st3/lib/python3.3/site-packages/pandas/core/generic.py in to_hdf(self, path_or_buf, key, **kwargs) 486 """ activate the HDFStore """ 487 from pandas.io import pytables --> 488 return pytables.to_hdf(path_or_buf, key, self, **kwargs) 489 490 # install the indexerse /home/hadim/local/virtualenvs/st3/lib/python3.3/site-packages/pandas/io/pytables.py in to_hdf(path_or_buf, key, value, mode, complevel, complib, **kwargs) 156 if isinstance(path_or_buf, str): 157 with get_store(path_or_buf, mode=mode, complevel=complevel, complib=complib) as store: --> 158 f(store) 159 else: 160 f(path_or_buf) /home/hadim/local/virtualenvs/st3/lib/python3.3/site-packages/pandas/io/pytables.py in <lambda>(store) 152 def to_hdf(path_or_buf, key, value, mode=None, complevel=None, complib=None, **kwargs): 153 """ store this object, close it if we opened it """ --> 154 f = lambda store: store.put(key, value, **kwargs) 155 156 if isinstance(path_or_buf, str): /home/hadim/local/virtualenvs/st3/lib/python3.3/site-packages/pandas/io/pytables.py in put(self, key, value, table, append, **kwargs) 534 table 535 """ --> 536 self._write_to_group(key, value, table=table, append=append, **kwargs) 537 538 def remove(self, key, where=None, start=None, stop=None): /home/hadim/local/virtualenvs/st3/lib/python3.3/site-packages/pandas/io/pytables.py in _write_to_group(self, key, value, index, table, append, complib, **kwargs) 869 raise ValueError('Compression not supported on non-table') 870 --> 871 s.write(obj = value, append=append, complib=complib, **kwargs) 872 if s.is_table and index: 873 s.create_index(columns = index) /home/hadim/local/virtualenvs/st3/lib/python3.3/site-packages/pandas/io/pytables.py in write(self, obj, **kwargs) 1996 self.attrs.ndim = data.ndim 1997 for i, ax in enumerate(data.axes): -> 1998 self.write_index('axis%d' % i, ax) 1999 2000 # Supporting mixed-type DataFrame objects...nontrivial /home/hadim/local/virtualenvs/st3/lib/python3.3/site-packages/pandas/io/pytables.py in write_index(self, key, index) 1633 setattr(self.attrs, '%s_variety' % key, 'regular') 1634 converted = _convert_index(index).set_name('index') -> 1635 self.write_array(key, converted.values) 1636 node = getattr(self.group, key) 1637 node._v_attrs.kind = converted.kind /home/hadim/local/virtualenvs/st3/lib/python3.3/site-packages/pandas/io/pytables.py in write_array(self, key, value) 1805 self.write_array_empty(key, value) 1806 else: -> 1807 self._handle.createArray(self.group, key, value) 1808 1809 getattr(self.group, key)._v_attrs.transposed = transposed /home/hadim/local/virtualenvs/st3/lib/python3.3/site-packages/tables/_past.py in oldfunc(*args, **kwargs) 33 def oldfunc(*args, **kwargs): 34 warn(warnmsg, PendingDeprecationWarning, stacklevel=2) ---> 35 return obj(*args, **kwargs) 36 oldfunc.__doc__ = ( 37 obj.__doc__ or '') + "\n\n.. warning::\n\n " + warnmsg + "\n" /home/hadim/local/virtualenvs/st3/lib/python3.3/site-packages/tables/file.py in create_array(self, where, name, obj, title, byteorder, createparents, atom, shape) 890 parentnode = self._get_or_create_path(where, createparents) 891 return Array(parentnode, name, --> 892 obj=obj, title=title, byteorder=byteorder) 893 894 createArray = previous_api(create_array) /home/hadim/local/virtualenvs/st3/lib/python3.3/site-packages/tables/array.py in __init__(self, parentnode, name, obj, title, byteorder, _log, _atom) 185 # Ordinary arrays have no filters: leaf is created with default ones. 186 super(Array, self).__init__(parentnode, name, new, Filters(), --> 187 byteorder, _log) 188 189 def _g_create(self): /home/hadim/local/virtualenvs/st3/lib/python3.3/site-packages/tables/leaf.py in __init__(self, parentnode, name, new, filters, byteorder, _log) 260 # is a lazy property that automatically handles their loading. 261 --> 262 super(Leaf, self).__init__(parentnode, name, _log) 263 264 def __len__(self): /home/hadim/local/virtualenvs/st3/lib/python3.3/site-packages/tables/node.py in __init__(self, parentnode, name, _log) 264 # Create or open the node and get its object ID. 265 if new: --> 266 self._v_objectid = self._g_create() 267 else: 268 self._v_objectid = self._g_open() /home/hadim/local/virtualenvs/st3/lib/python3.3/site-packages/tables/array.py in _g_create(self) 202 # Raise an error in case of unsupported object 203 if nparr.dtype.kind in ['V', 'U', 'O']: # in void, unicode, object --> 204 raise TypeError("Array objects cannot currently deal with void, " 205 "unicode or object arrays") 206 TypeError: Array objects cannot currently deal with void, unicode or object arrays ``` PS: I also tried to play with .decode .encode, python codecs module without success PS2: I know storing this kind of data in DataFrame and h5 file may not be the best way, but that's another question (I prefer to have all my data in one single file if you ever ask)
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4256/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4256/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4257
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4257/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4257/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4257/events
https://github.com/pandas-dev/pandas/pull/4257
16,808,681
MDExOlB1bGxSZXF1ZXN0Njk1MzE5NA==
4,257
TST: no need for flavor testing in skip
{ "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" }
[]
closed
false
{ "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" }
[ { "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" } ]
{ "closed_at": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
1
2013-07-16T13:15:20Z
2014-06-28T10:41:40Z
2013-07-16T14:19:22Z
MEMBER
null
closes #4214, #4252, #4253
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4257/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4257/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4257.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4257", "merged_at": "2013-07-16T14:19:22Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4257.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4257" }
https://api.github.com/repos/pandas-dev/pandas/issues/4258
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4258/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4258/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4258/events
https://github.com/pandas-dev/pandas/pull/4258
16,809,406
MDExOlB1bGxSZXF1ZXN0Njk1MzU5OQ==
4,258
ENH: Dataframe isin2
{ "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.github.com/users/hayd/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/hayd", "id": 1931852, "login": "hayd", "node_id": "MDQ6VXNlcjE5MzE4NTI=", "organizations_url": "https://api.github.com/users/hayd/orgs", "received_events_url": "https://api.github.com/users/hayd/received_events", "repos_url": "https://api.github.com/users/hayd/repos", "site_admin": false, "starred_url": "https://api.github.com/users/hayd/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/hayd/subscriptions", "type": "User", "url": "https://api.github.com/users/hayd" }
[]
closed
false
null
[]
{ "closed_at": "2013-12-30T19:53:14Z", "closed_issues": 1076, "created_at": "2012-11-15T23:33:37Z", "creator": { "avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4", "events_url": "https://api.github.com/users/wesm/events{/privacy}", "followers_url": "https://api.github.com/users/wesm/followers", "following_url": "https://api.github.com/users/wesm/following{/other_user}", "gists_url": "https://api.github.com/users/wesm/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/wesm", "id": 329591, "login": "wesm", "node_id": "MDQ6VXNlcjMyOTU5MQ==", "organizations_url": "https://api.github.com/users/wesm/orgs", "received_events_url": "https://api.github.com/users/wesm/received_events", "repos_url": "https://api.github.com/users/wesm/repos", "site_admin": false, "starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/wesm/subscriptions", "type": "User", "url": "https://api.github.com/users/wesm" }, "description": "RC1 ANN went out on 2013-12-6: https://groups.google.com/forum/#!topic/pydata/OHutLByJvK0\r\nTwo weeks, clear all reported bugs then call it on 2013-12-20. \r\n(@y-p)\r\n\r\nsince we've had some bugs reported at a high enough rate, extending rc by one\r\nweek until 2013-12-27. \r\n(@y-p)\r\n\r\nBumping to clear debian sparc\r\n2013-12-30. \r\n(@y-p)", "due_on": "2013-12-30T08:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/18", "id": 213925, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18/labels", "node_id": "MDk6TWlsZXN0b25lMjEzOTI1", "number": 18, "open_issues": 0, "state": "closed", "title": "0.13", "updated_at": "2017-07-22T19:00:05Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18" }
12
2013-07-16T13:32:27Z
2014-06-20T16:16:29Z
2013-07-24T21:45:38Z
CONTRIBUTOR
null
fixes #4211, an alternative (on top of) #4237 DataFrame isin method: ``` In [11]: df = pd.DataFrame([['a', 'a', 'c'], ['b', 'e', 'a'], ['c', 'a', 'f']], columns=['A', 'A', 'B']) In [12]: df Out[12]: A A B 0 a a c 1 b e a 2 c a f In [13]: df.isin(['a']) Out[13]: A A B 0 True True False 1 False False True 2 False True False In [14]: df.isin({'A': ['a']}) Out[14]: A A B 0 True True False 1 False False False 2 False True False In [15]: df.isin({0: ['a']}, iloc=True) Out[15]: A A B 0 True False False 1 False False False 2 False False False ``` cc @TomAugspurger
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4258/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4258/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4258.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4258", "merged_at": "2013-07-24T21:45:38Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4258.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4258" }
https://api.github.com/repos/pandas-dev/pandas/issues/4259
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4259/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4259/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4259/events
https://github.com/pandas-dev/pandas/pull/4259
16,812,544
MDExOlB1bGxSZXF1ZXN0Njk1NTMyNA==
4,259
TST/BLD: add proper skips for bad bs4 version
{ "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" }
[]
closed
false
{ "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" }
[ { "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" } ]
{ "closed_at": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
4
2013-07-16T14:31:36Z
2014-07-16T08:19:30Z
2013-07-16T21:29:53Z
MEMBER
null
Make sure things are being properly skipped because of a bad bs4 version. Also adds a 4.2.0 known bad version of bs4 to 26 travis build so that we can verify that tests are being skipped when the version is bad.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4259/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4259/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4259.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4259", "merged_at": "2013-07-16T21:29:53Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4259.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4259" }
https://api.github.com/repos/pandas-dev/pandas/issues/4260
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4260/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4260/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4260/events
https://github.com/pandas-dev/pandas/issues/4260
16,813,496
MDU6SXNzdWUxNjgxMzQ5Ng==
4,260
HDF5 files not compatible between python 2 and 3 ?
{ "avatar_url": "https://avatars.githubusercontent.com/u/528003?v=4", "events_url": "https://api.github.com/users/hadim/events{/privacy}", "followers_url": "https://api.github.com/users/hadim/followers", "following_url": "https://api.github.com/users/hadim/following{/other_user}", "gists_url": "https://api.github.com/users/hadim/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/hadim", "id": 528003, "login": "hadim", "node_id": "MDQ6VXNlcjUyODAwMw==", "organizations_url": "https://api.github.com/users/hadim/orgs", "received_events_url": "https://api.github.com/users/hadim/received_events", "repos_url": "https://api.github.com/users/hadim/repos", "site_admin": false, "starred_url": "https://api.github.com/users/hadim/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/hadim/subscriptions", "type": "User", "url": "https://api.github.com/users/hadim" }
[]
closed
false
null
[]
null
10
2013-07-16T14:47:59Z
2013-07-16T16:27:25Z
2013-07-16T15:13:33Z
NONE
null
I have a problem loading a h5 file from python 3 to python 2 and vice versa. I can't post the code which generate h5 file because is part of a big project. I'll try to upload h5 file directly later. Here is the error when I load **FROM python 3.3** an h5 file created **BY python 2.7**: ``` Traceback (most recent call last): File "/home/hadim/local/virtualenvs/st3/src/master/build/lib.linux-x86_64-3.3/pandas/core/index.py", line 1539, in _get_level_number level = self.names.index(level) ValueError: 'side' is not in list During handling of the above exception, another exception occurred: Traceback (most recent call last): File "main.py", line 49, in <module> meta = SimuIO().read(results_file) File "../kt_simul/io/simuio.py", line 210, in read KD.spbL.traj = spbs.xs('A', level='side').values.T[0] File "/home/hadim/local/virtualenvs/st3/src/master/build/lib.linux-x86_64-3.3/pandas/core/frame.py", line 2335, in xs loc, new_ax = labels.get_loc_level(key, level=level) File "/home/hadim/local/virtualenvs/st3/src/master/build/lib.linux-x86_64-3.3/pandas/core/index.py", line 2322, in get_loc_level level = self._get_level_number(level) File "/home/hadim/local/virtualenvs/st3/src/master/build/lib.linux-x86_64-3.3/pandas/core/index.py", line 1542, in _get_level_number raise Exception('Level %s not found' % str(level)) Exception: Level side not found Closing remaining open files: simu.h5... done ``` Here is the error when I load **FROM python 2.7** an h5 file created **BY python 3.3**: ``` Traceback (most recent call last): File "main.py", line 49, in <module> meta = SimuIO().read(results_file) File "/home/hadim/.phd/dev/kt_simul/kt_simul/io/simuio.py", line 197, in read param_root = build_tree(store['params']) File "/home/hadim/local/virtualenvs/st/src/master/pandas/io/pytables.py", line 289, in __getitem__ return self.get(key) File "/home/hadim/local/virtualenvs/st/src/master/pandas/io/pytables.py", line 422, in get return self._read_group(group) File "/home/hadim/local/virtualenvs/st/src/master/pandas/io/pytables.py", line 930, in _read_group return s.read(**kwargs) File "/home/hadim/local/virtualenvs/st/src/master/pandas/io/pytables.py", line 2194, in read values = self.read_array('block%d_values' % i) File "/home/hadim/local/virtualenvs/st/src/master/pandas/io/pytables.py", line 1776, in read_array data = node[:] File "/home/hadim/local/virtualenvs/st/local/lib/python2.7/site-packages/tables/vlarray.py", line 661, in __getitem__ return self.read(start, stop, step) File "/home/hadim/local/virtualenvs/st/local/lib/python2.7/site-packages/tables/vlarray.py", line 801, in read outlistarr = [atom.fromarray(arr) for arr in listarr] File "/home/hadim/local/virtualenvs/st/local/lib/python2.7/site-packages/tables/atom.py", line 1151, in fromarray return cPickle.loads(array.tostring()) ValueError: unsupported pickle protocol: 3 Closing remaining open files: simu.h5... done ``` --- Version command run: ``` python import sys print(sys.version) import numpy print(numpy.__version__) import tables print(tables.__version__) import pandas print (pandas.__version__) ``` Python 3 shell: ``` 3.3.1 (default, Apr 17 2013, 22:30:32) [GCC 4.7.3] 1.7.1 3.0.0 0.12.0.dev-404dfab ``` Python 2 shell: ``` 2.7.4 (default, Apr 9 2013, 18:05:19) [GCC 4.7.3] 1.7.1 3.0.0 0.12.0.dev-4c2d050 ```
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4260/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4260/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4261
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4261/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4261/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4261/events
https://github.com/pandas-dev/pandas/issues/4261
16,814,051
MDU6SXNzdWUxNjgxNDA1MQ==
4,261
Print skipped tests at the end of travis runs
{ "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" }
[ { "color": "C4A000", "default": false, "description": "pandas testing functions or related to the test suite", "id": 127685, "name": "Testing", "node_id": "MDU6TGFiZWwxMjc2ODU=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Testing" }, { "color": "a2bca7", "default": false, "description": "Continuous Integration", "id": 48070600, "name": "CI", "node_id": "MDU6TGFiZWw0ODA3MDYwMA==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/CI" } ]
closed
false
{ "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" }
[ { "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" } ]
{ "closed_at": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
0
2013-07-16T14:57:04Z
2013-07-16T20:31:00Z
2013-07-16T20:31:00Z
MEMBER
null
Would be nice to know what is being skipped
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4261/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4261/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4262
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4262/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4262/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4262/events
https://github.com/pandas-dev/pandas/pull/4262
16,820,352
MDExOlB1bGxSZXF1ZXN0Njk1OTY3Ng==
4,262
BLD/TST/CI: add script to show skipped tests at the end of a build
{ "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" }
[]
closed
false
{ "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" }
[ { "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" } ]
{ "closed_at": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
14
2013-07-16T16:47:01Z
2014-07-16T08:19:31Z
2013-07-16T20:31:00Z
MEMBER
null
closes #4261.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4262/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4262/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4262.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4262", "merged_at": "2013-07-16T20:31:00Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4262.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4262" }
https://api.github.com/repos/pandas-dev/pandas/issues/4263
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4263/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4263/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4263/events
https://github.com/pandas-dev/pandas/issues/4263
16,822,607
MDU6SXNzdWUxNjgyMjYwNw==
4,263
python3.2 offsets.py: TypeError: Cannot cast ufunc subtract input from dtype('<M8[D]') to dtype('<M8[us]') with casting rule 'same_kind'
{ "avatar_url": "https://avatars.githubusercontent.com/u/39889?v=4", "events_url": "https://api.github.com/users/yarikoptic/events{/privacy}", "followers_url": "https://api.github.com/users/yarikoptic/followers", "following_url": "https://api.github.com/users/yarikoptic/following{/other_user}", "gists_url": "https://api.github.com/users/yarikoptic/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/yarikoptic", "id": 39889, "login": "yarikoptic", "node_id": "MDQ6VXNlcjM5ODg5", "organizations_url": "https://api.github.com/users/yarikoptic/orgs", "received_events_url": "https://api.github.com/users/yarikoptic/received_events", "repos_url": "https://api.github.com/users/yarikoptic/repos", "site_admin": false, "starred_url": "https://api.github.com/users/yarikoptic/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/yarikoptic/subscriptions", "type": "User", "url": "https://api.github.com/users/yarikoptic" }
[ { "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": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
23
2013-07-16T17:32:44Z
2013-07-17T14:01:17Z
2013-07-17T14:01:17Z
CONTRIBUTOR
null
in pandas.tseries.tests.test_daterange.TestCustomDateRange tests many fail at v0.12.0rc1-90-g4c2d050 ``` ====================================================================== ERROR: test_repr (pandas.tseries.tests.test_daterange.TestCustomDateRange) ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/yoh/deb/gits/pkg-exppsy/build-area/pandas-0.12.0~rc1+git90-g4c2d050/debian/tmp/usr/lib/python3/dist-packages/pandas/tseries/tests/test_daterange.py", line 383, in setUp self.rng = cdate_range(START, END) File "/home/yoh/deb/gits/pkg-exppsy/build-area/pandas-0.12.0~rc1+git90-g4c2d050/debian/tmp/usr/lib/python3/dist-packages/pandas/tseries/index.py", line 1791, in cdate_range tz=tz, normalize=normalize, name=name, **kwargs) File "/home/yoh/deb/gits/pkg-exppsy/build-area/pandas-0.12.0~rc1+git90-g4c2d050/debian/tmp/usr/lib/python3/dist-packages/pandas/tseries/index.py", line 180, in __new__ tz=tz, normalize=normalize) File "/home/yoh/deb/gits/pkg-exppsy/build-area/pandas-0.12.0~rc1+git90-g4c2d050/debian/tmp/usr/lib/python3/dist-packages/pandas/tseries/index.py", line 373, in _generate index = _generate_regular_range(start, end, periods, offset) File "/home/yoh/deb/gits/pkg-exppsy/build-area/pandas-0.12.0~rc1+git90-g4c2d050/debian/tmp/usr/lib/python3/dist-packages/pandas/tseries/index.py", line 1663, in _generate_regular_range dates = list(xdr) File "/home/yoh/deb/gits/pkg-exppsy/build-area/pandas-0.12.0~rc1+git90-g4c2d050/debian/tmp/usr/lib/python3/dist-packages/pandas/tseries/offsets.py", line 1363, in generate_range next_date = offset.apply(cur) File "/home/yoh/deb/gits/pkg-exppsy/build-area/pandas-0.12.0~rc1+git90-g4c2d050/debian/tmp/usr/lib/python3/dist-packages/pandas/tseries/offsets.py", line 453, in apply time = dt64 - day64 TypeError: Cannot cast ufunc subtract input from dtype('<M8[D]') to dtype('<M8[us]') with casting rule 'same_kind' ``` system info ``` INSTALLED VERSIONS ------------------ Python: 3.2.4.final.0 OS: Linux 3.2.0-4-amd64 #1 SMP Debian 3.2.41-2 x86_64 LC_ALL: None LANG: en_US Cython: 0.19 Numpy: 1.8.0.dev-Unknown Scipy: 0.10.1 statsmodels: Not installed patsy: Not installed scikits.timeseries: Not installed dateutil: 2.0 pytz: 2012c bottleneck: Not installed PyTables: Not Installed numexpr: 2.1 matplotlib: Not installed openpyxl: Not installed xlrd: Not installed xlwt: Not installed sqlalchemy: Not installed lxml: 3.2.0 bs4: 4.2.1 html5lib: Not installed ```
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4263/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4263/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4264
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4264/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4264/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4264/events
https://github.com/pandas-dev/pandas/issues/4264
16,828,023
MDU6SXNzdWUxNjgyODAyMw==
4,264
DataFrame.boxplot returns a dict instead of axes
{ "avatar_url": "https://avatars.githubusercontent.com/u/81476?v=4", "events_url": "https://api.github.com/users/fonnesbeck/events{/privacy}", "followers_url": "https://api.github.com/users/fonnesbeck/followers", "following_url": "https://api.github.com/users/fonnesbeck/following{/other_user}", "gists_url": "https://api.github.com/users/fonnesbeck/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/fonnesbeck", "id": 81476, "login": "fonnesbeck", "node_id": "MDQ6VXNlcjgxNDc2", "organizations_url": "https://api.github.com/users/fonnesbeck/orgs", "received_events_url": "https://api.github.com/users/fonnesbeck/received_events", "repos_url": "https://api.github.com/users/fonnesbeck/repos", "site_admin": false, "starred_url": "https://api.github.com/users/fonnesbeck/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/fonnesbeck/subscriptions", "type": "User", "url": "https://api.github.com/users/fonnesbeck" }
[ { "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": "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" } ]
closed
false
null
[]
{ "closed_at": "2014-05-30T12:17:57Z", "closed_issues": 755, "created_at": "2014-01-03T20:19:04Z", "creator": null, "description": "2014-02-3: previous version released", "due_on": "2014-05-31T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/24", "id": 526062, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/24/labels", "node_id": "MDk6TWlsZXN0b25lNTI2MDYy", "number": 24, "open_issues": 0, "state": "closed", "title": "0.14.0", "updated_at": "2016-12-29T13:57:13Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/24" }
14
2013-07-16T19:18:29Z
2014-05-16T20:26:42Z
2014-05-16T20:26:42Z
NONE
null
The docstring for `DataFRame.boxplot` claims that the method returns matplotlib axes: ``` Returns ------- ax : matplotlib.axes.AxesSubplot ``` In fact, it instead returns a dict: ``` In [71]: data.boxplot() Out[71]: {'boxes': [<matplotlib.lines.Line2D at 0x10e376110>, <matplotlib.lines.Line2D at 0x10e491350>, <matplotlib.lines.Line2D at 0x10e477590>, <matplotlib.lines.Line2D at 0x10eb0e7d0>, <matplotlib.lines.Line2D at 0x10eb3da10>, <matplotlib.lines.Line2D at 0x10eb7ec50>, <matplotlib.lines.Line2D at 0x10eb9be90>], 'caps': [<matplotlib.lines.Line2D at 0x10e3ab5d0>, <matplotlib.lines.Line2D at 0x10ebbc4d0>, <matplotlib.lines.Line2D at 0x10e357690>, ... <matplotlib.lines.Line2D at 0x10eb020d0>, <matplotlib.lines.Line2D at 0x10eb02710>, <matplotlib.lines.Line2D at 0x10eb0b310>, <matplotlib.lines.Line2D at 0x10eb0b950>, <matplotlib.lines.Line2D at 0x10eb9a550>, <matplotlib.lines.Line2D at 0x10eb9ab90>]} ``` Aside from being inconsistent with the documentation, this is inconvenient because I am no longer able to manipulate the axes of the plot directly. Using Pandas 0.12.0.dev-af85719
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4264/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4264/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4265
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4265/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4265/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4265/events
https://github.com/pandas-dev/pandas/issues/4265
16,834,170
MDU6SXNzdWUxNjgzNDE3MA==
4,265
test_bs4_version_fails: ImportError: html5lib not found please install it
{ "avatar_url": "https://avatars.githubusercontent.com/u/39889?v=4", "events_url": "https://api.github.com/users/yarikoptic/events{/privacy}", "followers_url": "https://api.github.com/users/yarikoptic/followers", "following_url": "https://api.github.com/users/yarikoptic/following{/other_user}", "gists_url": "https://api.github.com/users/yarikoptic/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/yarikoptic", "id": 39889, "login": "yarikoptic", "node_id": "MDQ6VXNlcjM5ODg5", "organizations_url": "https://api.github.com/users/yarikoptic/orgs", "received_events_url": "https://api.github.com/users/yarikoptic/received_events", "repos_url": "https://api.github.com/users/yarikoptic/repos", "site_admin": false, "starred_url": "https://api.github.com/users/yarikoptic/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/yarikoptic/subscriptions", "type": "User", "url": "https://api.github.com/users/yarikoptic" }
[ { "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": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
0
2013-07-16T21:12:16Z
2016-10-12T23:04:01Z
2013-07-16T22:02:44Z
CONTRIBUTOR
null
``` ====================================================================== ERROR: pandas.io.tests.test_html.test_bs4_version_fails ---------------------------------------------------------------------- Traceback (most recent call last): File "/usr/lib/python3/dist-packages/nose/case.py", line 198, in runTest self.test(*self.arg) File "/home/yoh/deb/gits/pkg-exppsy/pandas/debian/tmp/usr/lib/python3/dist-packages/pandas/io/tests/test_html.py", line 83, in test_bs4_version_fails flavor='bs4') File "/usr/lib/python3.2/unittest/case.py", line 557, in assertRaises callableObj(*args, **kwargs) File "/home/yoh/deb/gits/pkg-exppsy/pandas/debian/tmp/usr/lib/python3/dist-packages/pandas/io/html.py", line 906, in read_html attrs) File "/home/yoh/deb/gits/pkg-exppsy/pandas/debian/tmp/usr/lib/python3/dist-packages/pandas/io/html.py", line 765, in _parse parser = _parser_dispatch(flav) File "/home/yoh/deb/gits/pkg-exppsy/pandas/debian/tmp/usr/lib/python3/dist-packages/pandas/io/html.py", line 719, in _parser_dispatch raise ImportError("html5lib not found please install it") ImportError: html5lib not found please install it ``` on 4c2d050 there is no python3-html5lib on any debian system yet
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4265/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4265/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4266
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4266/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4266/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4266/events
https://github.com/pandas-dev/pandas/issues/4266
16,834,244
MDU6SXNzdWUxNjgzNDI0NA==
4,266
python3 test_value_counts_nunique : TypeError: unhashable type: 'NaTType'
{ "avatar_url": "https://avatars.githubusercontent.com/u/39889?v=4", "events_url": "https://api.github.com/users/yarikoptic/events{/privacy}", "followers_url": "https://api.github.com/users/yarikoptic/followers", "following_url": "https://api.github.com/users/yarikoptic/following{/other_user}", "gists_url": "https://api.github.com/users/yarikoptic/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/yarikoptic", "id": 39889, "login": "yarikoptic", "node_id": "MDQ6VXNlcjM5ODg5", "organizations_url": "https://api.github.com/users/yarikoptic/orgs", "received_events_url": "https://api.github.com/users/yarikoptic/received_events", "repos_url": "https://api.github.com/users/yarikoptic/repos", "site_admin": false, "starred_url": "https://api.github.com/users/yarikoptic/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/yarikoptic/subscriptions", "type": "User", "url": "https://api.github.com/users/yarikoptic" }
[ { "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": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
6
2013-07-16T21:13:37Z
2013-07-17T14:02:32Z
2013-07-17T14:02:32Z
CONTRIBUTOR
null
on sparc 4c2d050 ``` ====================================================================== ERROR: test_value_counts_nunique (pandas.tests.test_series.TestSeries) ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/yoh/deb/gits/pkg-exppsy/pandas/debian/tmp/usr/lib/python3/dist-packages/pandas/tests/test_series.py", line 2633, in test_value_counts_nunique result = s.value_counts() File "/home/yoh/deb/gits/pkg-exppsy/pandas/debian/tmp/usr/lib/python3/dist-packages/pandas/core/series.py", line 1422, in value_counts normalize=normalize) File "/home/yoh/deb/gits/pkg-exppsy/pandas/debian/tmp/usr/lib/python3/dist-packages/pandas/core/algorithms.py", line 186, in value_counts keys, counts = htable.value_count_object(values, mask) File "hashtable.pyx", line 935, in pandas.hashtable.value_count_object (pandas/hashtable.c:14937) TypeError: unhashable type: 'NaTType' ```
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4266/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4266/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4267
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4267/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4267/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4267/events
https://github.com/pandas-dev/pandas/pull/4267
16,835,066
MDExOlB1bGxSZXF1ZXN0Njk2Nzg5Nw==
4,267
TST: skip if no html5lib since bs4 needs it
{ "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" }
[]
closed
false
{ "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" }
[ { "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" } ]
{ "closed_at": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
0
2013-07-16T21:29:15Z
2014-07-05T02:36:23Z
2013-07-16T22:02:45Z
MEMBER
null
closes #4265.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4267/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4267/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4267.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4267", "merged_at": "2013-07-16T22:02:44Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4267.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4267" }
https://api.github.com/repos/pandas-dev/pandas/issues/4268
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4268/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4268/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4268/events
https://github.com/pandas-dev/pandas/issues/4268
16,836,033
MDU6SXNzdWUxNjgzNjAzMw==
4,268
put scikits.timeseries wheel back
{ "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" }
[ { "color": "C4A000", "default": false, "description": "pandas testing functions or related to the test suite", "id": 127685, "name": "Testing", "node_id": "MDU6TGFiZWwxMjc2ODU=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Testing" }, { "color": "a2bca7", "default": false, "description": "Continuous Integration", "id": 48070600, "name": "CI", "node_id": "MDU6TGFiZWw0ODA3MDYwMA==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/CI" } ]
closed
false
{ "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" }
[ { "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" } ]
{ "closed_at": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
0
2013-07-16T21:49:06Z
2013-07-16T22:17:54Z
2013-07-16T22:17:54Z
MEMBER
null
occasional timeout is starting to get annoying https://travis-ci.org/pydata/pandas/builds/9156655 i removed it for a previous pr that i shoudn't have
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4268/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4268/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4269
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4269/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4269/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4269/events
https://github.com/pandas-dev/pandas/pull/4269
16,836,109
MDExOlB1bGxSZXF1ZXN0Njk2ODUzMw==
4,269
CLN: define __hash__ directly for _NaT; needed for some builds on py3k
{ "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://api.github.com/users/jreback/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/jreback", "id": 953992, "login": "jreback", "node_id": "MDQ6VXNlcjk1Mzk5Mg==", "organizations_url": "https://api.github.com/users/jreback/orgs", "received_events_url": "https://api.github.com/users/jreback/received_events", "repos_url": "https://api.github.com/users/jreback/repos", "site_admin": false, "starred_url": "https://api.github.com/users/jreback/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jreback/subscriptions", "type": "User", "url": "https://api.github.com/users/jreback" }
[]
closed
false
null
[]
null
2
2013-07-16T21:50:48Z
2014-07-16T08:19:34Z
2013-07-16T22:13:25Z
CONTRIBUTOR
null
closes #4266
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4269/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4269/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4269.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4269", "merged_at": "2013-07-16T22:13:25Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4269.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4269" }
https://api.github.com/repos/pandas-dev/pandas/issues/4270
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4270/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4270/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4270/events
https://github.com/pandas-dev/pandas/pull/4270
16,836,525
MDExOlB1bGxSZXF1ZXN0Njk2ODc2NA==
4,270
TST/CI: add scikits.timeseries wheel back
{ "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" }
[]
closed
false
{ "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" }
[ { "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" } ]
{ "closed_at": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
0
2013-07-16T21:59:30Z
2014-06-16T09:24:22Z
2013-07-16T22:17:54Z
MEMBER
null
closes #4268
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4270/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4270/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4270.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4270", "merged_at": "2013-07-16T22:17:54Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4270.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4270" }
https://api.github.com/repos/pandas-dev/pandas/issues/4271
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4271/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4271/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4271/events
https://github.com/pandas-dev/pandas/pull/4271
16,838,040
MDExOlB1bGxSZXF1ZXN0Njk2OTU5NQ==
4,271
Easier sub-classing for Series and DataFrame
{ "avatar_url": "https://avatars.githubusercontent.com/u/1220613?v=4", "events_url": "https://api.github.com/users/carsonfarmer/events{/privacy}", "followers_url": "https://api.github.com/users/carsonfarmer/followers", "following_url": "https://api.github.com/users/carsonfarmer/following{/other_user}", "gists_url": "https://api.github.com/users/carsonfarmer/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/carsonfarmer", "id": 1220613, "login": "carsonfarmer", "node_id": "MDQ6VXNlcjEyMjA2MTM=", "organizations_url": "https://api.github.com/users/carsonfarmer/orgs", "received_events_url": "https://api.github.com/users/carsonfarmer/received_events", "repos_url": "https://api.github.com/users/carsonfarmer/repos", "site_admin": false, "starred_url": "https://api.github.com/users/carsonfarmer/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/carsonfarmer/subscriptions", "type": "User", "url": "https://api.github.com/users/carsonfarmer" }
[]
closed
false
null
[]
{ "closed_at": "2013-12-30T19:53:14Z", "closed_issues": 1076, "created_at": "2012-11-15T23:33:37Z", "creator": { "avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4", "events_url": "https://api.github.com/users/wesm/events{/privacy}", "followers_url": "https://api.github.com/users/wesm/followers", "following_url": "https://api.github.com/users/wesm/following{/other_user}", "gists_url": "https://api.github.com/users/wesm/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/wesm", "id": 329591, "login": "wesm", "node_id": "MDQ6VXNlcjMyOTU5MQ==", "organizations_url": "https://api.github.com/users/wesm/orgs", "received_events_url": "https://api.github.com/users/wesm/received_events", "repos_url": "https://api.github.com/users/wesm/repos", "site_admin": false, "starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/wesm/subscriptions", "type": "User", "url": "https://api.github.com/users/wesm" }, "description": "RC1 ANN went out on 2013-12-6: https://groups.google.com/forum/#!topic/pydata/OHutLByJvK0\r\nTwo weeks, clear all reported bugs then call it on 2013-12-20. \r\n(@y-p)\r\n\r\nsince we've had some bugs reported at a high enough rate, extending rc by one\r\nweek until 2013-12-27. \r\n(@y-p)\r\n\r\nBumping to clear debian sparc\r\n2013-12-30. \r\n(@y-p)", "due_on": "2013-12-30T08:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/18", "id": 213925, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18/labels", "node_id": "MDk6TWlsZXN0b25lMjEzOTI1", "number": 18, "open_issues": 0, "state": "closed", "title": "0.13", "updated_at": "2017-07-22T19:00:05Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18" }
20
2013-07-16T22:33:59Z
2014-07-02T17:36:34Z
2013-07-22T18:53:02Z
NONE
null
This is a relatively trival 'fix', which makes it easier to sub-class Pandas Series' and Dataframes. Basically, it makes more consistent use of `self._constructor` when constructing outputs from operations on Series' and DataFrames. For example, with these changes, this is now possible: ``` python In [1]: from pandas import Series In [2]: class MySeries(Series): def say_hello(self): print "hello!" In [3]: s = MySeries([1,2,3,4,5]) In [4]: s.say_hello() hello! In [5]: s.__class__ Out[5]: __main__.MySeries In [6]: s2 = s[1:3] In [7]: s2.__class__ Out[7]: __main__.MySeries In [8]: s2.say_hello() hello! ``` This addresses (to some extent) issues #1713 and #60 and the issues mentioned therein. After these changes, all nosetests continue to pass (except those that skip). Note: This is my first 'pull request', so be gentle!
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4271/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4271/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4271.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4271", "merged_at": null, "patch_url": "https://github.com/pandas-dev/pandas/pull/4271.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4271" }
https://api.github.com/repos/pandas-dev/pandas/issues/4272
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4272/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4272/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4272/events
https://github.com/pandas-dev/pandas/issues/4272
16,860,155
MDU6SXNzdWUxNjg2MDE1NQ==
4,272
BUG: dtypes on empty frame are incorrect
{ "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://api.github.com/users/jreback/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/jreback", "id": 953992, "login": "jreback", "node_id": "MDQ6VXNlcjk1Mzk5Mg==", "organizations_url": "https://api.github.com/users/jreback/orgs", "received_events_url": "https://api.github.com/users/jreback/received_events", "repos_url": "https://api.github.com/users/jreback/repos", "site_admin": false, "starred_url": "https://api.github.com/users/jreback/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jreback/subscriptions", "type": "User", "url": "https://api.github.com/users/jreback" }
[ { "color": "e10c02", "default": false, "description": null, "id": 76811, "name": "Bug", "node_id": "MDU6TGFiZWw3NjgxMQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug" }, { "color": "e102d8", "default": false, "description": "Unexpected or buggy dtype conversions", "id": 31404521, "name": "Dtype Conversions", "node_id": "MDU6TGFiZWwzMTQwNDUyMQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Dtype%20Conversions" }, { "color": "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" } ]
closed
false
null
[]
{ "closed_at": "2013-12-30T19:53:14Z", "closed_issues": 1076, "created_at": "2012-11-15T23:33:37Z", "creator": { "avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4", "events_url": "https://api.github.com/users/wesm/events{/privacy}", "followers_url": "https://api.github.com/users/wesm/followers", "following_url": "https://api.github.com/users/wesm/following{/other_user}", "gists_url": "https://api.github.com/users/wesm/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/wesm", "id": 329591, "login": "wesm", "node_id": "MDQ6VXNlcjMyOTU5MQ==", "organizations_url": "https://api.github.com/users/wesm/orgs", "received_events_url": "https://api.github.com/users/wesm/received_events", "repos_url": "https://api.github.com/users/wesm/repos", "site_admin": false, "starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/wesm/subscriptions", "type": "User", "url": "https://api.github.com/users/wesm" }, "description": "RC1 ANN went out on 2013-12-6: https://groups.google.com/forum/#!topic/pydata/OHutLByJvK0\r\nTwo weeks, clear all reported bugs then call it on 2013-12-20. \r\n(@y-p)\r\n\r\nsince we've had some bugs reported at a high enough rate, extending rc by one\r\nweek until 2013-12-27. \r\n(@y-p)\r\n\r\nBumping to clear debian sparc\r\n2013-12-30. \r\n(@y-p)", "due_on": "2013-12-30T08:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/18", "id": 213925, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18/labels", "node_id": "MDk6TWlsZXN0b25lMjEzOTI1", "number": 18, "open_issues": 0, "state": "closed", "title": "0.13", "updated_at": "2017-07-22T19:00:05Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18" }
7
2013-07-17T11:43:33Z
2013-09-29T21:22:26Z
2013-09-29T21:22:26Z
CONTRIBUTOR
null
``` In [1]: df = DataFrame(columns=list('xyz')) In [2]: df Out[2]: Empty DataFrame Columns: [x, y, z] Index: [] In [3]: df.dtypes Out[3]: x NaN y NaN z NaN dtype: float64 In [5]: df['x'].dtype Out[5]: dtype('O') ``` expected ``` In [11]: Series(dict([ (s,np.dtype('O')) for s in list('xyz')])) Out[11]: x object y object z object dtype: object ```
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4272/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4272/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4273
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4273/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4273/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4273/events
https://github.com/pandas-dev/pandas/issues/4273
16,860,501
MDU6SXNzdWUxNjg2MDUwMQ==
4,273
BUG/ER: HDFStore write with empty frame reports an error (rather than suceeding)
{ "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://api.github.com/users/jreback/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/jreback", "id": 953992, "login": "jreback", "node_id": "MDQ6VXNlcjk1Mzk5Mg==", "organizations_url": "https://api.github.com/users/jreback/orgs", "received_events_url": "https://api.github.com/users/jreback/received_events", "repos_url": "https://api.github.com/users/jreback/repos", "site_admin": false, "starred_url": "https://api.github.com/users/jreback/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jreback/subscriptions", "type": "User", "url": "https://api.github.com/users/jreback" }
[ { "color": "e10c02", "default": false, "description": null, "id": 76811, "name": "Bug", "node_id": "MDU6TGFiZWw3NjgxMQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug" }, { "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" }, { "color": "5319e7", "default": false, "description": "read_hdf, HDFStore", "id": 47229190, "name": "IO HDF5", "node_id": "MDU6TGFiZWw0NzIyOTE5MA==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20HDF5" } ]
closed
false
null
[]
{ "closed_at": "2013-12-30T19:53:14Z", "closed_issues": 1076, "created_at": "2012-11-15T23:33:37Z", "creator": { "avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4", "events_url": "https://api.github.com/users/wesm/events{/privacy}", "followers_url": "https://api.github.com/users/wesm/followers", "following_url": "https://api.github.com/users/wesm/following{/other_user}", "gists_url": "https://api.github.com/users/wesm/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/wesm", "id": 329591, "login": "wesm", "node_id": "MDQ6VXNlcjMyOTU5MQ==", "organizations_url": "https://api.github.com/users/wesm/orgs", "received_events_url": "https://api.github.com/users/wesm/received_events", "repos_url": "https://api.github.com/users/wesm/repos", "site_admin": false, "starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/wesm/subscriptions", "type": "User", "url": "https://api.github.com/users/wesm" }, "description": "RC1 ANN went out on 2013-12-6: https://groups.google.com/forum/#!topic/pydata/OHutLByJvK0\r\nTwo weeks, clear all reported bugs then call it on 2013-12-20. \r\n(@y-p)\r\n\r\nsince we've had some bugs reported at a high enough rate, extending rc by one\r\nweek until 2013-12-27. \r\n(@y-p)\r\n\r\nBumping to clear debian sparc\r\n2013-12-30. \r\n(@y-p)", "due_on": "2013-12-30T08:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/18", "id": 213925, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18/labels", "node_id": "MDk6TWlsZXN0b25lMjEzOTI1", "number": 18, "open_issues": 0, "state": "closed", "title": "0.13", "updated_at": "2017-07-22T19:00:05Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18" }
3
2013-07-17T11:54:12Z
2013-08-23T14:33:19Z
2013-08-23T14:33:19Z
CONTRIBUTOR
null
writing to an HDFStore with an empty-frame with invalid dtypes raises, maybe should just proceed (or is it the dtypes call that is actually wrong here: see #4272) came up in this question: http://stackoverflow.com/questions/17691912/problems-with-merging-on-disk-tables-with-millions-of-rows/17698740#17698740 ``` In [26]: df = DataFrame(randn(10,2),columns=list('AB')) In [28]: df['C'] = 'foo' In [33]: df.to_hdf('test.h5','df',mode='w',table=True) In [35]: pd.read_hdf('test.h5','df') Out[35]: A B C 0 -1.123712 -1.146515 foo 1 0.921705 1.800419 foo 2 -0.769236 -0.553307 foo 3 -0.747601 -1.783439 foo 4 -1.110340 1.601026 foo 5 0.743869 -2.135140 foo 6 1.033699 2.028479 foo 7 -0.755478 -1.060223 foo 8 0.079326 -2.671624 foo 9 -2.262756 0.406850 foo In [36]: pd.read_hdf('test.h5','df').dtypes Out[36]: A float64 B float64 C object dtype: object In [37]: df[df.C=='bar'] Out[37]: Empty DataFrame Columns: [A, B, C] Index: [] In [38]: df[df.C=='bar'].dtypes Out[38]: A NaN B NaN C NaN dtype: float64 In [39]: df[df.C=='bar'].to_hdf('test.h5','df',append=True) TypeError: Cannot serialize the column [C] because its data contents are [empty] object 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/4273/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4273/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4274
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4274/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4274/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4274/events
https://github.com/pandas-dev/pandas/issues/4274
16,861,337
MDU6SXNzdWUxNjg2MTMzNw==
4,274
python3.2 sparc test_frame_from_json_to_json: AssertionError: 0.0 != \U30000000\U2e000000\U30000000
{ "avatar_url": "https://avatars.githubusercontent.com/u/39889?v=4", "events_url": "https://api.github.com/users/yarikoptic/events{/privacy}", "followers_url": "https://api.github.com/users/yarikoptic/followers", "following_url": "https://api.github.com/users/yarikoptic/following{/other_user}", "gists_url": "https://api.github.com/users/yarikoptic/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/yarikoptic", "id": 39889, "login": "yarikoptic", "node_id": "MDQ6VXNlcjM5ODg5", "organizations_url": "https://api.github.com/users/yarikoptic/orgs", "received_events_url": "https://api.github.com/users/yarikoptic/received_events", "repos_url": "https://api.github.com/users/yarikoptic/repos", "site_admin": false, "starred_url": "https://api.github.com/users/yarikoptic/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/yarikoptic/subscriptions", "type": "User", "url": "https://api.github.com/users/yarikoptic" }
[ { "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": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
5
2013-07-17T12:18:46Z
2013-08-21T21:13:08Z
2013-07-20T01:40:54Z
CONTRIBUTOR
null
Testing d070a1f ``` ====================================================================== FAIL: test_frame_from_json_to_json (pandas.io.tests.test_json.test_pandas.TestPandasContainer) ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/yoh/deb/gits/pkg-exppsy/pandas/debian/tmp/usr/lib/python3/dist-packages/pandas/io/tests/test_json/test_pandas.py", line 149, in test_frame_from_json_to_json raise_ok=ValueError) File "/home/yoh/deb/gits/pkg-exppsy/pandas/debian/tmp/usr/lib/python3/dist-packages/pandas/io/tests/test_json/test_pandas.py", line 111, in _check_all_orients _check_orient(df, "index", dtype=dtype, convert_axes=False) File "/home/yoh/deb/gits/pkg-exppsy/pandas/debian/tmp/usr/lib/python3/dist-packages/pandas/io/tests/test_json/test_pandas.py", line 96, in _check_orient assert_frame_equal(df, unser, check_less_precise=False, check_dtype=check_dtype) File "/home/yoh/deb/gits/pkg-exppsy/pandas/debian/tmp/usr/lib/python3/dist-packages/pandas/util/testing.py", line 239, in assert_frame_equal check_less_precise=check_less_precise) File "/home/yoh/deb/gits/pkg-exppsy/pandas/debian/tmp/usr/lib/python3/dist-packages/pandas/util/testing.py", line 198, in assert_series_equal assert_almost_equal(left.values, right.values, check_less_precise) File "/home/yoh/deb/gits/pkg-exppsy/pandas/debian/tmp/usr/lib/python3/dist-packages/pandas/util/testing.py", line 142, in assert_almost_equal assert_almost_equal(a[i], b[i], check_less_precise) File "/home/yoh/deb/gits/pkg-exppsy/pandas/debian/tmp/usr/lib/python3/dist-packages/pandas/util/testing.py", line 130, in assert_almost_equal assert a == b, "%s != %s" % (a, b) AssertionError: 0.0 != \U30000000\U2e000000\U30000000 ``` all previously reported sparc issues seems to be silent now
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4274/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4274/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4275
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4275/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4275/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4275/events
https://github.com/pandas-dev/pandas/issues/4275
16,861,473
MDU6SXNzdWUxNjg2MTQ3Mw==
4,275
python3.2: test_html ImportError: html5lib not found please install it
{ "avatar_url": "https://avatars.githubusercontent.com/u/39889?v=4", "events_url": "https://api.github.com/users/yarikoptic/events{/privacy}", "followers_url": "https://api.github.com/users/yarikoptic/followers", "following_url": "https://api.github.com/users/yarikoptic/following{/other_user}", "gists_url": "https://api.github.com/users/yarikoptic/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/yarikoptic", "id": 39889, "login": "yarikoptic", "node_id": "MDQ6VXNlcjM5ODg5", "organizations_url": "https://api.github.com/users/yarikoptic/orgs", "received_events_url": "https://api.github.com/users/yarikoptic/received_events", "repos_url": "https://api.github.com/users/yarikoptic/repos", "site_admin": false, "starred_url": "https://api.github.com/users/yarikoptic/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/yarikoptic/subscriptions", "type": "User", "url": "https://api.github.com/users/yarikoptic" }
[ { "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": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
1
2013-07-17T12:22:30Z
2016-10-12T23:04:01Z
2013-07-17T14:37:44Z
CONTRIBUTOR
null
Now (d070a1f) that #4265 fixed, all the test_html tests fail similarly ``` ====================================================================== ERROR: test_bad_url_protocol (pandas.io.tests.test_html.TestReadHtmlBase) ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/yoh/deb/gits/pkg-exppsy/build-area/pandas-0.12.0~rc1+git101-gd070a1f/debian/tmp/usr/lib/python3/dist-packages/pandas/io/tests/test_html.py", line 290, in test_bad_url_protocol '.*Water.*') File "/usr/lib/python3.2/unittest/case.py", line 557, in assertRaises callableObj(*args, **kwargs) File "/home/yoh/deb/gits/pkg-exppsy/build-area/pandas-0.12.0~rc1+git101-gd070a1f/debian/tmp/usr/lib/python3/dist-packages/pandas/io/tests/test_html.py", line 91, in run_read_html return read_html(*args, **kwargs) File "/home/yoh/deb/gits/pkg-exppsy/build-area/pandas-0.12.0~rc1+git101-gd070a1f/debian/tmp/usr/lib/python3/dist-packages/pandas/io/html.py", line 906, in read_html attrs) File "/home/yoh/deb/gits/pkg-exppsy/build-area/pandas-0.12.0~rc1+git101-gd070a1f/debian/tmp/usr/lib/python3/dist-packages/pandas/io/html.py", line 765, in _parse parser = _parser_dispatch(flav) File "/home/yoh/deb/gits/pkg-exppsy/build-area/pandas-0.12.0~rc1+git101-gd070a1f/debian/tmp/usr/lib/python3/dist-packages/pandas/io/html.py", line 719, in _parser_dispatch raise ImportError("html5lib not found please install it") ImportError: html5lib not found please install it ```
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4275/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4275/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4276
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4276/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4276/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4276/events
https://github.com/pandas-dev/pandas/pull/4276
16,864,499
MDExOlB1bGxSZXF1ZXN0Njk4MzYyNg==
4,276
TST: properly skip html5lib
{ "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" }
[]
closed
false
{ "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" }
[ { "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" } ]
{ "closed_at": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
0
2013-07-17T13:34:28Z
2014-06-16T19:19:22Z
2013-07-17T14:37:44Z
MEMBER
null
closes #4275
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4276/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4276/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4276.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4276", "merged_at": "2013-07-17T14:37:44Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4276.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4276" }
https://api.github.com/repos/pandas-dev/pandas/issues/4277
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4277/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4277/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4277/events
https://github.com/pandas-dev/pandas/issues/4277
16,864,670
MDU6SXNzdWUxNjg2NDY3MA==
4,277
Remove html5lib from one of the FULL_DEPS builds
{ "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" }
[]
closed
false
{ "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" }
[ { "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" } ]
{ "closed_at": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
0
2013-07-17T13:37:44Z
2013-07-17T20:26:01Z
2013-07-17T20:26:01Z
MEMBER
null
To make sure that its tests are being skipped correctly
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4277/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4277/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4278
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4278/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4278/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4278/events
https://github.com/pandas-dev/pandas/pull/4278
16,864,815
MDExOlB1bGxSZXF1ZXN0Njk4Mzc4Ng==
4,278
TST/CI: remove html5lib from 3.2 build
{ "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" }
[]
closed
false
{ "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" }
[ { "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" } ]
{ "closed_at": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
0
2013-07-17T13:41:04Z
2014-07-16T08:19:39Z
2013-07-17T20:26:01Z
MEMBER
null
closes #4277
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4278/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4278/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4278.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4278", "merged_at": "2013-07-17T20:26:01Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4278.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4278" }
https://api.github.com/repos/pandas-dev/pandas/issues/4279
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4279/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4279/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4279/events
https://github.com/pandas-dev/pandas/issues/4279
16,882,854
MDU6SXNzdWUxNjg4Mjg1NA==
4,279
BUG/ENH: should idxmax/idxmin work on object types?
{ "avatar_url": "https://avatars.githubusercontent.com/u/296164?v=4", "events_url": "https://api.github.com/users/jseabold/events{/privacy}", "followers_url": "https://api.github.com/users/jseabold/followers", "following_url": "https://api.github.com/users/jseabold/following{/other_user}", "gists_url": "https://api.github.com/users/jseabold/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/jseabold", "id": 296164, "login": "jseabold", "node_id": "MDQ6VXNlcjI5NjE2NA==", "organizations_url": "https://api.github.com/users/jseabold/orgs", "received_events_url": "https://api.github.com/users/jseabold/received_events", "repos_url": "https://api.github.com/users/jseabold/repos", "site_admin": false, "starred_url": "https://api.github.com/users/jseabold/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jseabold/subscriptions", "type": "User", "url": "https://api.github.com/users/jseabold" }
[ { "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": "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": "547c03", "default": false, "description": "sum, mean, min, max, etc.", "id": 2365504383, "name": "Reduction Operations", "node_id": "MDU6TGFiZWwyMzY1NTA0Mzgz", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Reduction%20Operations" } ]
open
false
null
[]
{ "closed_at": null, "closed_issues": 278, "created_at": "2013-01-06T03:02:01Z", "creator": { "avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4", "events_url": "https://api.github.com/users/wesm/events{/privacy}", "followers_url": "https://api.github.com/users/wesm/followers", "following_url": "https://api.github.com/users/wesm/following{/other_user}", "gists_url": "https://api.github.com/users/wesm/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/wesm", "id": 329591, "login": "wesm", "node_id": "MDQ6VXNlcjMyOTU5MQ==", "organizations_url": "https://api.github.com/users/wesm/orgs", "received_events_url": "https://api.github.com/users/wesm/received_events", "repos_url": "https://api.github.com/users/wesm/repos", "site_admin": false, "starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/wesm/subscriptions", "type": "User", "url": "https://api.github.com/users/wesm" }, "description": "Milestone for filing things away that may be reached someday (at which point such issues should be moved to the appropriate release milestone)", "due_on": "2022-12-31T08:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/20", "id": 239227, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/20/labels", "node_id": "MDk6TWlsZXN0b25lMjM5MjI3", "number": 20, "open_issues": 108, "state": "open", "title": "Someday", "updated_at": "2021-08-08T01:48:22Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/20" }
5
2013-07-17T19:06:40Z
2021-10-29T01:55:27Z
null
CONTRIBUTOR
null
- `numeric_only=True` flag to `min,max,idxmax,idxmin` to select out numeric only - fix `idxmax` on object dtypes (related to #4147) related is #6287 Just happened to come across this. Related to #2982 ``` df = pd.DataFrame([["zimm", 2.5],["biff", 1.],["bid", 12.]]) ``` This is fine (I was surprised it worked for objects) ``` df.max() ``` This falls down ``` df.idxmax() ``` I'd be fine if there's a strong performance reason not to support this, though it would be nice to not return an error at least. Maybe a stop-gap solution is to only return a solution for numeric types similar to the quantiles method.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4279/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4279/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4280
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4280/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4280/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4280/events
https://github.com/pandas-dev/pandas/issues/4280
16,884,808
MDU6SXNzdWUxNjg4NDgwOA==
4,280
MemoryError when using .loc or .ix
{ "avatar_url": "https://avatars.githubusercontent.com/u/542195?v=4", "events_url": "https://api.github.com/users/BAM-BAM-BAM/events{/privacy}", "followers_url": "https://api.github.com/users/BAM-BAM-BAM/followers", "following_url": "https://api.github.com/users/BAM-BAM-BAM/following{/other_user}", "gists_url": "https://api.github.com/users/BAM-BAM-BAM/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/BAM-BAM-BAM", "id": 542195, "login": "BAM-BAM-BAM", "node_id": "MDQ6VXNlcjU0MjE5NQ==", "organizations_url": "https://api.github.com/users/BAM-BAM-BAM/orgs", "received_events_url": "https://api.github.com/users/BAM-BAM-BAM/received_events", "repos_url": "https://api.github.com/users/BAM-BAM-BAM/repos", "site_admin": false, "starred_url": "https://api.github.com/users/BAM-BAM-BAM/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/BAM-BAM-BAM/subscriptions", "type": "User", "url": "https://api.github.com/users/BAM-BAM-BAM" }
[ { "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 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
[]
{ "closed_at": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
11
2013-07-17T19:33:22Z
2013-07-18T03:15:42Z
2013-07-18T03:00:27Z
NONE
null
<pre> from pandas import * df = read_csv(open('mydata.csv.gz', 'r'), compression='gzip', index_col=False) df = df[(df.land != 1)] print df # <class 'pandas.core.frame.DataFrame'> # Int64Index: 977579 entries, 0 to 1100398 # Data columns (total 89 columns): # <snip> # sample 100,000 rows, only use some of the columns rows = np.random.choice(df.index.values, 100000) keep_cols = ['sq_ft', 'zip', 'year', 'bathrooms', 'bedrooms', 'floors'] sampled_df = df.ix[rows, keep_cols] sampled_df.loc[sampled_df.year.notnull()].year # works fine sampled_df.loc[sampled_df.year.notnull(),['year']] # MemoryError --------------------------------------------------------------------------- MemoryError Traceback (most recent call last) <ipython-input-114-f9c1e2bc7b58> in <module>() 1 #sampled_df.loc[sampled_df['year'].notnull(),['year']] 2 sampled_df.loc[sampled_df.year.notnull()].year ----> 3 sampled_df.loc[sampled_df.year.notnull(),['year']] /home/jprior/Scratch/VENV1/lib/python2.7/site-packages/pandas/core/indexing.pyc in __getitem__(self, key) 695 def __getitem__(self, key): 696 if type(key) is tuple: --> 697 return self._getitem_tuple(key) 698 else: 699 return self._getitem_axis(key, axis=0) /home/jprior/Scratch/VENV1/lib/python2.7/site-packages/pandas/core/indexing.pyc in _getitem_tuple(self, tup) 260 # ugly hack for GH #836 261 if self._multi_take_opportunity(tup): --> 262 return self._multi_take(tup) 263 264 # no shortcut needed /home/jprior/Scratch/VENV1/lib/python2.7/site-packages/pandas/core/indexing.pyc in _multi_take(self, tup) 300 index = self._convert_for_reindex(tup[0], axis=0) 301 columns = self._convert_for_reindex(tup[1], axis=1) --> 302 return self.obj.reindex(index=index, columns=columns) 303 elif isinstance(self.obj, Panel4D): 304 conv = [self._convert_for_reindex(x, axis=i) /home/jprior/Scratch/VENV1/lib/python2.7/site-packages/pandas/core/frame.pyc in reindex(self, index, columns, method, level, fill_value, limit, copy, takeable) 2623 if index is not None: 2624 frame = frame._reindex_index(index, method, copy, level, -> 2625 fill_value, limit, takeable) 2626 2627 return frame /home/jprior/Scratch/VENV1/lib/python2.7/site-packages/pandas/core/frame.pyc in _reindex_index(self, new_index, method, copy, level, fill_value, limit, takeable) 2703 new_index, indexer = self.index.reindex(new_index, method, level, 2704 limit=limit, copy_if_needed=True, -> 2705 takeable=takeable) 2706 return self._reindex_with_indexers(new_index, indexer, None, None, 2707 copy, fill_value) /home/jprior/Scratch/VENV1/lib/python2.7/site-packages/pandas/core/index.pyc in reindex(self, target, method, level, limit, copy_if_needed, takeable) 930 raise ValueError("cannot reindex a non-unique index " 931 "with a method or limit") --> 932 indexer, _ = self.get_indexer_non_unique(target) 933 934 return target, indexer /home/jprior/Scratch/VENV1/lib/python2.7/site-packages/pandas/core/index.pyc in get_indexer_non_unique(self, target, **kwargs) 843 tgt_values = target.values 844 --> 845 indexer, missing = self._engine.get_indexer_non_unique(tgt_values) 846 return Index(indexer), missing 847 /home/jprior/Scratch/VENV1/lib/python2.7/site-packages/pandas/index.so in pandas.index.IndexEngine.get_indexer_non_unique (pandas/index.c:5049)() MemoryError: </pre> Sorry I haven't figured out how to reproduce the error with a toy example.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4280/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4280/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4281
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4281/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4281/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4281/events
https://github.com/pandas-dev/pandas/pull/4281
16,898,820
MDExOlB1bGxSZXF1ZXN0NzAwMTk5NQ==
4,281
BUG: fix data.py regression
{ "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" }
[]
closed
false
{ "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" }
[ { "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" } ]
{ "closed_at": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
5
2013-07-18T00:59:57Z
2014-06-13T10:27:53Z
2013-07-18T03:15:21Z
MEMBER
null
get_data_famafrench was not returning any data because of an incorrect slice and read + splitlines != readlines for zipfiles
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4281/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4281/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4281.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4281", "merged_at": "2013-07-18T03:15:21Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4281.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4281" }
https://api.github.com/repos/pandas-dev/pandas/issues/4282
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4282/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4282/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4282/events
https://github.com/pandas-dev/pandas/pull/4282
16,900,343
MDExOlB1bGxSZXF1ZXN0NzAwMjc5Mw==
4,282
TST: add basic clipboard test
{ "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" }
[]
closed
false
{ "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" }
[ { "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://api.github.com/users/cpcloud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/cpcloud", "id": 417981, "login": "cpcloud", "node_id": "MDQ6VXNlcjQxNzk4MQ==", "organizations_url": "https://api.github.com/users/cpcloud/orgs", "received_events_url": "https://api.github.com/users/cpcloud/received_events", "repos_url": "https://api.github.com/users/cpcloud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/cpcloud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cpcloud/subscriptions", "type": "User", "url": "https://api.github.com/users/cpcloud" } ]
{ "closed_at": "2013-12-30T19:53:14Z", "closed_issues": 1076, "created_at": "2012-11-15T23:33:37Z", "creator": { "avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4", "events_url": "https://api.github.com/users/wesm/events{/privacy}", "followers_url": "https://api.github.com/users/wesm/followers", "following_url": "https://api.github.com/users/wesm/following{/other_user}", "gists_url": "https://api.github.com/users/wesm/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/wesm", "id": 329591, "login": "wesm", "node_id": "MDQ6VXNlcjMyOTU5MQ==", "organizations_url": "https://api.github.com/users/wesm/orgs", "received_events_url": "https://api.github.com/users/wesm/received_events", "repos_url": "https://api.github.com/users/wesm/repos", "site_admin": false, "starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/wesm/subscriptions", "type": "User", "url": "https://api.github.com/users/wesm" }, "description": "RC1 ANN went out on 2013-12-6: https://groups.google.com/forum/#!topic/pydata/OHutLByJvK0\r\nTwo weeks, clear all reported bugs then call it on 2013-12-20. \r\n(@y-p)\r\n\r\nsince we've had some bugs reported at a high enough rate, extending rc by one\r\nweek until 2013-12-27. \r\n(@y-p)\r\n\r\nBumping to clear debian sparc\r\n2013-12-30. \r\n(@y-p)", "due_on": "2013-12-30T08:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/18", "id": 213925, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18/labels", "node_id": "MDk6TWlsZXN0b25lMjEzOTI1", "number": 18, "open_issues": 0, "state": "closed", "title": "0.13", "updated_at": "2017-07-22T19:00:05Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18" }
33
2013-07-18T02:10:08Z
2014-06-18T01:09:04Z
2013-07-25T22:06:17Z
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/4282/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4282/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4282.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4282", "merged_at": "2013-07-25T22:06:17Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4282.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4282" }
https://api.github.com/repos/pandas-dev/pandas/issues/4283
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4283/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4283/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4283/events
https://github.com/pandas-dev/pandas/pull/4283
16,901,025
MDExOlB1bGxSZXF1ZXN0NzAwMzEzNw==
4,283
BUG: Fixed non-unique indexing memory allocation issue with .ix/.loc (GH4280)
{ "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://api.github.com/users/jreback/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/jreback", "id": 953992, "login": "jreback", "node_id": "MDQ6VXNlcjk1Mzk5Mg==", "organizations_url": "https://api.github.com/users/jreback/orgs", "received_events_url": "https://api.github.com/users/jreback/received_events", "repos_url": "https://api.github.com/users/jreback/repos", "site_admin": false, "starred_url": "https://api.github.com/users/jreback/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jreback/subscriptions", "type": "User", "url": "https://api.github.com/users/jreback" }
[]
closed
false
null
[]
{ "closed_at": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
0
2013-07-18T02:41:10Z
2014-07-09T17:56:10Z
2013-07-18T03:00:27Z
CONTRIBUTOR
null
closes #4280 Had a weird memory allocation scheme (that's why is a _scheme_!) when determining a non-unique indexer. Fixed to use a dynamic schema ``` In [1]: columns = list('ABCDEFG') def gen_test(l,l2): return pd.concat([ DataFrame(randn(l,len(columns)),index=range(l),columns=columns), DataFrame(np.ones((l2,len(columns))),index=[0]*l2,columns=columns) ]) In [3]: df = gen_test(900000,100000) In [5]: mask = np.arange(100000) In [6]: df Out[6]: <class 'pandas.core.frame.DataFrame'> Int64Index: 1000000 entries, 0 to 0 Data columns (total 7 columns): A 1000000 non-null values B 1000000 non-null values C 1000000 non-null values D 1000000 non-null values E 1000000 non-null values F 1000000 non-null values G 1000000 non-null values dtypes: float64(7) In [7]: df.loc[mask] Out[7]: <class 'pandas.core.frame.DataFrame'> Int64Index: 200000 entries, 0 to 99999 Data columns (total 7 columns): A 200000 non-null values B 200000 non-null values C 200000 non-null values D 200000 non-null values E 200000 non-null values F 200000 non-null values G 200000 non-null values dtypes: float64(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/4283/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4283/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4283.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4283", "merged_at": "2013-07-18T03:00:27Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4283.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4283" }
https://api.github.com/repos/pandas-dev/pandas/issues/4284
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4284/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4284/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4284/events
https://github.com/pandas-dev/pandas/pull/4284
16,913,235
MDExOlB1bGxSZXF1ZXN0NzAwOTQ5Nw==
4,284
TST: ujson dont force endianness #4274
{ "avatar_url": "https://avatars.githubusercontent.com/u/107748?v=4", "events_url": "https://api.github.com/users/Komnomnomnom/events{/privacy}", "followers_url": "https://api.github.com/users/Komnomnomnom/followers", "following_url": "https://api.github.com/users/Komnomnomnom/following{/other_user}", "gists_url": "https://api.github.com/users/Komnomnomnom/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/Komnomnomnom", "id": 107748, "login": "Komnomnomnom", "node_id": "MDQ6VXNlcjEwNzc0OA==", "organizations_url": "https://api.github.com/users/Komnomnomnom/orgs", "received_events_url": "https://api.github.com/users/Komnomnomnom/received_events", "repos_url": "https://api.github.com/users/Komnomnomnom/repos", "site_admin": false, "starred_url": "https://api.github.com/users/Komnomnomnom/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Komnomnomnom/subscriptions", "type": "User", "url": "https://api.github.com/users/Komnomnomnom" }
[]
closed
false
null
[]
{ "closed_at": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
0
2013-07-18T10:27:55Z
2014-06-18T21:16:11Z
2013-07-18T11:25:04Z
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/4284/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4284/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4284.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4284", "merged_at": "2013-07-18T11:25:04Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4284.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4284" }
https://api.github.com/repos/pandas-dev/pandas/issues/4285
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4285/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4285/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4285/events
https://github.com/pandas-dev/pandas/pull/4285
16,916,300
MDExOlB1bGxSZXF1ZXN0NzAxMTIxOA==
4,285
Update CONTRIBUTING.md with note on attribution in PRs
{ "avatar_url": "https://avatars.githubusercontent.com/u/10137?v=4", "events_url": "https://api.github.com/users/ghost/events{/privacy}", "followers_url": "https://api.github.com/users/ghost/followers", "following_url": "https://api.github.com/users/ghost/following{/other_user}", "gists_url": "https://api.github.com/users/ghost/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/ghost", "id": 10137, "login": "ghost", "node_id": "MDQ6VXNlcjEwMTM3", "organizations_url": "https://api.github.com/users/ghost/orgs", "received_events_url": "https://api.github.com/users/ghost/received_events", "repos_url": "https://api.github.com/users/ghost/repos", "site_admin": false, "starred_url": "https://api.github.com/users/ghost/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/ghost/subscriptions", "type": "User", "url": "https://api.github.com/users/ghost" }
[]
closed
false
null
[]
null
2
2013-07-18T12:02:08Z
2014-07-16T08:19:49Z
2013-07-18T21:04:36Z
NONE
null
Issue raised by #4140. Objections?
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4285/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4285/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4285.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4285", "merged_at": "2013-07-18T21:04:36Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4285.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4285" }
https://api.github.com/repos/pandas-dev/pandas/issues/4286
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4286/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4286/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4286/events
https://github.com/pandas-dev/pandas/pull/4286
16,920,116
MDExOlB1bGxSZXF1ZXN0NzAxMzIyOA==
4,286
DOC: Fix typo.
{ "avatar_url": "https://avatars.githubusercontent.com/u/296164?v=4", "events_url": "https://api.github.com/users/jseabold/events{/privacy}", "followers_url": "https://api.github.com/users/jseabold/followers", "following_url": "https://api.github.com/users/jseabold/following{/other_user}", "gists_url": "https://api.github.com/users/jseabold/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/jseabold", "id": 296164, "login": "jseabold", "node_id": "MDQ6VXNlcjI5NjE2NA==", "organizations_url": "https://api.github.com/users/jseabold/orgs", "received_events_url": "https://api.github.com/users/jseabold/received_events", "repos_url": "https://api.github.com/users/jseabold/repos", "site_admin": false, "starred_url": "https://api.github.com/users/jseabold/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jseabold/subscriptions", "type": "User", "url": "https://api.github.com/users/jseabold" }
[]
closed
false
null
[]
{ "closed_at": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
1
2013-07-18T13:36:31Z
2014-07-16T08:19:50Z
2013-07-19T01:50:27Z
CONTRIBUTOR
null
Smallest PR ever.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4286/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4286/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4286.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4286", "merged_at": "2013-07-19T01:50:27Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4286.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4286" }
https://api.github.com/repos/pandas-dev/pandas/issues/4287
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4287/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4287/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4287/events
https://github.com/pandas-dev/pandas/issues/4287
16,920,530
MDU6SXNzdWUxNjkyMDUzMA==
4,287
Integers as labels in docs
{ "avatar_url": "https://avatars.githubusercontent.com/u/296164?v=4", "events_url": "https://api.github.com/users/jseabold/events{/privacy}", "followers_url": "https://api.github.com/users/jseabold/followers", "following_url": "https://api.github.com/users/jseabold/following{/other_user}", "gists_url": "https://api.github.com/users/jseabold/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/jseabold", "id": 296164, "login": "jseabold", "node_id": "MDQ6VXNlcjI5NjE2NA==", "organizations_url": "https://api.github.com/users/jseabold/orgs", "received_events_url": "https://api.github.com/users/jseabold/received_events", "repos_url": "https://api.github.com/users/jseabold/repos", "site_admin": false, "starred_url": "https://api.github.com/users/jseabold/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jseabold/subscriptions", "type": "User", "url": "https://api.github.com/users/jseabold" }
[ { "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": "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": "009800", "default": false, "description": "Duplicate issue or pull request", "id": 40153326, "name": "Duplicate Report", "node_id": "MDU6TGFiZWw0MDE1MzMyNg==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Duplicate%20Report" } ]
closed
false
null
[]
{ "closed_at": "2013-12-30T19:53:14Z", "closed_issues": 1076, "created_at": "2012-11-15T23:33:37Z", "creator": { "avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4", "events_url": "https://api.github.com/users/wesm/events{/privacy}", "followers_url": "https://api.github.com/users/wesm/followers", "following_url": "https://api.github.com/users/wesm/following{/other_user}", "gists_url": "https://api.github.com/users/wesm/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/wesm", "id": 329591, "login": "wesm", "node_id": "MDQ6VXNlcjMyOTU5MQ==", "organizations_url": "https://api.github.com/users/wesm/orgs", "received_events_url": "https://api.github.com/users/wesm/received_events", "repos_url": "https://api.github.com/users/wesm/repos", "site_admin": false, "starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/wesm/subscriptions", "type": "User", "url": "https://api.github.com/users/wesm" }, "description": "RC1 ANN went out on 2013-12-6: https://groups.google.com/forum/#!topic/pydata/OHutLByJvK0\r\nTwo weeks, clear all reported bugs then call it on 2013-12-20. \r\n(@y-p)\r\n\r\nsince we've had some bugs reported at a high enough rate, extending rc by one\r\nweek until 2013-12-27. \r\n(@y-p)\r\n\r\nBumping to clear debian sparc\r\n2013-12-30. \r\n(@y-p)", "due_on": "2013-12-30T08:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/18", "id": 213925, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18/labels", "node_id": "MDk6TWlsZXN0b25lMjEzOTI1", "number": 18, "open_issues": 0, "state": "closed", "title": "0.13", "updated_at": "2017-07-22T19:00:05Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18" }
5
2013-07-18T13:44:44Z
2013-09-20T23:03:43Z
2013-09-20T23:03:37Z
CONTRIBUTOR
null
Is the current behavior a regression/bug or are the docs incorrect? This [1] suggests that the following should raise an error. It doesn't for me on f1d35ee nor is its behavior obvious. ``` randn = np.random.randn df = pd.DataFrame(randn(5,5)) df.ix[-2:] ``` [1] http://pandas.pydata.org/pandas-docs/dev/gotchas.html#integer-indexing
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4287/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4287/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4288
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4288/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4288/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4288/events
https://github.com/pandas-dev/pandas/issues/4288
16,923,318
MDU6SXNzdWUxNjkyMzMxOA==
4,288
DOC: update release notes for 0.13; add v0.13.0.txt to index
{ "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://api.github.com/users/jreback/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/jreback", "id": 953992, "login": "jreback", "node_id": "MDQ6VXNlcjk1Mzk5Mg==", "organizations_url": "https://api.github.com/users/jreback/orgs", "received_events_url": "https://api.github.com/users/jreback/received_events", "repos_url": "https://api.github.com/users/jreback/repos", "site_admin": false, "starred_url": "https://api.github.com/users/jreback/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jreback/subscriptions", "type": "User", "url": "https://api.github.com/users/jreback" }
[ { "color": "3465A4", "default": false, "description": null, "id": 134699, "name": "Docs", "node_id": "MDU6TGFiZWwxMzQ2OTk=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs" }, { "color": "DDDDDD", "default": false, "description": "Administrative tasks related to the pandas project", "id": 32933285, "name": "Admin", "node_id": "MDU6TGFiZWwzMjkzMzI4NQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Admin" } ]
closed
false
null
[]
{ "closed_at": "2013-12-30T19:53:14Z", "closed_issues": 1076, "created_at": "2012-11-15T23:33:37Z", "creator": { "avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4", "events_url": "https://api.github.com/users/wesm/events{/privacy}", "followers_url": "https://api.github.com/users/wesm/followers", "following_url": "https://api.github.com/users/wesm/following{/other_user}", "gists_url": "https://api.github.com/users/wesm/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/wesm", "id": 329591, "login": "wesm", "node_id": "MDQ6VXNlcjMyOTU5MQ==", "organizations_url": "https://api.github.com/users/wesm/orgs", "received_events_url": "https://api.github.com/users/wesm/received_events", "repos_url": "https://api.github.com/users/wesm/repos", "site_admin": false, "starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/wesm/subscriptions", "type": "User", "url": "https://api.github.com/users/wesm" }, "description": "RC1 ANN went out on 2013-12-6: https://groups.google.com/forum/#!topic/pydata/OHutLByJvK0\r\nTwo weeks, clear all reported bugs then call it on 2013-12-20. \r\n(@y-p)\r\n\r\nsince we've had some bugs reported at a high enough rate, extending rc by one\r\nweek until 2013-12-27. \r\n(@y-p)\r\n\r\nBumping to clear debian sparc\r\n2013-12-30. \r\n(@y-p)", "due_on": "2013-12-30T08:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/18", "id": 213925, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18/labels", "node_id": "MDk6TWlsZXN0b25lMjEzOTI1", "number": 18, "open_issues": 0, "state": "closed", "title": "0.13", "updated_at": "2017-07-22T19:00:05Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18" }
1
2013-07-18T14:37:31Z
2013-07-24T21:58:04Z
2013-07-24T21:58:04Z
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/4288/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4288/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4289
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4289/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4289/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4289/events
https://github.com/pandas-dev/pandas/issues/4289
16,946,724
MDU6SXNzdWUxNjk0NjcyNA==
4,289
vbench (?) .ix slowness
{ "avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4", "events_url": "https://api.github.com/users/wesm/events{/privacy}", "followers_url": "https://api.github.com/users/wesm/followers", "following_url": "https://api.github.com/users/wesm/following{/other_user}", "gists_url": "https://api.github.com/users/wesm/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/wesm", "id": 329591, "login": "wesm", "node_id": "MDQ6VXNlcjMyOTU5MQ==", "organizations_url": "https://api.github.com/users/wesm/orgs", "received_events_url": "https://api.github.com/users/wesm/received_events", "repos_url": "https://api.github.com/users/wesm/repos", "site_admin": false, "starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/wesm/subscriptions", "type": "User", "url": "https://api.github.com/users/wesm" }
[ { "color": "a10c02", "default": false, "description": "Memory or execution speed performance", "id": 8935311, "name": "Performance", "node_id": "MDU6TGFiZWw4OTM1MzEx", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Performance" } ]
closed
false
null
[]
{ "closed_at": "2013-12-30T19:53:14Z", "closed_issues": 1076, "created_at": "2012-11-15T23:33:37Z", "creator": { "avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4", "events_url": "https://api.github.com/users/wesm/events{/privacy}", "followers_url": "https://api.github.com/users/wesm/followers", "following_url": "https://api.github.com/users/wesm/following{/other_user}", "gists_url": "https://api.github.com/users/wesm/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/wesm", "id": 329591, "login": "wesm", "node_id": "MDQ6VXNlcjMyOTU5MQ==", "organizations_url": "https://api.github.com/users/wesm/orgs", "received_events_url": "https://api.github.com/users/wesm/received_events", "repos_url": "https://api.github.com/users/wesm/repos", "site_admin": false, "starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/wesm/subscriptions", "type": "User", "url": "https://api.github.com/users/wesm" }, "description": "RC1 ANN went out on 2013-12-6: https://groups.google.com/forum/#!topic/pydata/OHutLByJvK0\r\nTwo weeks, clear all reported bugs then call it on 2013-12-20. \r\n(@y-p)\r\n\r\nsince we've had some bugs reported at a high enough rate, extending rc by one\r\nweek until 2013-12-27. \r\n(@y-p)\r\n\r\nBumping to clear debian sparc\r\n2013-12-30. \r\n(@y-p)", "due_on": "2013-12-30T08:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/18", "id": 213925, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18/labels", "node_id": "MDk6TWlsZXN0b25lMjEzOTI1", "number": 18, "open_issues": 0, "state": "closed", "title": "0.13", "updated_at": "2017-07-22T19:00:05Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18" }
2
2013-07-18T22:10:32Z
2013-09-22T20:35:39Z
2013-09-22T20:35:39Z
MEMBER
null
i got this email and didn't know if this was a perf regression we should care about ``` Wes, I'm stuck on something and I was hoping for your help. I wrote a function a year back that iterates element by element through a DataFrame of about 1200 columns by 2000 rows. It runs some basic operations, but nothing crazy. It used to take something like 5 seconds to complete, and now maybe 100x that. The only thing I can think of that's changed is my pandas version (and it's dependancies such as numpy). You can see my stackoverflow question about the same here: http://stackoverflow.com/questions/17538902/is-there-a-way-to-speed-up-this-pandas-function At the bottom of my question is a simple example function I just created (to try and isolate the problem) that seems to take very long to complete (73 seconds) on my computer. Does this sound right to you? Wondering if you have any thoughts, as I'm not sure what to do now. I know vectorized functions are preferred, I have certain cases that require elementwise functions and would like to figure out a way to get decent speed. Thanks for any help! ```
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4289/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4289/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4290
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4290/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4290/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4290/events
https://github.com/pandas-dev/pandas/issues/4290
16,947,389
MDU6SXNzdWUxNjk0NzM4OQ==
4,290
TypeError: mean() got an unexpected keyword argument 'dtype'
{ "avatar_url": "https://avatars.githubusercontent.com/u/39889?v=4", "events_url": "https://api.github.com/users/yarikoptic/events{/privacy}", "followers_url": "https://api.github.com/users/yarikoptic/followers", "following_url": "https://api.github.com/users/yarikoptic/following{/other_user}", "gists_url": "https://api.github.com/users/yarikoptic/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/yarikoptic", "id": 39889, "login": "yarikoptic", "node_id": "MDQ6VXNlcjM5ODg5", "organizations_url": "https://api.github.com/users/yarikoptic/orgs", "received_events_url": "https://api.github.com/users/yarikoptic/received_events", "repos_url": "https://api.github.com/users/yarikoptic/repos", "site_admin": false, "starred_url": "https://api.github.com/users/yarikoptic/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/yarikoptic/subscriptions", "type": "User", "url": "https://api.github.com/users/yarikoptic" }
[ { "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" } ]
closed
false
null
[]
{ "closed_at": "2013-12-30T19:53:14Z", "closed_issues": 1076, "created_at": "2012-11-15T23:33:37Z", "creator": { "avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4", "events_url": "https://api.github.com/users/wesm/events{/privacy}", "followers_url": "https://api.github.com/users/wesm/followers", "following_url": "https://api.github.com/users/wesm/following{/other_user}", "gists_url": "https://api.github.com/users/wesm/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/wesm", "id": 329591, "login": "wesm", "node_id": "MDQ6VXNlcjMyOTU5MQ==", "organizations_url": "https://api.github.com/users/wesm/orgs", "received_events_url": "https://api.github.com/users/wesm/received_events", "repos_url": "https://api.github.com/users/wesm/repos", "site_admin": false, "starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/wesm/subscriptions", "type": "User", "url": "https://api.github.com/users/wesm" }, "description": "RC1 ANN went out on 2013-12-6: https://groups.google.com/forum/#!topic/pydata/OHutLByJvK0\r\nTwo weeks, clear all reported bugs then call it on 2013-12-20. \r\n(@y-p)\r\n\r\nsince we've had some bugs reported at a high enough rate, extending rc by one\r\nweek until 2013-12-27. \r\n(@y-p)\r\n\r\nBumping to clear debian sparc\r\n2013-12-30. \r\n(@y-p)", "due_on": "2013-12-30T08:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/18", "id": 213925, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18/labels", "node_id": "MDk6TWlsZXN0b25lMjEzOTI1", "number": 18, "open_issues": 0, "state": "closed", "title": "0.13", "updated_at": "2017-07-22T19:00:05Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18" }
7
2013-07-18T22:26:28Z
2013-09-21T01:16:29Z
2013-09-21T01:16:29Z
CONTRIBUTOR
null
Numpy 1.8 API change in mean? ``` /home/data/flash_supression/yarik/scripts/utils.pyc in paired_t_anal(d, value, testcol, rows, cols, print_pt, plots, aggfunc) 162 pvalues = np.array(pvalues, ndmin=1) 163 --> 164 pt_paired_t = DataFrame(np.array([np.mean(v0, axis=0), 165 np.mean(v1, axis=0), 166 np.mean(v10, axis=0), /usr/lib/pymodules/python2.7/numpy/core/fromnumeric.pyc in mean(a, axis, dtype, out, keepdims) 2481 try: 2482 mean = a.mean -> 2483 return mean(axis=axis, dtype=dtype, out=out) 2484 except AttributeError: 2485 pass TypeError: mean() got an unexpected keyword argument 'dtype' ``` complete "line" calling this is ``` pt_paired_t = DataFrame(np.array([np.mean(v0, axis=0), np.mean(v1, axis=0), np.mean(v10, axis=0), tvalues, pvalues]), index=Index(['mean(%s)' % lvalues[0], 'mean(%s)' % lvalues[1], 'mean effect', 't-score', 'p-value'], name=contrast_s), columns = columns) ``` it used to work before ... did not check for sure yet though if it is pandas or recent numpy upgrade (if I did any) more information: ``` ipdb> print a.mean <bound method DataFrame.mean of cond full profile subject 01jul10sc.dat 1.572131 1.569658 01oct10cs.dat 1.491370 1.678300 ... ``` and if to provide ndarray compatibility here then interface should match numpy's where dtype is a valid argument to mean
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4290/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4290/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4291
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4291/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4291/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4291/events
https://github.com/pandas-dev/pandas/issues/4291
16,950,181
MDU6SXNzdWUxNjk1MDE4MQ==
4,291
ENH: update stata for Stata 13 format
{ "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://api.github.com/users/jreback/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/jreback", "id": 953992, "login": "jreback", "node_id": "MDQ6VXNlcjk1Mzk5Mg==", "organizations_url": "https://api.github.com/users/jreback/orgs", "received_events_url": "https://api.github.com/users/jreback/received_events", "repos_url": "https://api.github.com/users/jreback/repos", "site_admin": false, "starred_url": "https://api.github.com/users/jreback/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jreback/subscriptions", "type": "User", "url": "https://api.github.com/users/jreback" }
[ { "color": "4E9A06", "default": false, "description": null, "id": 76812, "name": "Enhancement", "node_id": "MDU6TGFiZWw3NjgxMg==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Enhancement" }, { "color": "06909A", "default": false, "description": "IO issues that don't fit into a more specific label", "id": 2301354, "name": "IO Data", "node_id": "MDU6TGFiZWwyMzAxMzU0", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20Data" } ]
closed
false
null
[]
{ "closed_at": "2013-12-30T19:53:14Z", "closed_issues": 1076, "created_at": "2012-11-15T23:33:37Z", "creator": { "avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4", "events_url": "https://api.github.com/users/wesm/events{/privacy}", "followers_url": "https://api.github.com/users/wesm/followers", "following_url": "https://api.github.com/users/wesm/following{/other_user}", "gists_url": "https://api.github.com/users/wesm/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/wesm", "id": 329591, "login": "wesm", "node_id": "MDQ6VXNlcjMyOTU5MQ==", "organizations_url": "https://api.github.com/users/wesm/orgs", "received_events_url": "https://api.github.com/users/wesm/received_events", "repos_url": "https://api.github.com/users/wesm/repos", "site_admin": false, "starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/wesm/subscriptions", "type": "User", "url": "https://api.github.com/users/wesm" }, "description": "RC1 ANN went out on 2013-12-6: https://groups.google.com/forum/#!topic/pydata/OHutLByJvK0\r\nTwo weeks, clear all reported bugs then call it on 2013-12-20. \r\n(@y-p)\r\n\r\nsince we've had some bugs reported at a high enough rate, extending rc by one\r\nweek until 2013-12-27. \r\n(@y-p)\r\n\r\nBumping to clear debian sparc\r\n2013-12-30. \r\n(@y-p)", "due_on": "2013-12-30T08:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/18", "id": 213925, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18/labels", "node_id": "MDk6TWlsZXN0b25lMjEzOTI1", "number": 18, "open_issues": 0, "state": "closed", "title": "0.13", "updated_at": "2017-07-22T19:00:05Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18" }
6
2013-07-18T23:50:50Z
2014-06-05T21:39:19Z
2013-09-21T23:29:27Z
CONTRIBUTOR
null
http://www.stata.com/help.cgi?dta
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4291/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4291/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4292
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4292/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4292/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4292/events
https://github.com/pandas-dev/pandas/issues/4292
16,950,758
MDU6SXNzdWUxNjk1MDc1OA==
4,292
powerpc: Test*Parser* fail with AssertionError: 2262-04-10T00:12:45.292707840+0000 != 2262-04-10T00:12:45.292707840+0000
{ "avatar_url": "https://avatars.githubusercontent.com/u/39889?v=4", "events_url": "https://api.github.com/users/yarikoptic/events{/privacy}", "followers_url": "https://api.github.com/users/yarikoptic/followers", "following_url": "https://api.github.com/users/yarikoptic/following{/other_user}", "gists_url": "https://api.github.com/users/yarikoptic/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/yarikoptic", "id": 39889, "login": "yarikoptic", "node_id": "MDQ6VXNlcjM5ODg5", "organizations_url": "https://api.github.com/users/yarikoptic/orgs", "received_events_url": "https://api.github.com/users/yarikoptic/received_events", "repos_url": "https://api.github.com/users/yarikoptic/repos", "site_admin": false, "starred_url": "https://api.github.com/users/yarikoptic/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/yarikoptic/subscriptions", "type": "User", "url": "https://api.github.com/users/yarikoptic" }
[ { "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": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
9
2013-07-19T00:11:05Z
2013-07-20T01:44:20Z
2013-07-20T01:36:53Z
CONTRIBUTOR
null
Detected by Debian build farm https://buildd.debian.org/status/fetch.php?pkg=pandas&arch=powerpc&ver=0.12.0~rc1%2Bgit112-gb79996c-1&stamp=1374189622&file=log ``` ====================================================================== FAIL: test_nat_parse (pandas.io.tests.test_parsers.TestCParserHighMemory) ---------------------------------------------------------------------- Traceback (most recent call last): File "/«BUILDDIR»/pandas-0.12.0~rc1+git112-gb79996c/debian/tmp/usr/lib/python2.7/dist-packages/pandas/io/tests/test_parsers.py", line 607, in test_nat_parse tm.assert_frame_equal(result,df) File "/«BUILDDIR»/pandas-0.12.0~rc1+git112-gb79996c/debian/tmp/usr/lib/python2.7/dist-packages/pandas/util/testing.py", line 238, in assert_frame_equal check_less_precise=check_less_precise) File "/«BUILDDIR»/pandas-0.12.0~rc1+git112-gb79996c/debian/tmp/usr/lib/python2.7/dist-packages/pandas/util/testing.py", line 197, in assert_series_equal assert_almost_equal(left.values, right.values, check_less_precise) File "/«BUILDDIR»/pandas-0.12.0~rc1+git112-gb79996c/debian/tmp/usr/lib/python2.7/dist-packages/pandas/util/testing.py", line 141, in assert_almost_equal assert_almost_equal(a[i], b[i], check_less_precise) File "/«BUILDDIR»/pandas-0.12.0~rc1+git112-gb79996c/debian/tmp/usr/lib/python2.7/dist-packages/pandas/util/testing.py", line 172, in assert_almost_equal assert a == b, "%s != %s" % (a, b) AssertionError: 2262-04-10T00:12:45.292707840+0000 != 2262-04-10T00:12:45.292707840+0000 ====================================================================== FAIL: test_nat_parse (pandas.io.tests.test_parsers.TestCParserLowMemory) ---------------------------------------------------------------------- Traceback (most recent call last): File "/«BUILDDIR»/pandas-0.12.0~rc1+git112-gb79996c/debian/tmp/usr/lib/python2.7/dist-packages/pandas/io/tests/test_parsers.py", line 607, in test_nat_parse tm.assert_frame_equal(result,df) File "/«BUILDDIR»/pandas-0.12.0~rc1+git112-gb79996c/debian/tmp/usr/lib/python2.7/dist-packages/pandas/util/testing.py", line 238, in assert_frame_equal check_less_precise=check_less_precise) File "/«BUILDDIR»/pandas-0.12.0~rc1+git112-gb79996c/debian/tmp/usr/lib/python2.7/dist-packages/pandas/util/testing.py", line 197, in assert_series_equal assert_almost_equal(left.values, right.values, check_less_precise) File "/«BUILDDIR»/pandas-0.12.0~rc1+git112-gb79996c/debian/tmp/usr/lib/python2.7/dist-packages/pandas/util/testing.py", line 141, in assert_almost_equal assert_almost_equal(a[i], b[i], check_less_precise) File "/«BUILDDIR»/pandas-0.12.0~rc1+git112-gb79996c/debian/tmp/usr/lib/python2.7/dist-packages/pandas/util/testing.py", line 172, in assert_almost_equal assert a == b, "%s != %s" % (a, b) AssertionError: 2262-04-10T00:12:45.292707840+0000 != 2262-04-10T00:12:45.292707840+0000 ====================================================================== FAIL: test_nat_parse (pandas.io.tests.test_parsers.TestPythonParser) ---------------------------------------------------------------------- Traceback (most recent call last): File "/«BUILDDIR»/pandas-0.12.0~rc1+git112-gb79996c/debian/tmp/usr/lib/python2.7/dist-packages/pandas/io/tests/test_parsers.py", line 607, in test_nat_parse tm.assert_frame_equal(result,df) File "/«BUILDDIR»/pandas-0.12.0~rc1+git112-gb79996c/debian/tmp/usr/lib/python2.7/dist-packages/pandas/util/testing.py", line 238, in assert_frame_equal check_less_precise=check_less_precise) File "/«BUILDDIR»/pandas-0.12.0~rc1+git112-gb79996c/debian/tmp/usr/lib/python2.7/dist-packages/pandas/util/testing.py", line 197, in assert_series_equal assert_almost_equal(left.values, right.values, check_less_precise) File "/«BUILDDIR»/pandas-0.12.0~rc1+git112-gb79996c/debian/tmp/usr/lib/python2.7/dist-packages/pandas/util/testing.py", line 141, in assert_almost_equal assert_almost_equal(a[i], b[i], check_less_precise) File "/«BUILDDIR»/pandas-0.12.0~rc1+git112-gb79996c/debian/tmp/usr/lib/python2.7/dist-packages/pandas/util/testing.py", line 172, in assert_almost_equal assert a == b, "%s != %s" % (a, b) AssertionError: 2262-04-10T00:12:45.292707840+0000 != 2262-04-10T00:12:45.292707840+0000 ``` good news -- those seems to be the only failures on powerpc (for python 2.7 at least, python 3 did not have chance to get any testing yet due to 2.7 failing)
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4292/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4292/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4293
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4293/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4293/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4293/events
https://github.com/pandas-dev/pandas/issues/4293
16,978,984
MDU6SXNzdWUxNjk3ODk4NA==
4,293
"Function does not reduce" for multiindex, but works fine for single index.
{ "avatar_url": "https://avatars.githubusercontent.com/u/1025478?v=4", "events_url": "https://api.github.com/users/frlnx/events{/privacy}", "followers_url": "https://api.github.com/users/frlnx/followers", "following_url": "https://api.github.com/users/frlnx/following{/other_user}", "gists_url": "https://api.github.com/users/frlnx/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/frlnx", "id": 1025478, "login": "frlnx", "node_id": "MDQ6VXNlcjEwMjU0Nzg=", "organizations_url": "https://api.github.com/users/frlnx/orgs", "received_events_url": "https://api.github.com/users/frlnx/received_events", "repos_url": "https://api.github.com/users/frlnx/repos", "site_admin": false, "starred_url": "https://api.github.com/users/frlnx/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/frlnx/subscriptions", "type": "User", "url": "https://api.github.com/users/frlnx" }
[ { "color": "729FCF", "default": false, "description": null, "id": 233160, "name": "Groupby", "node_id": "MDU6TGFiZWwyMzMxNjA=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Groupby" }, { "color": "e102d8", "default": false, "description": "Unexpected or buggy dtype conversions", "id": 31404521, "name": "Dtype Conversions", "node_id": "MDU6TGFiZWwzMTQwNDUyMQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Dtype%20Conversions" }, { "color": "207de5", "default": false, "description": null, "id": 71268330, "name": "MultiIndex", "node_id": "MDU6TGFiZWw3MTI2ODMzMA==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/MultiIndex" } ]
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", "following_url": "https://api.github.com/users/wesm/following{/other_user}", "gists_url": "https://api.github.com/users/wesm/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/wesm", "id": 329591, "login": "wesm", "node_id": "MDQ6VXNlcjMyOTU5MQ==", "organizations_url": "https://api.github.com/users/wesm/orgs", "received_events_url": "https://api.github.com/users/wesm/received_events", "repos_url": "https://api.github.com/users/wesm/repos", "site_admin": false, "starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/wesm/subscriptions", "type": "User", "url": "https://api.github.com/users/wesm" }, "description": "Milestone for filing things away that may be reached someday (at which point such issues should be moved to the appropriate release milestone)", "due_on": "2022-12-31T08:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/20", "id": 239227, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/20/labels", "node_id": "MDk6TWlsZXN0b25lMjM5MjI3", "number": 20, "open_issues": 108, "state": "open", "title": "Someday", "updated_at": "2021-08-08T01:48:22Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/20" }
17
2013-07-19T16:10:17Z
2018-05-18T07:33:25Z
2018-05-18T07:33:25Z
NONE
null
When I use pd.Series.tolist as a reducer with a single column groupby, it works. When I do the same with multiindex, it does not. It seems the "fast" cython groupby function, which has no quarrel with reducing into lists, throws an exception if the index is "complex", which seem to mean multiindex. When that exception is caught, the groupby function falls back to the "pure_python" groupby, which throws a new exception if the reducing function returns a list. Is this a bug or is there some logic to this which is not apparent to me? Reproduce: ``` import pandas as pd s1 = pd.Series(randn(5), index=['a', 'b', 'c', 'd', 'e']) df = pd.DataFrame([s1], columns=['a', 'b', 'c', 'd', 'e']) for i in range(0,10): s1 = pd.Series(randn(5), index=['a', 'b', 'c', 'd', 'e']) df2 = pd.DataFrame([s1], columns=['a', 'b', 'c', 'd', 'e']) df = pd.concat([df, df2]) df['gk'] = 'foo' df['gk2'] = 'bar' # This works. df.groupby(['gk']).agg(pd.Series.tolist) # This does not. df.groupby(['gk', 'gk2']).agg(pd.Series.tolist) ```
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4293/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4293/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4294
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4294/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4294/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4294/events
https://github.com/pandas-dev/pandas/issues/4294
16,981,064
MDU6SXNzdWUxNjk4MTA2NA==
4,294
ER: Bug accessing a series MultiIndex with a Timestamp
{ "avatar_url": "https://avatars.githubusercontent.com/u/1564485?v=4", "events_url": "https://api.github.com/users/l736x/events{/privacy}", "followers_url": "https://api.github.com/users/l736x/followers", "following_url": "https://api.github.com/users/l736x/following{/other_user}", "gists_url": "https://api.github.com/users/l736x/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/l736x", "id": 1564485, "login": "l736x", "node_id": "MDQ6VXNlcjE1NjQ0ODU=", "organizations_url": "https://api.github.com/users/l736x/orgs", "received_events_url": "https://api.github.com/users/l736x/received_events", "repos_url": "https://api.github.com/users/l736x/repos", "site_admin": false, "starred_url": "https://api.github.com/users/l736x/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/l736x/subscriptions", "type": "User", "url": "https://api.github.com/users/l736x" }
[ { "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, "name": "Timeseries", "node_id": "MDU6TGFiZWwyMTE4NDA=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Timeseries" }, { "color": "0b02e1", "default": false, "description": "Related to indexing on series/frames, not to indexes themselves", "id": 2822098, "name": "Indexing", "node_id": "MDU6TGFiZWwyODIyMDk4", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Indexing" }, { "color": "ffa0ff", "default": false, "description": "Incorrect or improved errors from pandas", "id": 42670965, "name": "Error Reporting", "node_id": "MDU6TGFiZWw0MjY3MDk2NQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Error%20Reporting" } ]
closed
false
{ "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://api.github.com/users/jreback/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/jreback", "id": 953992, "login": "jreback", "node_id": "MDQ6VXNlcjk1Mzk5Mg==", "organizations_url": "https://api.github.com/users/jreback/orgs", "received_events_url": "https://api.github.com/users/jreback/received_events", "repos_url": "https://api.github.com/users/jreback/repos", "site_admin": false, "starred_url": "https://api.github.com/users/jreback/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jreback/subscriptions", "type": "User", "url": "https://api.github.com/users/jreback" }
[ { "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://api.github.com/users/jreback/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/jreback", "id": 953992, "login": "jreback", "node_id": "MDQ6VXNlcjk1Mzk5Mg==", "organizations_url": "https://api.github.com/users/jreback/orgs", "received_events_url": "https://api.github.com/users/jreback/received_events", "repos_url": "https://api.github.com/users/jreback/repos", "site_admin": false, "starred_url": "https://api.github.com/users/jreback/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jreback/subscriptions", "type": "User", "url": "https://api.github.com/users/jreback" } ]
{ "closed_at": "2013-12-30T19:53:14Z", "closed_issues": 1076, "created_at": "2012-11-15T23:33:37Z", "creator": { "avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4", "events_url": "https://api.github.com/users/wesm/events{/privacy}", "followers_url": "https://api.github.com/users/wesm/followers", "following_url": "https://api.github.com/users/wesm/following{/other_user}", "gists_url": "https://api.github.com/users/wesm/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/wesm", "id": 329591, "login": "wesm", "node_id": "MDQ6VXNlcjMyOTU5MQ==", "organizations_url": "https://api.github.com/users/wesm/orgs", "received_events_url": "https://api.github.com/users/wesm/received_events", "repos_url": "https://api.github.com/users/wesm/repos", "site_admin": false, "starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/wesm/subscriptions", "type": "User", "url": "https://api.github.com/users/wesm" }, "description": "RC1 ANN went out on 2013-12-6: https://groups.google.com/forum/#!topic/pydata/OHutLByJvK0\r\nTwo weeks, clear all reported bugs then call it on 2013-12-20. \r\n(@y-p)\r\n\r\nsince we've had some bugs reported at a high enough rate, extending rc by one\r\nweek until 2013-12-27. \r\n(@y-p)\r\n\r\nBumping to clear debian sparc\r\n2013-12-30. \r\n(@y-p)", "due_on": "2013-12-30T08:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/18", "id": 213925, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18/labels", "node_id": "MDk6TWlsZXN0b25lMjEzOTI1", "number": 18, "open_issues": 0, "state": "closed", "title": "0.13", "updated_at": "2017-07-22T19:00:05Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18" }
5
2013-07-19T16:56:42Z
2013-10-02T19:10:22Z
2013-10-02T19:10:22Z
CONTRIBUTOR
null
I have a series with a multiindex (datetime, int). When I try to access a slice corresponding to a date using a Timestamp I have an exception printed to screen if the size of the series is >= 1e6. No problem if I access the same slice with a string. No problem with an equivalent dataframe. Tested on 0.10.1 and 0.11, I'm sorry but I don't have access to 0.12rc1. ``` python In [1]: import pandas as pd In [2]: pd.__version__ Out[2]: '0.11.0' In [3]: np.__version__ Out[3]: '1.7.1' In [4]: df = pd.DataFrame(randn(1000, 1000), index=pd.date_range('2000-1-1', periods=1000)) In [5]: s = df.stack() # s has 1e6 lines In [6]: s.head() Out[6]: 2000-01-01 0 -0.555228 1 -0.152952 2 0.401490 3 -1.057106 4 -0.987895 dtype: float64 In [7]: s['2000-1-4'].head() Out[7]: 0 -1.009647 1 0.094427 2 0.105180 3 -2.166810 4 -0.767165 dtype: float64 In [8]: s[pd.Timestamp('2000-1-4')].head() Exception TypeError: TypeError('Cannot compare Timestamp with (<Timestamp: 2002-09-26 00:00:00>, 999)',) in 'pandas.index._bin_search' ignored Out[8]: 0 -1.009647 1 0.094427 2 0.105180 3 -2.166810 4 -0.767165 dtype: float64 In [9]: s2 = s[:-1].copy() # s2 has 1e6 - 1 lines In [10]: s2['2000-1-4'].head() Out[10]: 0 -1.009647 1 0.094427 2 0.105180 3 -2.166810 4 -0.767165 dtype: float64 In [11]: s2[pd.Timestamp('2000-1-4')].head() Out[11]: 0 -1.009647 1 0.094427 2 0.105180 3 -2.166810 4 -0.767165 dtype: float64 In [12]: df2 = pd.DataFrame(s) In [13]: df2.ix['2000-1-4'].head() Out[13]: 0 0 -1.009647 1 0.094427 2 0.105180 3 -2.166810 4 -0.767165 In [14]: df2.ix[pd.Timestamp('2000-1-4')].head() Out[14]: 0 0 -1.009647 1 0.094427 2 0.105180 3 -2.166810 4 -0.767165 ```
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4294/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4294/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4295
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4295/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4295/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4295/events
https://github.com/pandas-dev/pandas/pull/4295
16,984,322
MDExOlB1bGxSZXF1ZXN0NzA0ODczMQ==
4,295
TST: raise an error json serialization of floats that cannot be accurate represented
{ "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://api.github.com/users/jreback/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/jreback", "id": 953992, "login": "jreback", "node_id": "MDQ6VXNlcjk1Mzk5Mg==", "organizations_url": "https://api.github.com/users/jreback/orgs", "received_events_url": "https://api.github.com/users/jreback/received_events", "repos_url": "https://api.github.com/users/jreback/repos", "site_admin": false, "starred_url": "https://api.github.com/users/jreback/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jreback/subscriptions", "type": "User", "url": "https://api.github.com/users/jreback" }
[]
closed
false
null
[]
null
1
2013-07-19T18:06:43Z
2014-08-11T07:09:11Z
2013-07-19T23:49:12Z
CONTRIBUTOR
null
related to #4042 ``` In [1]: DataFrame([[1e-16,'foo',1e-8]],columns=list('ABC')).to_json() ValueError: ujson currently cannot accurately format float data less than 1e-15. A work-around is to multiply the data by a large positive factor and divide on deseriliazation ```
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4295/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4295/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4295.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4295", "merged_at": null, "patch_url": "https://github.com/pandas-dev/pandas/pull/4295.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4295" }
https://api.github.com/repos/pandas-dev/pandas/issues/4296
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4296/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4296/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4296/events
https://github.com/pandas-dev/pandas/pull/4296
16,989,969
MDExOlB1bGxSZXF1ZXN0NzA1MTgyMQ==
4,296
Use psutil to set process affinity (test_perf.py) + minor pylint-friendliness for ._ix
{ "avatar_url": "https://avatars.githubusercontent.com/u/39889?v=4", "events_url": "https://api.github.com/users/yarikoptic/events{/privacy}", "followers_url": "https://api.github.com/users/yarikoptic/followers", "following_url": "https://api.github.com/users/yarikoptic/following{/other_user}", "gists_url": "https://api.github.com/users/yarikoptic/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/yarikoptic", "id": 39889, "login": "yarikoptic", "node_id": "MDQ6VXNlcjM5ODg5", "organizations_url": "https://api.github.com/users/yarikoptic/orgs", "received_events_url": "https://api.github.com/users/yarikoptic/received_events", "repos_url": "https://api.github.com/users/yarikoptic/repos", "site_admin": false, "starred_url": "https://api.github.com/users/yarikoptic/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/yarikoptic/subscriptions", "type": "User", "url": "https://api.github.com/users/yarikoptic" }
[]
closed
false
null
[]
{ "closed_at": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
5
2013-07-19T20:02:59Z
2014-06-15T07:02:25Z
2013-07-20T00:30:57Z
CONTRIBUTOR
null
please test test_perf.py -- I have rebased against master and had to resolve conflicts Cheers,
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4296/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4296/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4296.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4296", "merged_at": "2013-07-20T00:30:57Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4296.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4296" }
https://api.github.com/repos/pandas-dev/pandas/issues/4297
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4297/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4297/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4297/events
https://github.com/pandas-dev/pandas/issues/4297
16,990,855
MDU6SXNzdWUxNjk5MDg1NQ==
4,297
API: Missing support for creating a DataFrame from Python native arrays (or other objects supporting the buffer protocol)
{ "avatar_url": "https://avatars.githubusercontent.com/u/650866?v=4", "events_url": "https://api.github.com/users/lgautier/events{/privacy}", "followers_url": "https://api.github.com/users/lgautier/followers", "following_url": "https://api.github.com/users/lgautier/following{/other_user}", "gists_url": "https://api.github.com/users/lgautier/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/lgautier", "id": 650866, "login": "lgautier", "node_id": "MDQ6VXNlcjY1MDg2Ng==", "organizations_url": "https://api.github.com/users/lgautier/orgs", "received_events_url": "https://api.github.com/users/lgautier/received_events", "repos_url": "https://api.github.com/users/lgautier/repos", "site_admin": false, "starred_url": "https://api.github.com/users/lgautier/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/lgautier/subscriptions", "type": "User", "url": "https://api.github.com/users/lgautier" }
[ { "color": "06909A", "default": false, "description": "IO issues that don't fit into a more specific label", "id": 2301354, "name": "IO Data", "node_id": "MDU6TGFiZWwyMzAxMzU0", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20Data" }, { "color": "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" } ]
closed
false
null
[]
{ "closed_at": "2013-12-30T19:53:14Z", "closed_issues": 1076, "created_at": "2012-11-15T23:33:37Z", "creator": { "avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4", "events_url": "https://api.github.com/users/wesm/events{/privacy}", "followers_url": "https://api.github.com/users/wesm/followers", "following_url": "https://api.github.com/users/wesm/following{/other_user}", "gists_url": "https://api.github.com/users/wesm/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/wesm", "id": 329591, "login": "wesm", "node_id": "MDQ6VXNlcjMyOTU5MQ==", "organizations_url": "https://api.github.com/users/wesm/orgs", "received_events_url": "https://api.github.com/users/wesm/received_events", "repos_url": "https://api.github.com/users/wesm/repos", "site_admin": false, "starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/wesm/subscriptions", "type": "User", "url": "https://api.github.com/users/wesm" }, "description": "RC1 ANN went out on 2013-12-6: https://groups.google.com/forum/#!topic/pydata/OHutLByJvK0\r\nTwo weeks, clear all reported bugs then call it on 2013-12-20. \r\n(@y-p)\r\n\r\nsince we've had some bugs reported at a high enough rate, extending rc by one\r\nweek until 2013-12-27. \r\n(@y-p)\r\n\r\nBumping to clear debian sparc\r\n2013-12-30. \r\n(@y-p)", "due_on": "2013-12-30T08:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/18", "id": 213925, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18/labels", "node_id": "MDk6TWlsZXN0b25lMjEzOTI1", "number": 18, "open_issues": 0, "state": "closed", "title": "0.13", "updated_at": "2017-07-22T19:00:05Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18" }
17
2013-07-19T20:23:13Z
2013-09-13T22:54:42Z
2013-09-13T22:54:42Z
CONTRIBUTOR
null
``` python import pandas import array x=array.array('i', range(10)) pdf = pandas.DataFrame.from_items([('a', x)]) # fails with: # ValueError: If use all scalar values, must pass index ``` Also, since x has a `__len__` may be the error message should not refer to a scalar. Explicit casting to numpy arrays is a workaround, but it would seem convenient to have it done within the constructor for `DataFrame`: ``` python import numpy pdf = pandas.DataFrame.from_items([('a', numpy.asarray(x))]) ```
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4297/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4297/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4298
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4298/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4298/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4298/events
https://github.com/pandas-dev/pandas/issues/4298
16,996,961
MDU6SXNzdWUxNjk5Njk2MQ==
4,298
ENH: Add bw_method and ind kwargs to kind='kde' plot method
{ "avatar_url": "https://avatars.githubusercontent.com/u/1838992?v=4", "events_url": "https://api.github.com/users/khgitting/events{/privacy}", "followers_url": "https://api.github.com/users/khgitting/followers", "following_url": "https://api.github.com/users/khgitting/following{/other_user}", "gists_url": "https://api.github.com/users/khgitting/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/khgitting", "id": 1838992, "login": "khgitting", "node_id": "MDQ6VXNlcjE4Mzg5OTI=", "organizations_url": "https://api.github.com/users/khgitting/orgs", "received_events_url": "https://api.github.com/users/khgitting/received_events", "repos_url": "https://api.github.com/users/khgitting/repos", "site_admin": false, "starred_url": "https://api.github.com/users/khgitting/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/khgitting/subscriptions", "type": "User", "url": "https://api.github.com/users/khgitting" }
[ { "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": "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" } ]
closed
false
null
[]
{ "closed_at": "2013-12-30T19:53:14Z", "closed_issues": 1076, "created_at": "2012-11-15T23:33:37Z", "creator": { "avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4", "events_url": "https://api.github.com/users/wesm/events{/privacy}", "followers_url": "https://api.github.com/users/wesm/followers", "following_url": "https://api.github.com/users/wesm/following{/other_user}", "gists_url": "https://api.github.com/users/wesm/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/wesm", "id": 329591, "login": "wesm", "node_id": "MDQ6VXNlcjMyOTU5MQ==", "organizations_url": "https://api.github.com/users/wesm/orgs", "received_events_url": "https://api.github.com/users/wesm/received_events", "repos_url": "https://api.github.com/users/wesm/repos", "site_admin": false, "starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/wesm/subscriptions", "type": "User", "url": "https://api.github.com/users/wesm" }, "description": "RC1 ANN went out on 2013-12-6: https://groups.google.com/forum/#!topic/pydata/OHutLByJvK0\r\nTwo weeks, clear all reported bugs then call it on 2013-12-20. \r\n(@y-p)\r\n\r\nsince we've had some bugs reported at a high enough rate, extending rc by one\r\nweek until 2013-12-27. \r\n(@y-p)\r\n\r\nBumping to clear debian sparc\r\n2013-12-30. \r\n(@y-p)", "due_on": "2013-12-30T08:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/18", "id": 213925, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18/labels", "node_id": "MDk6TWlsZXN0b25lMjEzOTI1", "number": 18, "open_issues": 0, "state": "closed", "title": "0.13", "updated_at": "2017-07-22T19:00:05Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18" }
16
2013-07-19T22:48:00Z
2013-08-26T19:14:52Z
2013-08-26T19:14:52Z
NONE
null
It'd be really cool when plotting kde's to be able to set the bandwidth used for the kde and the indices at which it is evaluated. This is done with the bw_method kwarg for scipy.stats.gaussian_kde for scipy >= 0.11, a couple years old now, for the former; a variable ind is created in the pandas class KdePlot's _make_plot method and passed to gkde.evaluate. Here's a patch which implements this functionality: https://github.com/khgitting/pandas/compare/master...kde_kwargs I'm having trouble passing the Travis CI tests here: https://travis-ci.org/khgitting/pandas/jobs/9284591 It appears the tests use an older version of scipy where gaussian_kde does not take bw_method kwarg. I'd love to be able to resolve this, but am not sure what the right course of action is. Any advice?
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4298/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4298/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4299
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4299/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4299/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4299/events
https://github.com/pandas-dev/pandas/pull/4299
16,997,554
MDExOlB1bGxSZXF1ZXN0NzA1NjA2MA==
4,299
ENH: ujson better handling of very large and very small numbers, throw ValueError for bad double_precision arg #4042
{ "avatar_url": "https://avatars.githubusercontent.com/u/107748?v=4", "events_url": "https://api.github.com/users/Komnomnomnom/events{/privacy}", "followers_url": "https://api.github.com/users/Komnomnomnom/followers", "following_url": "https://api.github.com/users/Komnomnomnom/following{/other_user}", "gists_url": "https://api.github.com/users/Komnomnomnom/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/Komnomnomnom", "id": 107748, "login": "Komnomnomnom", "node_id": "MDQ6VXNlcjEwNzc0OA==", "organizations_url": "https://api.github.com/users/Komnomnomnom/orgs", "received_events_url": "https://api.github.com/users/Komnomnomnom/received_events", "repos_url": "https://api.github.com/users/Komnomnomnom/repos", "site_admin": false, "starred_url": "https://api.github.com/users/Komnomnomnom/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Komnomnomnom/subscriptions", "type": "User", "url": "https://api.github.com/users/Komnomnomnom" }
[]
closed
false
null
[]
{ "closed_at": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
8
2013-07-19T23:09:52Z
2014-07-16T08:19:56Z
2013-07-20T01:45:17Z
CONTRIBUTOR
null
closes #4042 This makes ujson handle very big and very small numbers a bit better, it doesn't help with precision but it should at least be able to handle very small and large exponentials now: ``` In [4]: from pandas.json import dumps In [5]: dumps(1e-5) Out[5]: '0.00001' In [6]: dumps(1e-6) Out[6]: '0.000001' In [7]: dumps(1e-7) Out[7]: '0.0000001' In [8]: dumps(1e-8) Out[8]: '0.00000001' In [9]: dumps(1e-9) Out[9]: '0.000000001' In [10]: dumps(1e-10) Out[10]: '0.0000000001' In [11]: dumps(1e-11) Out[11]: '0.0' In [12]: dumps(1e-11, double_precision=15) Out[12]: '0.00000000001' In [13]: dumps(1e-12, double_precision=15) Out[13]: '0.000000000001' In [14]: dumps(1e-13, double_precision=15) Out[14]: '0.0000000000001' In [15]: dumps(1e-14, double_precision=15) Out[15]: '0.00000000000001' In [16]: dumps(1e-15, double_precision=15) Out[16]: '0.000000000000001' In [17]: dumps(1e-16, double_precision=15) Out[17]: '1e-16' In [18]: dumps(1e-16) Out[18]: '1e-16' In [19]: dumps(1e-17) Out[19]: '1e-17' In [20]: dumps(1e-40) Out[20]: '1e-40' In [21]: dumps(1e-100) Out[21]: '1e-100' In [22]: dumps(1e-400) Out[22]: '0.0' In [28]: dumps(1e40) Out[28]: '1e+40' In [29]: dumps(1e100) Out[29]: '1e+100' In [30]: dumps(1e400) Out[30]: 'null' In [31]: from pandas.json import loads In [32]: loads(dumps(1e100)) Out[32]: 1e+100 In [33]: loads(dumps(1e40)) Out[33]: 1e+40 In [34]: loads(dumps(1e-40)) Out[34]: 1e-40 ``` I have also modified it to throw a `ValueError` when a bad value is given for `double_precision`: ``` In [25]: dumps(1e-400, double_precision=-1) --------------------------------------------------------------------------- ValueError Traceback (most recent call last) <ipython-input-25-e15fa4642646> in <module>() ----> 1 dumps(1e-400, double_precision=-1) ValueError: Invalid value '-1' for option 'double_precision', max is '15' In [26]: dumps(1e-400, double_precision=16) --------------------------------------------------------------------------- ValueError Traceback (most recent call last) <ipython-input-26-ab74b2f14c7f> in <module>() ----> 1 dumps(1e-400, double_precision=16) ValueError: Invalid value '16' for option 'double_precision', max is '15' ``` Tested on Python 2.7 on Arch-64. T'would be great if someone could test this out on windows.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4299/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4299/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4299.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4299", "merged_at": "2013-07-20T01:45:17Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4299.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4299" }
https://api.github.com/repos/pandas-dev/pandas/issues/4300
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4300/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4300/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4300/events
https://github.com/pandas-dev/pandas/pull/4300
16,998,269
MDExOlB1bGxSZXF1ZXN0NzA1NjQ4MA==
4,300
ENH: expose ujson precise_float argument on decode
{ "avatar_url": "https://avatars.githubusercontent.com/u/107748?v=4", "events_url": "https://api.github.com/users/Komnomnomnom/events{/privacy}", "followers_url": "https://api.github.com/users/Komnomnomnom/followers", "following_url": "https://api.github.com/users/Komnomnomnom/following{/other_user}", "gists_url": "https://api.github.com/users/Komnomnomnom/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/Komnomnomnom", "id": 107748, "login": "Komnomnomnom", "node_id": "MDQ6VXNlcjEwNzc0OA==", "organizations_url": "https://api.github.com/users/Komnomnomnom/orgs", "received_events_url": "https://api.github.com/users/Komnomnomnom/received_events", "repos_url": "https://api.github.com/users/Komnomnomnom/repos", "site_admin": false, "starred_url": "https://api.github.com/users/Komnomnomnom/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Komnomnomnom/subscriptions", "type": "User", "url": "https://api.github.com/users/Komnomnomnom" }
[]
closed
false
null
[]
{ "closed_at": "2013-07-24T23:25:44Z", "closed_issues": 410, "created_at": "2013-04-30T04:12:30Z", "creator": null, "description": "Major release (formerly 0.11.1 bugfix but has outgrown its britches)", "due_on": "2013-07-05T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/22", "id": 323643, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22/labels", "node_id": "MDk6TWlsZXN0b25lMzIzNjQz", "number": 22, "open_issues": 0, "state": "closed", "title": "0.12", "updated_at": "2013-07-24T23:25:44Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/22" }
9
2013-07-19T23:36:46Z
2014-06-19T13:51:40Z
2013-07-20T00:58:15Z
CONTRIBUTOR
null
The new version of ujson takes a boolean `precise_float` argument when decoding, this should be exposed when decoding pandas objects.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4300/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4300/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4300.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4300", "merged_at": "2013-07-20T00:58:15Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4300.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4300" }