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/4701
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4701/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4701/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4701/events
https://github.com/pandas-dev/pandas/issues/4701
18,689,792
MDU6SXNzdWUxODY4OTc5Mg==
4,701
index not a consistent behavior after dataframe slicing
{ "avatar_url": "https://avatars.githubusercontent.com/u/1769283?v=4", "events_url": "https://api.github.com/users/vshkolyar/events{/privacy}", "followers_url": "https://api.github.com/users/vshkolyar/followers", "following_url": "https://api.github.com/users/vshkolyar/following{/other_user}", "gists_url": "https://api.github.com/users/vshkolyar/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/vshkolyar", "id": 1769283, "login": "vshkolyar", "node_id": "MDQ6VXNlcjE3NjkyODM=", "organizations_url": "https://api.github.com/users/vshkolyar/orgs", "received_events_url": "https://api.github.com/users/vshkolyar/received_events", "repos_url": "https://api.github.com/users/vshkolyar/repos", "site_admin": false, "starred_url": "https://api.github.com/users/vshkolyar/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/vshkolyar/subscriptions", "type": "User", "url": "https://api.github.com/users/vshkolyar" }
[]
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-08-28T19:23:36Z
2013-09-07T00:02:10Z
2013-09-07T00:02:10Z
NONE
null
After selection DataFrame leave in the new DataFrame the labels set from original one, include those that not selected (see 185 & 186 vs 187 & 188 - the value 3 shouldn't be in the levels sets): In [179]: tdf = pd.DataFrame([[1,1,1],[2,2,2],[3,3,3]]) In [180]: tdf.set_index([0,1], inplace=True) In [181]: tdf Out[181]: 2 0 1 1 1 1 2 2 2 3 3 3 In [182]: tdf12 = tdf.loc[1:2] In [183]: tdf12 Out[183]: 2 0 1 1 1 1 2 2 2 In [184]: tdf12.index Out[184]: MultiIndex [(1, 1), (2, 2)] In [185]: tdf12.index.levels[0] Out[185]: Int64Index([1, 2, 3], dtype=int64) In [186]: tdf12.index.levels[1] Out[186]: Int64Index([1, 2, 3], dtype=int64) In [187]: tdf12.index.get_level_values(0) Out[187]: Int64Index([1, 2], dtype=int64) In [188]: tdf12.index.get_level_values(1) Out[188]: Int64Index([1, 2], dtype=int64) In [189]: tdf12.index.labels Out[189]: [array([0, 1]), array([0, 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/4701/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4701/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4702
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4702/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4702/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4702/events
https://github.com/pandas-dev/pandas/issues/4702
18,694,472
MDU6SXNzdWUxODY5NDQ3Mg==
4,702
Bug in read_csv when passing header kwarg?
{ "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" }
[ { "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" }
25
2013-08-28T20:49:09Z
2013-10-24T13:39:19Z
2013-10-24T13:39:19Z
CONTRIBUTOR
null
Seems to lose a row when passing a list as header, check it out: ``` >>> from StringIO import StringIO >>> import pandas >>> text = """ a a a b c c q r s t u v 1 2 3 4 5 6 1 2 3 4 5 6 """ >>> # expected behavior without header >>> pandas.read_csv(StringIO(text.strip()), sep='\s+') a a.1 a.2 b c c.1 0 q r s t u v 1 1 2 3 4 5 6 2 1 2 3 4 5 6 >>> #drops row with specified header >>> pandas.read_csv(StringIO(text.strip()), sep='\s+', header=[0, 1]) (a, q) (a, r) (a, s) (b, t) (c, u) (c, v) 0 1 2 3 4 5 6 >>> pandas.read_csv(StringIO(text.strip()), sep='\s+', header=[0, 1], tupleize_cols=False) a b c q r s t u v 0 1 2 3 4 5 6 ```
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4702/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4702/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4703
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4703/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4703/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4703/events
https://github.com/pandas-dev/pandas/issues/4703
18,698,834
MDU6SXNzdWUxODY5ODgzNA==
4,703
Json import sorting
{ "avatar_url": "https://avatars.githubusercontent.com/u/837725?v=4", "events_url": "https://api.github.com/users/ghego/events{/privacy}", "followers_url": "https://api.github.com/users/ghego/followers", "following_url": "https://api.github.com/users/ghego/following{/other_user}", "gists_url": "https://api.github.com/users/ghego/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/ghego", "id": 837725, "login": "ghego", "node_id": "MDQ6VXNlcjgzNzcyNQ==", "organizations_url": "https://api.github.com/users/ghego/orgs", "received_events_url": "https://api.github.com/users/ghego/received_events", "repos_url": "https://api.github.com/users/ghego/repos", "site_admin": false, "starred_url": "https://api.github.com/users/ghego/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/ghego/subscriptions", "type": "User", "url": "https://api.github.com/users/ghego" }
[ { "color": "3465A4", "default": false, "description": null, "id": 134699, "name": "Docs", "node_id": "MDU6TGFiZWwxMzQ2OTk=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs" }, { "color": "207de5", "default": false, "description": "read_json, to_json, json_normalize", "id": 49379259, "name": "IO JSON", "node_id": "MDU6TGFiZWw0OTM3OTI1OQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20JSON" } ]
closed
false
null
[]
{ "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" }
22
2013-08-28T22:02:05Z
2016-10-12T23:04:09Z
2013-10-21T00:41:26Z
NONE
null
Noticed that if export a df to json file and then reload the data, ordering is not kept. ``` python import pandas as pd df.to_json('test.json') newdf = pd.read_json('test.json') print df.index ``` gives: ``` python 1 10 100 .... ``` instead of ``` python 1 2 3 .... ``` it suffices to call `newdf = pd.read_json('test.json').sort()` to have the what I'd expect. Is this intended behaviour or bug?
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4703/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4703/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4704
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4704/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4704/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4704/events
https://github.com/pandas-dev/pandas/issues/4704
18,705,210
MDU6SXNzdWUxODcwNTIxMA==
4,704
fmt='t' does not work for put and .to_hdf
{ "avatar_url": "https://avatars.githubusercontent.com/u/664644?v=4", "events_url": "https://api.github.com/users/kghose/events{/privacy}", "followers_url": "https://api.github.com/users/kghose/followers", "following_url": "https://api.github.com/users/kghose/following{/other_user}", "gists_url": "https://api.github.com/users/kghose/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/kghose", "id": 664644, "login": "kghose", "node_id": "MDQ6VXNlcjY2NDY0NA==", "organizations_url": "https://api.github.com/users/kghose/orgs", "received_events_url": "https://api.github.com/users/kghose/received_events", "repos_url": "https://api.github.com/users/kghose/repos", "site_admin": false, "starred_url": "https://api.github.com/users/kghose/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/kghose/subscriptions", "type": "User", "url": "https://api.github.com/users/kghose" }
[]
closed
false
null
[]
null
4
2013-08-29T00:28:11Z
2013-08-29T00:36:03Z
2013-08-29T00:31:40Z
NONE
null
``` python import pandas as pd, numpy df = pd.DataFrame(numpy.empty((10,10))) df.to_hdf('testme.h5','data',fmt='t') store = pd.HDFStore('testme.h5') In [7]: store Out[7]: <class 'pandas.io.pytables.HDFStore'> File path: testme.h5 /data frame (shape->[10,10]) store.put('data1',df,fmt='t') In [10]: store Out[10]: <class 'pandas.io.pytables.HDFStore'> File path: testme.h5 /data frame (shape->[10,10]) /data1 frame (shape->[10,10]) store.append('data2',df) In [12]: store Out[12]: <class 'pandas.io.pytables.HDFStore'> File path: testme.h5 /data frame (shape->[10,10]) /data1 frame (shape->[10,10]) /data2 frame_table (typ->appendable,nrows->10,ncols->10,indexers->[index]) In [13]: pd.__version__ Out[13]: '0.12.0' ```
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4704/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4704/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4705
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4705/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4705/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4705/events
https://github.com/pandas-dev/pandas/issues/4705
18,714,713
MDU6SXNzdWUxODcxNDcxMw==
4,705
Plotting performance deterioration on DataFrames with date-index
{ "avatar_url": "https://avatars.githubusercontent.com/u/60383?v=4", "events_url": "https://api.github.com/users/davaco/events{/privacy}", "followers_url": "https://api.github.com/users/davaco/followers", "following_url": "https://api.github.com/users/davaco/following{/other_user}", "gists_url": "https://api.github.com/users/davaco/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/davaco", "id": 60383, "login": "davaco", "node_id": "MDQ6VXNlcjYwMzgz", "organizations_url": "https://api.github.com/users/davaco/orgs", "received_events_url": "https://api.github.com/users/davaco/received_events", "repos_url": "https://api.github.com/users/davaco/repos", "site_admin": false, "starred_url": "https://api.github.com/users/davaco/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/davaco/subscriptions", "type": "User", "url": "https://api.github.com/users/davaco" }
[ { "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": "8AE234", "default": false, "description": null, "id": 2413328, "name": "Visualization", "node_id": "MDU6TGFiZWwyNDEzMzI4", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Visualization" }, { "color": "a10c02", "default": false, "description": "Memory or execution speed performance", "id": 8935311, "name": "Performance", "node_id": "MDU6TGFiZWw4OTM1MzEx", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Performance" }, { "color": "e11d21", "default": false, "description": "Functionality that used to work in a prior pandas version", "id": 32815646, "name": "Regression", "node_id": "MDU6TGFiZWwzMjgxNTY0Ng==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Regression" } ]
closed
false
null
[]
{ "closed_at": "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-08-29T06:49:08Z
2013-09-07T21:28:09Z
2013-09-07T21:28:09Z
NONE
null
The below code-sample gives a big performance drop on plotting in pandas 0.12, compared to pandas 0.11: In Pandas 0.12 : "Ran in 0:00:29.542475 secs" In Pandas 0.11 : "Ran in 0:00:06.653506 secs" It only happens on a date-indexed DataFrame: from pandas import * from numpy.random import randn N = 10000 M = 25 df = DataFrame(randn(N,M), index=date_range('1/1/1975', periods=N)) t0 = datetime.now() df.plot() print("Ran in %s secs" % (datetime.now() - t0))
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4705/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4705/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4706
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4706/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4706/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4706/events
https://github.com/pandas-dev/pandas/pull/4706
18,728,241
MDExOlB1bGxSZXF1ZXN0Nzk1MTQ1MQ==
4,706
ENH: Ability to tz localize when index is implicility in tz
{ "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
{ "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" }
[ { "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_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" }
37
2013-08-29T12:40:13Z
2014-06-20T11:17:26Z
2013-10-02T20:59:51Z
CONTRIBUTOR
null
Fix to issue #4230 which allows to localize an index which is implicitly in a tz (e.g., reading from a file) by passing imply_dst to tz_localize.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4706/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4706/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4706.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4706", "merged_at": "2013-10-02T20:59:51Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4706.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4706" }
https://api.github.com/repos/pandas-dev/pandas/issues/4707
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4707/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4707/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4707/events
https://github.com/pandas-dev/pandas/issues/4707
18,771,334
MDU6SXNzdWUxODc3MTMzNA==
4,707
pandas.json handling of integers in floating point arrays
{ "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": "e10c02", "default": false, "description": null, "id": 76811, "name": "Bug", "node_id": "MDU6TGFiZWw3NjgxMQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug" }, { "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": "006b75", "default": false, "description": "Arithmetic, Comparison, and Logical operations", "id": 47223669, "name": "Numeric Operations", "node_id": "MDU6TGFiZWw0NzIyMzY2OQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Numeric%20Operations" }, { "color": "207de5", "default": false, "description": "read_json, to_json, json_normalize", "id": 49379259, "name": "IO JSON", "node_id": "MDU6TGFiZWw0OTM3OTI1OQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20JSON" } ]
closed
false
null
[]
{ "closed_at": "2015-03-23T10:50:37Z", "closed_issues": 400, "created_at": "2014-02-14T03:31:22Z", "creator": { "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://api.github.com/users/jreback/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/jreback", "id": 953992, "login": "jreback", "node_id": "MDQ6VXNlcjk1Mzk5Mg==", "organizations_url": "https://api.github.com/users/jreback/orgs", "received_events_url": "https://api.github.com/users/jreback/received_events", "repos_url": "https://api.github.com/users/jreback/repos", "site_admin": false, "starred_url": "https://api.github.com/users/jreback/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jreback/subscriptions", "type": "User", "url": "https://api.github.com/users/jreback" }, "description": "after 0.15 of course!", "due_on": "2015-03-22T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/25", "id": 569113, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/25/labels", "node_id": "MDk6TWlsZXN0b25lNTY5MTEz", "number": 25, "open_issues": 0, "state": "closed", "title": "0.16.0", "updated_at": "2017-08-24T09:17:49Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/25" }
6
2013-08-30T05:10:35Z
2014-02-17T02:35:55Z
2014-02-17T02:35:55Z
MEMBER
null
cc @Komnomnomnom I noticed a discrepancy between `JSON.stringify` in Chrome and both the built-in `json` package (python 2.7 at least) and `ultrajson`. In short the value `4.0`, say, encodes as `"4"` in Chrome and `"4.0"` in the others. In JavaScript-land, this has no practical impact, but I thought I'd bring it up in case others felt we should tweak ultrajson to conform.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4707/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4707/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4708
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4708/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4708/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4708/events
https://github.com/pandas-dev/pandas/issues/4708
18,792,219
MDU6SXNzdWUxODc5MjIxOQ==
4,708
BUG: A zero length series written to HDF cannot be read back.
{ "avatar_url": "https://avatars.githubusercontent.com/u/4680320?v=4", "events_url": "https://api.github.com/users/prossahl/events{/privacy}", "followers_url": "https://api.github.com/users/prossahl/followers", "following_url": "https://api.github.com/users/prossahl/following{/other_user}", "gists_url": "https://api.github.com/users/prossahl/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/prossahl", "id": 4680320, "login": "prossahl", "node_id": "MDQ6VXNlcjQ2ODAzMjA=", "organizations_url": "https://api.github.com/users/prossahl/orgs", "received_events_url": "https://api.github.com/users/prossahl/received_events", "repos_url": "https://api.github.com/users/prossahl/repos", "site_admin": false, "starred_url": "https://api.github.com/users/prossahl/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/prossahl/subscriptions", "type": "User", "url": "https://api.github.com/users/prossahl" }
[ { "color": "e10c02", "default": false, "description": null, "id": 76811, "name": "Bug", "node_id": "MDU6TGFiZWw3NjgxMQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug" }, { "color": "5319e7", "default": false, "description": "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": "2014-02-03T05:17:36Z", "closed_issues": 314, "created_at": "2013-08-26T22:11:58Z", "creator": { "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" }, "description": "Set to 2014-01-20\r\n@y-p\r\n\r\n0.13.0 ANN finally out on 2014-01-15, resetting two weeks hence, on 2014-01-29\r\n@y-p\r\n\r\n2014-01-27: Still getting steady bug reports, pushing one week to 2014-02-4\r\n@y-p\r\n\r\n2014-02-03: Released.", "due_on": "2014-02-04T08:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/23", "id": 412013, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/23/labels", "node_id": "MDk6TWlsZXN0b25lNDEyMDEz", "number": 23, "open_issues": 0, "state": "closed", "title": "0.13.1", "updated_at": "2014-02-03T05:18:00Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/23" }
0
2013-08-30T14:56:41Z
2013-10-15T12:42:35Z
2013-10-15T12:42:35Z
CONTRIBUTOR
null
This happens with and empty series with numpy arrays for both the values and the index. ``` python >>> import pandas as pd >>> import numpy as np >>> >>> with pd.get_store('foo.h5') as store: ... s = pd.Series(np.array([], dtype=np.int64), index=np.array([], dtype=np.int64)) ... store['s'] = s ... s = store['s'] ... Traceback (most recent call last): File "<stdin>", line 4, in <module> File "/users/is/pross/workspace/pandas/git/pandas/pandas/io/pytables.py", line 349, in __getitem__ return self.get(key) File "/users/is/pross/workspace/pandas/git/pandas/pandas/io/pytables.py", line 507, in get return self._read_group(group) File "/users/is/pross/workspace/pandas/git/pandas/pandas/io/pytables.py", line 1093, in _read_group return s.read(**kwargs) File "/users/is/pross/workspace/pandas/git/pandas/pandas/io/pytables.py", line 2247, in read return Series(values, index=index, name=self.name) File "/users/is/pross/workspace/pandas/git/pandas/pandas/core/series.py", line 657, in __init__ data = SingleBlockManager(data, index, fastpath=True) File "/users/is/pross/workspace/pandas/git/pandas/pandas/core/internals.py", line 2942, in __init__ block = make_block(block, axis, axis, ndim=1, fastpath=True) File "/users/is/pross/workspace/pandas/git/pandas/pandas/core/internals.py", line 1535, in make_block return klass(values, items, ref_items, ndim=ndim, fastpath=fastpath, placement=placement) File "/users/is/pross/workspace/pandas/git/pandas/pandas/core/internals.py", line 62, in __init__ % (len(items), len(values))) ValueError: Wrong number of items passed 1, indices imply 0 ``` I have fixed this locally and will put in a 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/4708/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4708/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4709
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4709/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4709/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4709/events
https://github.com/pandas-dev/pandas/pull/4709
18,793,122
MDExOlB1bGxSZXF1ZXN0Nzk4NzIwNw==
4,709
BUG: (GH4708) A zero length series written to HDF cannot be read back.
{ "avatar_url": "https://avatars.githubusercontent.com/u/4680320?v=4", "events_url": "https://api.github.com/users/prossahl/events{/privacy}", "followers_url": "https://api.github.com/users/prossahl/followers", "following_url": "https://api.github.com/users/prossahl/following{/other_user}", "gists_url": "https://api.github.com/users/prossahl/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/prossahl", "id": 4680320, "login": "prossahl", "node_id": "MDQ6VXNlcjQ2ODAzMjA=", "organizations_url": "https://api.github.com/users/prossahl/orgs", "received_events_url": "https://api.github.com/users/prossahl/received_events", "repos_url": "https://api.github.com/users/prossahl/repos", "site_admin": false, "starred_url": "https://api.github.com/users/prossahl/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/prossahl/subscriptions", "type": "User", "url": "https://api.github.com/users/prossahl" }
[]
closed
false
null
[]
{ "closed_at": "2014-02-03T05:17:36Z", "closed_issues": 314, "created_at": "2013-08-26T22:11:58Z", "creator": { "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" }, "description": "Set to 2014-01-20\r\n@y-p\r\n\r\n0.13.0 ANN finally out on 2014-01-15, resetting two weeks hence, on 2014-01-29\r\n@y-p\r\n\r\n2014-01-27: Still getting steady bug reports, pushing one week to 2014-02-4\r\n@y-p\r\n\r\n2014-02-03: Released.", "due_on": "2014-02-04T08:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/23", "id": 412013, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/23/labels", "node_id": "MDk6TWlsZXN0b25lNDEyMDEz", "number": 23, "open_issues": 0, "state": "closed", "title": "0.13.1", "updated_at": "2014-02-03T05:18:00Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/23" }
9
2013-08-30T15:12:15Z
2014-06-23T14:43:41Z
2013-10-15T12:42:36Z
CONTRIBUTOR
null
closes #4708 by spotting when the sentinel single value has been written. This was not being done for the index which resulted in a values/index length miss-match.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4709/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4709/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4709.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4709", "merged_at": "2013-10-15T12:42:35Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4709.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4709" }
https://api.github.com/repos/pandas-dev/pandas/issues/4710
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4710/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4710/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4710/events
https://github.com/pandas-dev/pandas/issues/4710
18,795,303
MDU6SXNzdWUxODc5NTMwMw==
4,710
hierarchical index + frame_table + data_columns=True -> TypeError
{ "avatar_url": "https://avatars.githubusercontent.com/u/664644?v=4", "events_url": "https://api.github.com/users/kghose/events{/privacy}", "followers_url": "https://api.github.com/users/kghose/followers", "following_url": "https://api.github.com/users/kghose/following{/other_user}", "gists_url": "https://api.github.com/users/kghose/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/kghose", "id": 664644, "login": "kghose", "node_id": "MDQ6VXNlcjY2NDY0NA==", "organizations_url": "https://api.github.com/users/kghose/orgs", "received_events_url": "https://api.github.com/users/kghose/received_events", "repos_url": "https://api.github.com/users/kghose/repos", "site_admin": false, "starred_url": "https://api.github.com/users/kghose/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/kghose/subscriptions", "type": "User", "url": "https://api.github.com/users/kghose" }
[ { "color": "e10c02", "default": false, "description": null, "id": 76811, "name": "Bug", "node_id": "MDU6TGFiZWw3NjgxMQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug" }, { "color": "5319e7", "default": false, "description": "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" }
6
2013-08-30T15:52:54Z
2013-08-31T20:57:53Z
2013-08-31T20:00:14Z
NONE
null
``` import pandas as pd, numpy r = numpy.empty((3,4)) index = pd.MultiIndex.from_tuples([('A','a'), ('A','b'), ('B','a'), ('B','b')]) df = pd.DataFrame(r, columns=index) store = pd.HDFStore('df.h5') store.put('data',df) #->OK store.put('data1',df,table=True) #-> Ok store.put('data2',df,table=True,data_columns=['A']) #-> Ok store.put('data3',df,table=True,data_columns=True) #-> raises hell #TypeError: not all arguments converted during string formatting store['data']['A'] #->OK store['data1']['A'] #-> KeyError KeyError: u'no item named A' In [43]: df = store['data'] In [44]: df Out[44]: A B a b a b 0 2 -1.727234e-77 2.964394e-323 0.000000e+00 1 0 0.000000e+00 0.000000e+00 0.000000e+00 2 0 0.000000e+00 0.000000e+00 8.344027e-309 In [45]: df = store['data1'] In [46]: df Out[46]: (A, a) (A, b) (B, a) (B, b) 0 2 -1.727234e-77 2.964394e-323 0.000000e+00 1 0 0.000000e+00 0.000000e+00 0.000000e+00 2 0 0.000000e+00 0.000000e+00 8.344027e-309 pd.__version__ -> '0.12.0' ```
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4710/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4710/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4711
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4711/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4711/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4711/events
https://github.com/pandas-dev/pandas/issues/4711
18,801,116
MDU6SXNzdWUxODgwMTExNg==
4,711
Unable to install pandas
{ "avatar_url": "https://avatars.githubusercontent.com/u/1966383?v=4", "events_url": "https://api.github.com/users/devavrat/events{/privacy}", "followers_url": "https://api.github.com/users/devavrat/followers", "following_url": "https://api.github.com/users/devavrat/following{/other_user}", "gists_url": "https://api.github.com/users/devavrat/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/devavrat", "id": 1966383, "login": "devavrat", "node_id": "MDQ6VXNlcjE5NjYzODM=", "organizations_url": "https://api.github.com/users/devavrat/orgs", "received_events_url": "https://api.github.com/users/devavrat/received_events", "repos_url": "https://api.github.com/users/devavrat/repos", "site_admin": false, "starred_url": "https://api.github.com/users/devavrat/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/devavrat/subscriptions", "type": "User", "url": "https://api.github.com/users/devavrat" }
[]
closed
false
null
[]
null
2
2013-08-30T17:51:02Z
2013-08-30T19:12:54Z
2013-08-30T19:12:54Z
NONE
null
I have followed earlier posts for installing pandas. I have been having trouble installing it. Below are some details. Mac Lion 10.7.5 Installed Cython (using pip install, which utilized llvm-gcc-4.2, for example) Trying to install pandas using pip install from distribution or from git fails giving error: ###### pandas/index.c: In function ‘__pyx_f_8datetime__dts_to_pydatetime’: pandas/index.c:10644: warning: implicit conversion shortens 64-bit value into a 32-bit value lipo: can't open input file: /var/tmp//ccJ7Amtv.out (No such file or directory) error: command 'llvm-gcc-4.2' failed with exit status 1 --- Cleaning up... ###### Downloading source and installing by running python setup.py install gives error ###### File "setup.py", line 91, in build_extensions numpy_incl = pkg_resources.resource_filename('numpy', 'core/include') ###### 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/4711/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4711/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4712
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4712/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4712/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4712/events
https://github.com/pandas-dev/pandas/issues/4712
18,811,855
MDU6SXNzdWUxODgxMTg1NQ==
4,712
Unused (and undocumented) `kind` parameter in `read_excel`
{ "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" }
[ { "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" }
2
2013-08-30T22:01:48Z
2013-09-01T21:03:40Z
2013-09-01T21:03:40Z
CONTRIBUTOR
null
closes #4563 Why does read_excel take a `kind` parameter at all? It gets passed to the `ExcelFile` constructor, set on the object and then (as far as I can tell) never gets used for anything. This should either be removed from the signature (which doesn't affect anything, because it will be accepted into kwds anyways) or added into the docs and then actually used for something. if we remove it, just need to add a: ``` python # Remove this branch in 0.14 if 'kind' in kwargs: warnings.warn("Kind is deprecated and will be removed in a future version of pandas") kwargs.pop('kind') ``` Was not previously being used for anything anyways.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4712/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4712/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4713
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4713/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4713/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4713/events
https://github.com/pandas-dev/pandas/pull/4713
18,812,480
MDExOlB1bGxSZXF1ZXN0Nzk5ODQ2Mg==
4,713
CLN: Remove unused and undocumented kind keyword from read_excel
{ "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" }
4
2013-08-30T22:19:44Z
2014-06-13T16:05:16Z
2013-09-01T21:03:40Z
CONTRIBUTOR
null
Pops kwarg and warns if you pass it (rather than passing on). Fixes #4712
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4713/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4713/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4713.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4713", "merged_at": "2013-09-01T21:03:40Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4713.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4713" }
https://api.github.com/repos/pandas-dev/pandas/issues/4714
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4714/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4714/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4714/events
https://github.com/pandas-dev/pandas/pull/4714
18,823,104
MDExOlB1bGxSZXF1ZXN0ODAwMzQyNw==
4,714
API: for HDFStore, add the keyword dropna=True to append to change whether to write ALL nan rows to the store (GH4625)
{ "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-08-31T14:09:16Z
2014-07-16T08:25:38Z
2013-08-31T14:09:35Z
CONTRIBUTOR
null
closes #4625 also settable via the option io.hdf.dropna_table retains backward compat
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4714/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4714/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4714.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4714", "merged_at": "2013-08-31T14:09:35Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4714.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4714" }
https://api.github.com/repos/pandas-dev/pandas/issues/4715
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4715/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4715/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4715/events
https://github.com/pandas-dev/pandas/pull/4715
18,823,458
MDExOlB1bGxSZXF1ZXN0ODAwMzU3MQ==
4,715
API: change nomeclature in HDFStore to use format=fixed(f) | table(t)
{ "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-08-31T14:46:30Z
2014-07-16T08:25:40Z
2013-08-31T14:57:45Z
CONTRIBUTOR
null
see #4645 Storer has been renamed to Fixed (and all docs changed) added option: `io.hdf.default_format` to allow the overriding of the default format format is now specified as: `format=` with a value of (`fixed(f)` or `table(t)`) should be a bit more intuitve
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4715/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4715/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4715.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4715", "merged_at": "2013-08-31T14:57:45Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4715.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4715" }
https://api.github.com/repos/pandas-dev/pandas/issues/4716
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4716/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4716/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4716/events
https://github.com/pandas-dev/pandas/pull/4716
18,827,450
MDExOlB1bGxSZXF1ZXN0ODAwNTA2NQ==
4,716
API/BUG: a column multi-index will be recreated properly (GH4710)
{ "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-08-31T19:51:41Z
2014-06-16T09:10:52Z
2013-08-31T20:00:14Z
CONTRIBUTOR
null
closes #4710 API: raise on trying to use a multi-index with data_columns on the same axis
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4716/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4716/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4716.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4716", "merged_at": "2013-08-31T20:00:14Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4716.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4716" }
https://api.github.com/repos/pandas-dev/pandas/issues/4717
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4717/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4717/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4717/events
https://github.com/pandas-dev/pandas/issues/4717
18,829,713
MDU6SXNzdWUxODgyOTcxMw==
4,717
CLN: Incorrect name in docstrings for generic
{ "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" }
[ { "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": "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" }
20
2013-08-31T23:03:05Z
2013-10-28T01:55:09Z
2013-10-28T01:54:39Z
CONTRIBUTOR
null
E.g. for reindex on panel ``` elp on method reindex in module pandas.core.generic: reindex(self, *args, **kwargs) method of pandas.core.panel.Panel instance Conform DataFrame to new index with optional filling logic, placing NA/NaN in locations having no value in the previous index. A new object is produced unless the new index is equivalent to the current one and copy=False Parameters ---------- axes : array-like, optional (can be specified in order, or as keywords) New labels / index to conform to. Preferably an Index object to avoid duplicating data method : {'backfill', 'bfill', 'pad', 'ffill', None}, default None Method to use for filling holes in reindexed DataFrame pad / ffill: propagate last valid observation forward to next valid backfill / bfill: use NEXT valid observation to fill gap copy : boolean, default True Return a new object, even if the passed indexes are the same level : int or name Broadcast across a level, matching Index values on the passed MultiIndex level fill_value : scalar, default np.NaN Value to use for missing values. Defaults to NaN, but can be any "compatible" value limit : int, default None Maximum size gap to forward or backward fill takeable : boolean, default False treat the passed as positional values Examples -------- ``` Functions that need parameters list/explanation: - [x] swapaxes - [x] pop [what does 'items' mean?] Functions that only need list of axes: - [x] filter [need to check if it should be defined for Series at all] - [x] fillna [Series, Frame] - [x] reindex_axis [needs class name + axes] - [x] rename [might need a bit more logic to do docstring + note that args interpreted like axes??] - [x] transpose Functions needing a little work: - [x] reindex - needs to have panel check that both major and major_axis aren't passed, same with minor and minor_axis (like `SparsePanel` does) - would be better if there were individual functions for Series Frame and Panel that explicitly enumerate axes in type signature. Functions that may not need to be changed: - [x] align Functions that could use slight wording tweaks: - [x] truncate - [x] where - [x] mask
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4717/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4717/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4718
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4718/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4718/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4718/events
https://github.com/pandas-dev/pandas/pull/4718
18,829,929
MDExOlB1bGxSZXF1ZXN0ODAwNTk2NQ==
4,718
ENH: Better rename/set_names handling for Index
{ "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
[]
null
2
2013-08-31T23:24:53Z
2014-06-12T13:18:24Z
2013-09-01T01:21:37Z
CONTRIBUTOR
null
Fixes #4628 - MultiIndex now responds correctly to `rename` (synonym for `set_names`) - `set_names` checks that input is list like. - Cleaner error message for immutable ops. - Added in previously missing tests for MultiIndex immutable metadata. - Altered `is_list_like` to check for binary_types as well. For now, this is the behavior for Index.rename. It's simple and clear and lets existing code just work instead of dealing with typechecks: ``` python In [2]: ind = Index(range(10)) In [3]: ind = ind.rename((u'A', u'B')) In [4]: ind.name Out[4]: (u'A', u'B') In [5]: ind.names Out[5]: FrozenList([(u'A', u'B')]) ```
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4718/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4718/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4718.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4718", "merged_at": "2013-09-01T01:21:37Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4718.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4718" }
https://api.github.com/repos/pandas-dev/pandas/issues/4719
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4719/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4719/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4719/events
https://github.com/pandas-dev/pandas/pull/4719
18,829,971
MDExOlB1bGxSZXF1ZXN0ODAwNTk4MQ==
4,719
DOC: Updates to CONTRIBUTING.md
{ "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" }
0
2013-08-31T23:28:43Z
2014-07-16T08:25:51Z
2013-09-01T18:45:34Z
CONTRIBUTOR
null
Some updates that are probably necessary - figured I'd put this in a PR first then merge in a bit.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4719/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4719/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4719.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4719", "merged_at": "2013-09-01T18:45:34Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4719.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4719" }
https://api.github.com/repos/pandas-dev/pandas/issues/4720
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4720/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4720/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4720/events
https://github.com/pandas-dev/pandas/issues/4720
18,830,694
MDU6SXNzdWUxODgzMDY5NA==
4,720
ENH: Question: pivot_table() column order and hierarchy of index
{ "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" }
[]
closed
false
null
[]
null
5
2013-09-01T00:58:40Z
2013-09-03T10:56:22Z
2013-09-03T10:56:12Z
NONE
null
I am trying to use the pivot_table() method. Here is the sample code: ``` In [15]: import pandas as pd In [16]: import numpy as np In [17]: df = pd.DataFrame({'A' : ['one', 'one', 'two', 'three'] * 6, 'B' : ['A', 'B', 'C'] * 8, 'C' : ['foo', 'foo', 'foo', 'bar', 'bar', 'bar'] * 4, 'D' : np.random.randn(24), 'E' : np.random.randn(24)}) In [18]: df Out[18]: A B C D E 0 one A foo -1.087882 -1.148548 1 one B foo 0.198324 -1.124947 2 two C foo -0.685986 -0.070714 3 three A bar 1.443773 -1.453439 4 one B bar -0.156894 0.223677 5 one C bar 0.571895 2.437650 6 two A foo 0.594358 1.010818 7 three B foo 0.897380 0.901461 8 one C foo 1.216059 -0.204750 9 one A bar -0.982300 -0.413738 10 two B bar 1.415841 -0.624734 11 three C bar -2.409420 2.532603 12 one A foo -2.215678 -1.329448 13 one B foo 0.157040 0.674976 14 two C foo 0.260635 0.741918 15 three A bar 0.369208 -0.133038 16 one B bar -0.334977 0.982732 17 one C bar 0.262204 -0.534082 18 two A foo 0.761802 0.221214 19 three B foo 0.229975 -1.616976 20 one C foo -0.288168 -0.465998 21 one A bar -0.510864 -0.734697 22 two B bar 0.165877 -0.412671 23 three C bar 0.714225 0.664559 In [19]: pd.pivot_table(df, values=['E','D'], rows=['A'], cols=['C','B'],aggfunc='sum') Out[19]: D E \ C bar foo bar B A B C A B C A A one -1.493164 -0.491871 0.834099 -3.303559 0.355364 0.927891 -1.148435 three 1.812980 NaN -1.695195 NaN 1.127355 NaN -1.586477 two NaN 1.581718 NaN 1.356160 NaN -0.425351 NaN C foo B B C A B C A one 1.206409 1.903568 -2.477996 -0.449970 -0.670747 three NaN 3.197161 NaN -0.715515 NaN two -1.037405 NaN 1.232031 NaN 0.671204 In [20]: The output I would like to see instead is (pivoted using Excel) bar A B C Sum of E Sum of D Sum of E Sum of D Sum of E Sum of D \ one -1.148435 -1.493164 1.206409 -0.491871 1.903568 0.834099 three -1.586477 1.812981 3.197162 -1.695195 two -1.037405 1.581718 foo A B C Sum of E Sum of D Sum of E Sum of D Sum of E Sum of D -2.477996 -3.30356 -0.449971 0.355364 -0.670748 0.927891 -0.715515 1.127355 1.232032 1.35616 0.671204 -0.425351 ``` 1. The summation column are under the column index under Excel, while in pivot_table() they are above the column indexes. So on the columns are group by column indexes while under pandas they are grouped by the values. 2. Under Excel the values order is maintained. E and then D while in pivot_table, it is alpha sorted, first D and then E (specification has it set as E and D). How can I mimic Excel pivoting? Thanks
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4720/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4720/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4721
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4721/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4721/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4721/events
https://github.com/pandas-dev/pandas/pull/4721
18,831,337
MDExOlB1bGxSZXF1ZXN0ODAwNjQ5NA==
4,721
CLN: Improve Exceptions in core/common, io/excel and core/format
{ "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" }
1
2013-09-01T02:13:11Z
2014-06-25T23:05:47Z
2013-09-02T02:11:31Z
CONTRIBUTOR
null
Related to #3954. Cleanups to Exceptions in core/common, io/excel, core/format. A few places I added `# pragma: no cover`, because it looked like the code was generally unreachable. A few cleanups in tests/test_common and better error message in `_mut_exclusive` (which needs to be used in Panel.reindex later on). Specific places to look at (you can also grep for `# pragma: no cover` in the diff): - core/common - lines 860 and 1162 - core/format - lines 359 and 823 - io/excel - lines 73, 382
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4721/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4721/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4721.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4721", "merged_at": "2013-09-02T02:11:31Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4721.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4721" }
https://api.github.com/repos/pandas-dev/pandas/issues/4722
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4722/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4722/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4722/events
https://github.com/pandas-dev/pandas/pull/4722
18,834,102
MDExOlB1bGxSZXF1ZXN0ODAwNzUxNQ==
4,722
PERF: faster plotting of timeseries with PeriodIndex
{ "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-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" }
29
2013-09-01T08:47:05Z
2014-06-20T14:26:19Z
2013-09-07T21:27:23Z
MEMBER
null
See discussion in #4705. This improves the speed of plotting timeseries with PeriodIndex (or with DatetimeIndex that is converted to a PeriodIndex during plotting) drastically: from 30 s in 0.12 (but 7 s in 0.11) to 0.2 s with this commit for the plotting of following data: ``` python N = 10000 M = 25 df = pd.DataFrame(np.random.randn(N,M), index=pd.date_range('1/1/1975', periods=N)) df.plot() ``` Some questions I still have: - I added a check for `PeriodIndex`, but I left the original `if isinstance(values, Index)` in place. Is this needed? Is it possible that another index than PeriodIndex ends up in PeriodConverter? - @jreback You asked in the issue to do some tests (to at least ensure that their is a valid plot). Do you just mean by plotting it and looking if it seems OK? This seems OK. Or can you do some tests for plotting in the testing infrastructure? - Would it be interesting to add a performance test for this case? Because it was a big decrease in speed with 0.12 which was not detected.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4722/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4722/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4722.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4722", "merged_at": "2013-09-07T21:27:23Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4722.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4722" }
https://api.github.com/repos/pandas-dev/pandas/issues/4723
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4723/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4723/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4723/events
https://github.com/pandas-dev/pandas/pull/4723
18,834,230
MDExOlB1bGxSZXF1ZXN0ODAwNzU1OQ==
4,723
DOC: small clarification in DataFrame docstring
{ "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
2
2013-09-01T09:00:17Z
2014-07-16T08:25:56Z
2013-09-01T12:54:23Z
MEMBER
null
Two small things: - add that it is actually for the column labels - fixes small typo (not -> no)
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4723/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4723/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4723.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4723", "merged_at": "2013-09-01T12:54:23Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4723.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4723" }
https://api.github.com/repos/pandas-dev/pandas/issues/4724
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4724/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4724/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4724/events
https://github.com/pandas-dev/pandas/issues/4724
18,835,194
MDU6SXNzdWUxODgzNTE5NA==
4,724
BUG: frame_table > 1306 columns leads to corruption in hdf
{ "avatar_url": "https://avatars.githubusercontent.com/u/664644?v=4", "events_url": "https://api.github.com/users/kghose/events{/privacy}", "followers_url": "https://api.github.com/users/kghose/followers", "following_url": "https://api.github.com/users/kghose/following{/other_user}", "gists_url": "https://api.github.com/users/kghose/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/kghose", "id": 664644, "login": "kghose", "node_id": "MDQ6VXNlcjY2NDY0NA==", "organizations_url": "https://api.github.com/users/kghose/orgs", "received_events_url": "https://api.github.com/users/kghose/received_events", "repos_url": "https://api.github.com/users/kghose/repos", "site_admin": false, "starred_url": "https://api.github.com/users/kghose/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/kghose/subscriptions", "type": "User", "url": "https://api.github.com/users/kghose" }
[]
closed
false
null
[]
null
10
2013-09-01T10:46:36Z
2013-09-03T02:19:14Z
2013-09-01T12:25:11Z
NONE
null
``` import pandas as pd, numpy store = pd.HDFStore('pd.h5','w') r = numpy.empty((1,1306)) store.put('data1', pd.DataFrame(r), table=True) r = numpy.empty((1,1307)) store.put('data2', pd.DataFrame(r), table=True) r = numpy.empty((1,5000)) store.put('data3', pd.DataFrame(r)) print store store.close() store = pd.HDFStore('pd.h5') print store ``` Output: ``` <class 'pandas.io.pytables.HDFStore'> File path: pd.h5 /data1 frame_table (typ->appendable,nrows->1,ncols->1306,indexers->[index]) /data2 frame_table (typ->appendable,nrows->1,ncols->1307,indexers->[index]) /data3 frame (shape->[1,5000]) <class 'pandas.io.pytables.HDFStore'> File path: pd.h5 /data1 frame_table (typ->appendable,nrows->1,ncols->1306,indexers->[index]) /data2 [invalid_HDFStore node: object of type 'NoneType' has no len()] /data2 frame (shape->[1,5000]) /data3 Closing remaining open files: pd.h5... done ```
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4724/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4724/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4725
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4725/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4725/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4725/events
https://github.com/pandas-dev/pandas/issues/4725
18,836,476
MDU6SXNzdWUxODgzNjQ3Ng==
4,725
API: mixin super class to Series/Index to support common methods
{ "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" }, { "color": "fbca04", "default": false, "description": "Related to non-user accessible pandas implementation", "id": 49094459, "name": "Internals", "node_id": "MDU6TGFiZWw0OTA5NDQ1OQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Internals" } ]
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-09-01T13:00:21Z
2013-09-01T13:01:51Z
2013-09-01T13:01:33Z
CONTRIBUTOR
null
http://stackoverflow.com/questions/18558429/create-a-new-dataframe-column-from-an-existing-one
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4725/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4725/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4726
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4726/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4726/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4726/events
https://github.com/pandas-dev/pandas/issues/4726
18,839,894
MDU6SXNzdWUxODgzOTg5NA==
4,726
BUG: Indexing with duplicate columns
{ "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" }
[ { "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" }
2
2013-09-01T17:42:42Z
2013-09-02T13:07:12Z
2013-09-02T13:07:12Z
CONTRIBUTOR
null
Currently failing test case: ``` python df = DataFrame([[1,2,'foo','bar']], columns=['a','a','a','a']) s = Series([1, 2, 'foo', 'bar'], index=['a', 'a', 'a', 'a'], name=0) assert_series_equal(df.irow(0), s) ``` Here's what's going on right now. ``` python In [3]: from pandas import * In [4]: df = DataFrame([[1,2,'foo','bar']], columns=['a','a','a','a']) In [5]: df Out[5]: a a a a 0 1 2 foo bar In [6]: df.irow(0) Out[6]: a bar a bar a bar a bar Name: 0, dtype: object In [7]: df.icol(0) Out[7]: 0 1 Name: a, dtype: int64 In [8]: df.columns Out[8]: Index([u'a', u'a', u'a', u'a'], 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/4726/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4726/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4727
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4727/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4727/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4727/events
https://github.com/pandas-dev/pandas/pull/4727
18,841,277
MDExOlB1bGxSZXF1ZXN0ODAxMDAzNA==
4,727
BUG: Fix DataFrame.from_records w/ normal ndarray.
{ "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
[]
null
4
2013-09-01T19:29:21Z
2014-06-22T21:30:43Z
2013-09-01T21:05:27Z
CONTRIBUTOR
null
I haven't looked at the `from_records` code before, which is why I'm spending all this time laying out a relatively minor change. Previously, was causing a TypeError about None not being iterable when arr.dtype.names was None. Now goes to 'last ditch' parsing instead. This was the original test case (that dates back, in one form or another, to at least 2010), looked like this: ``` python self.assertRaises(Exception, DataFrame.from_records, np.zeros((2, 3))) ``` Problem is that the actual Exception was a `TypeError: None is not iterable`-style exception, not something internal to the code. I changed this so now an `ndarray` that isn't structured (i.e., has `arr.dtype.names is None`) is treated separately from the structured ndarrays (so it goes into the general case 'last ditch' verison). Now it basically produces the same thing as passing the array to the DataFrame constructor: ``` python arr2 = np.zeros((2,3)) tm.assert_frame_equal(DataFrame.from_records(arr2), DataFrame(arr2)) ```
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4727/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4727/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4727.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4727", "merged_at": "2013-09-01T21:05:27Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4727.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4727" }
https://api.github.com/repos/pandas-dev/pandas/issues/4728
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4728/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4728/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4728/events
https://github.com/pandas-dev/pandas/issues/4728
18,842,707
MDU6SXNzdWUxODg0MjcwNw==
4,728
CLN: DataFrame constructor should dispatch to `from_records`
{ "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" }
[ { "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": "fbca04", "default": false, "description": "Related to non-user accessible pandas implementation", "id": 49094459, "name": "Internals", "node_id": "MDU6TGFiZWw0OTA5NDQ1OQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Internals" } ]
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-09-01T21:12:29Z
2013-09-01T23:21:06Z
2013-09-01T23:21:06Z
CONTRIBUTOR
null
as @jreback put it: main constructor should dispatch to from_records if either an ndarray has dtype.names or the dtype is a compound type
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4728/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4728/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4729
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4729/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4729/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4729/events
https://github.com/pandas-dev/pandas/pull/4729
18,843,067
MDExOlB1bGxSZXF1ZXN0ODAxMDcxNg==
4,729
BUG: (GH4726) bug in getting a cross-sectional using iloc/loc with a duplicate items 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" }
[]
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-09-01T21:38:12Z
2014-07-15T01:06:57Z
2013-09-02T13:07:12Z
CONTRIBUTOR
null
closes #4726
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4729/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4729/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4729.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4729", "merged_at": "2013-09-02T13:07:12Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4729.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4729" }
https://api.github.com/repos/pandas-dev/pandas/issues/4730
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4730/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4730/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4730/events
https://github.com/pandas-dev/pandas/issues/4730
18,843,392
MDU6SXNzdWUxODg0MzM5Mg==
4,730
Better error message when handling bad keys in json data
{ "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" }
[ { "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" }
0
2013-09-01T22:02:45Z
2013-09-17T04:40:23Z
2013-09-17T04:40:23Z
CONTRIBUTOR
null
Should read_json check for bad keys at the top level and catch them instead of passing them directly to the `DataFrame` constructor? Currently there is this test case in io/tests/test_json/test_pandas.py that shadows a slightly confusing error message: ``` python # bad key json = StringIO('{"badkey":["A","B"],' '"index":["2","3"],' '"data":[[1.0,"1"],[2.0,"2"],[null,"3"]]}') self.assertRaises(TypeError, read_json, json, orient="split") ``` If you change the `TypeError` to a `ValueError` so the test fails, you get the following traceback: ``` ERROR: pandas.io.tests.test_json.test_pandas:TestPandasContainer.test_frame_from_json_bad_data /usr/local/bin/vim +256 pandas/io/tests/test_json/test_pandas.py # test_frame_from_json_bad_data orient="split") /usr/local/bin/vim +471 python2.7/unittest/case.py # assertRaises callableObj(*args, **kwargs) /usr/local/bin/vim +178 pandas/io/json.py # read_json date_unit).parse() /usr/local/bin/vim +238 pandas/io/json.py # parse self._parse_no_numpy() /usr/local/bin/vim +456 pandas/io/json.py # _parse_no_numpy self.obj = DataFrame(dtype=None, **decoded) TypeError: __init__() got an unexpected keyword argument 'badkey' ```
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4730/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4730/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4731
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4731/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4731/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4731/events
https://github.com/pandas-dev/pandas/issues/4731
18,843,762
MDU6SXNzdWUxODg0Mzc2Mg==
4,731
ENH: return `NotImplemented` rather than raise TypeError in Period arithmetic.
{ "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" }
[ { "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": "006b75", "default": false, "description": "Arithmetic, Comparison, and Logical operations", "id": 47223669, "name": "Numeric Operations", "node_id": "MDU6TGFiZWw0NzIyMzY2OQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Numeric%20Operations" }, { "color": "eb6420", "default": false, "description": "Period data type", "id": 60635328, "name": "Period", "node_id": "MDU6TGFiZWw2MDYzNTMyOA==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Period" } ]
closed
false
null
[]
{ "closed_at": "2014-07-11T00:02:53Z", "closed_issues": 306, "created_at": "2014-04-27T23:40:28Z", "creator": { "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://api.github.com/users/jreback/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/jreback", "id": 953992, "login": "jreback", "node_id": "MDQ6VXNlcjk1Mzk5Mg==", "organizations_url": "https://api.github.com/users/jreback/orgs", "received_events_url": "https://api.github.com/users/jreback/received_events", "repos_url": "https://api.github.com/users/jreback/repos", "site_admin": false, "starred_url": "https://api.github.com/users/jreback/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jreback/subscriptions", "type": "User", "url": "https://api.github.com/users/jreback" }, "description": "bug fixes from 0.14.0", "due_on": "2014-07-11T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/27", "id": 641843, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/27/labels", "node_id": "MDk6TWlsZXN0b25lNjQxODQz", "number": 27, "open_issues": 0, "state": "closed", "title": "0.14.1", "updated_at": "2014-09-05T10:24:18Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/27" }
0
2013-09-01T22:34:14Z
2014-06-19T19:27:10Z
2014-06-19T19:27:10Z
CONTRIBUTOR
null
Right now, some of the error messages for in pandas/tseries/period.py are not so great: ``` python In [9]: period = Period('2000-01-03', 'B') In [10]: period > 1 --------------------------------------------------------------------------- TypeError Traceback (most recent call last) <ipython-input-10-df287da31a9f> in <module>() ----> 1 period > 1 /pandas/tseries/period.pyc in f(self, other) 172 return func(self.ordinal, other.ordinal) 173 else: --> 174 raise TypeError(other) 175 176 f.__name__ = name TypeError: 1 ``` And in the case above, should really return `NotImplemented` instead (so that they end up with an error message like): ``` python ----> 1 1 + period TypeError: unsupported operand type(s) for +: 'int' and 'Period' ``` Side note - that's only appropriate these are only used as magic methods (so that the Python interpreter converts them into the TypeError shown above...).
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4731/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4731/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4732
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4732/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4732/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4732/events
https://github.com/pandas-dev/pandas/pull/4732
18,845,590
MDExOlB1bGxSZXF1ZXN0ODAxMTYxOA==
4,732
CLN: Improve Exceptions in core/frame and testing in test_frame and test_multilievel
{ "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" }
13
2013-09-02T01:17:54Z
2014-06-16T19:56:48Z
2013-09-06T02:01:08Z
CONTRIBUTOR
null
More specific Exceptions (and better testing for them) through a number of parts of pandas. In particular, in `core/frame` / tests/test_frame and tests/test_multilevel Associated changes in some other parts of pandas to support it (mostly making sparse have the same exceptions as core/frame). - nearly everything that was a `TypeError` now checks message (to avoid `TypeError` confusion from changes in signature). - refactored some test methods and changed some places to use `assertRaises` and `assertRaisesRegexp` as context managers. - core/reshape no longer uses a specific `ReshapeError` (which wasn't really being used anywhere) - marked guard test cases with `# pragma: no cover` to hopefully make it easier to use coverage. - new `raise_with_traceback` method in `compat` which allows for 2/3 compatible preservation of traceback. Obviously some squashing to come. Related to #3954.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4732/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4732/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4732.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4732", "merged_at": "2013-09-06T02:01:08Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4732.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4732" }
https://api.github.com/repos/pandas-dev/pandas/issues/4733
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4733/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4733/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4733/events
https://github.com/pandas-dev/pandas/issues/4733
18,855,314
MDU6SXNzdWUxODg1NTMxNA==
4,733
Accessing unused columns in pivot_table
{ "avatar_url": "https://avatars.githubusercontent.com/u/3326681?v=4", "events_url": "https://api.github.com/users/wabee/events{/privacy}", "followers_url": "https://api.github.com/users/wabee/followers", "following_url": "https://api.github.com/users/wabee/following{/other_user}", "gists_url": "https://api.github.com/users/wabee/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/wabee", "id": 3326681, "login": "wabee", "node_id": "MDQ6VXNlcjMzMjY2ODE=", "organizations_url": "https://api.github.com/users/wabee/orgs", "received_events_url": "https://api.github.com/users/wabee/received_events", "repos_url": "https://api.github.com/users/wabee/repos", "site_admin": false, "starred_url": "https://api.github.com/users/wabee/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/wabee/subscriptions", "type": "User", "url": "https://api.github.com/users/wabee" }
[ { "color": "e10c02", "default": false, "description": null, "id": 76811, "name": "Bug", "node_id": "MDU6TGFiZWw3NjgxMQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug" }, { "color": "02d7e1", "default": false, "description": "Concat, Merge/Join, Stack/Unstack, Explode", "id": 13098779, "name": "Reshaping", "node_id": "MDU6TGFiZWwxMzA5ODc3OQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Reshaping" } ]
open
false
null
[]
{ "closed_at": null, "closed_issues": 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" }
4
2013-09-02T09:11:05Z
2021-04-11T03:14:36Z
null
NONE
null
related is #6490 I am new to pandas but have run into a problem which I believe is a bug. I tried to execute the following: ``` df_sum=pd.pivot_table(df,rows=['Konskund_MEAB','ProdID'],cols=['Year'], aggfunc=lambda x: np.average(x['snittpris'], weights=x['Antal_forsandelser']) ``` This produce a number of errors. The following commands produce the desired results: ``` rows = ['Konskund_MEAB','ProdID'] cols = ['Year'] g = df.groupby(rows + columns) s_av = g.apply(lambda x: np.average(x['snittpris'], weights=x['Antal_forsandelser'])) df_av = s_av.unstack(cols) ``` Posted originally on [Stackoverflow](http://stackoverflow.com/questions/18382632/pandas-pivot-table-error-when-executing-type-error). _Another more knowledgeable user has verified the problem._
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4733/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4733/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4734
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4734/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4734/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4734/events
https://github.com/pandas-dev/pandas/issues/4734
18,876,790
MDU6SXNzdWUxODg3Njc5MA==
4,734
to_xml and read_xml
{ "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": "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" }, { "color": "006b75", "default": false, "description": "read_html, to_html, Styler.apply, Styler.applymap", "id": 57395487, "name": "IO HTML", "node_id": "MDU6TGFiZWw1NzM5NTQ4Nw==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20HTML" } ]
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" }
3
2013-09-02T19:06:01Z
2018-07-06T22:00:08Z
2018-07-06T22:00:07Z
CONTRIBUTOR
null
http://stackoverflow.com/questions/18574108/how-do-convert-a-pandas-dataframe-to-xml cc @jreback I don't _think_ there is a standard xml, but perhaps his could be generalised? If not maybe simply adding this recipe to the cookbook is useful. Solutions for read_xml are hacking tree with from_records http://stackoverflow.com/a/10948591/1240268 or just as a list http://stackoverflow.com/a/16993660/1240268 too much of a dark art to generalise?
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4734/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4734/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4735
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4735/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4735/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4735/events
https://github.com/pandas-dev/pandas/issues/4735
18,893,688
MDU6SXNzdWUxODg5MzY4OA==
4,735
nosetests errors
{ "avatar_url": "https://avatars.githubusercontent.com/u/891276?v=4", "events_url": "https://api.github.com/users/7stud/events{/privacy}", "followers_url": "https://api.github.com/users/7stud/followers", "following_url": "https://api.github.com/users/7stud/following{/other_user}", "gists_url": "https://api.github.com/users/7stud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/7stud", "id": 891276, "login": "7stud", "node_id": "MDQ6VXNlcjg5MTI3Ng==", "organizations_url": "https://api.github.com/users/7stud/orgs", "received_events_url": "https://api.github.com/users/7stud/received_events", "repos_url": "https://api.github.com/users/7stud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/7stud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/7stud/subscriptions", "type": "User", "url": "https://api.github.com/users/7stud" }
[]
closed
false
null
[]
null
5
2013-09-03T07:41:34Z
2013-09-03T12:59:34Z
2013-09-03T12:59:34Z
NONE
null
I will never try PANDAS again, but maybe the solutions for these errors will help someone else who wants to give it a try: /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas-0.11.0-py2.7-macosx-10.6-intel.egg/pandas/tests$ sudo nosetests * # .........................................................................................................................S.....S.......................................................................................................................................................................................................................................................................................................................................................................SSS.............................................................................................................................................................................................................................S........................S.........................................................................................F.....................................F..............F...F.......F....................................................................SSS...............................FF............................................................................................................................................................................................S........................S............................................................................F.....................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................S......................................................................................................................S.......................................................................................................................................................................................................................................................................................................S...S............SSS.........S............SS...........SS.....SSSS.....S...S............SSS.........S............SS...........SS.....SSSS...............................................................................................................................................S..............................................................................................................................................S...................................................................................................................S..............................................................................................................................................S................................................................................................................................................................................................ ## FAIL: test_cast_internals (pandas.tests.test_frame.TestDataFrame) Traceback (most recent call last): File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas-0.11.0-py2.7-macosx-10.6-intel.egg/pandas/tests/test_frame.py", line 9092, in test_cast_internals assert_frame_equal(casted, expected) File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas-0.11.0-py2.7-macosx-10.6-intel.egg/pandas/util/testing.py", line 250, in assert_frame_equal assert(left.columns.names == right.columns.names) AssertionError # ## FAIL: test_constructor_from_items (pandas.tests.test_frame.TestDataFrame) Traceback (most recent call last): File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas-0.11.0-py2.7-macosx-10.6-intel.egg/pandas/tests/test_frame.py", line 2765, in test_constructor_from_items assert_frame_equal(recons, self.frame) File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas-0.11.0-py2.7-macosx-10.6-intel.egg/pandas/util/testing.py", line 250, in assert_frame_equal assert(left.columns.names == right.columns.names) AssertionError # ## FAIL: test_constructor_more (pandas.tests.test_frame.TestDataFrame) Traceback (most recent call last): File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas-0.11.0-py2.7-macosx-10.6-intel.egg/pandas/tests/test_frame.py", line 2565, in test_constructor_more tm.assert_frame_equal(dm, self.frame) File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas-0.11.0-py2.7-macosx-10.6-intel.egg/pandas/util/testing.py", line 250, in assert_frame_equal assert(left.columns.names == right.columns.names) AssertionError # ## FAIL: test_constructor_orient (pandas.tests.test_frame.TestDataFrame) Traceback (most recent call last): File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas-0.11.0-py2.7-macosx-10.6-intel.egg/pandas/tests/test_frame.py", line 2713, in test_constructor_orient assert_frame_equal(recons, expected) File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas-0.11.0-py2.7-macosx-10.6-intel.egg/pandas/util/testing.py", line 249, in assert_frame_equal assert(left.index.names == right.index.names) AssertionError # ## FAIL: test_constructor_subclass_dict (pandas.tests.test_frame.TestDataFrame) Traceback (most recent call last): File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas-0.11.0-py2.7-macosx-10.6-intel.egg/pandas/tests/test_frame.py", line 2267, in test_constructor_subclass_dict assert_frame_equal(self.frame.sort_index(), frame) File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas-0.11.0-py2.7-macosx-10.6-intel.egg/pandas/util/testing.py", line 249, in assert_frame_equal assert(left.index.names == right.index.names) AssertionError # ## FAIL: test_getitem_fancy_2d (pandas.tests.test_frame.TestDataFrame) Traceback (most recent call last): File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas-0.11.0-py2.7-macosx-10.6-intel.egg/pandas/tests/test_frame.py", line 620, in test_getitem_fancy_2d assert_frame_equal(ix[:, :2], f.reindex(columns=['A', 'B'])) File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas-0.11.0-py2.7-macosx-10.6-intel.egg/pandas/util/testing.py", line 250, in assert_frame_equal assert(left.columns.names == right.columns.names) AssertionError # ## FAIL: test_getitem_fancy_boolean (pandas.tests.test_frame.TestDataFrame) Traceback (most recent call last): File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas-0.11.0-py2.7-macosx-10.6-intel.egg/pandas/tests/test_frame.py", line 1106, in test_getitem_fancy_boolean assert_frame_equal(result, expected) File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas-0.11.0-py2.7-macosx-10.6-intel.egg/pandas/util/testing.py", line 250, in assert_frame_equal assert(left.columns.names == right.columns.names) AssertionError # ## FAIL: test_time_series_plot_color_with_empty_kwargs (pandas.tests.test_graphics.TestDataFrameGroupByPlots) Traceback (most recent call last): File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas-0.11.0-py2.7-macosx-10.6-intel.egg/pandas/tests/test_graphics.py", line 752, in test_time_series_plot_color_with_empty_kwargs self.assert_(line_colors == ['b', 'g', 'r']) AssertionError: False is not true --- Ran 3382 tests in 341.290s FAILED (SKIP=46, failures=8) /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas-0.11.0-py2.7-macosx-10.6-intel.egg/pandas/tests$
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4735/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4735/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4736
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4736/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4736/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4736/events
https://github.com/pandas-dev/pandas/issues/4736
18,921,373
MDU6SXNzdWUxODkyMTM3Mw==
4,736
installation issue - Throws an exception when DataReader can't get a 200 response from
{ "avatar_url": "https://avatars.githubusercontent.com/u/891276?v=4", "events_url": "https://api.github.com/users/7stud/events{/privacy}", "followers_url": "https://api.github.com/users/7stud/followers", "following_url": "https://api.github.com/users/7stud/following{/other_user}", "gists_url": "https://api.github.com/users/7stud/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/7stud", "id": 891276, "login": "7stud", "node_id": "MDQ6VXNlcjg5MTI3Ng==", "organizations_url": "https://api.github.com/users/7stud/orgs", "received_events_url": "https://api.github.com/users/7stud/received_events", "repos_url": "https://api.github.com/users/7stud/repos", "site_admin": false, "starred_url": "https://api.github.com/users/7stud/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/7stud/subscriptions", "type": "User", "url": "https://api.github.com/users/7stud" }
[]
closed
false
null
[]
null
1
2013-09-03T17:21:17Z
2013-09-03T22:20:29Z
2013-09-03T22:20:29Z
NONE
null
Mac OSX 10.6.8 1) First I installed the latest version of every dependency, every recommended dependency, and every optional dependency listed here (including the BeautifulSoup4 and html5lib combo): http://pandas.pydata.org/pandas-docs/stable/install.html ...using the standard: ``` $ sudo python setup.py install ``` Then I installed the latest version of pandas, and then I installed the latest version of statsmodels(which depends on pandas) the same way. 2) Then I spent an hour trying to figure out how to run nosetests without getting the message "ran 0 tests": /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas-0.11.0-py2.7-macosx-10.6-intel.egg/pandas/tests$ sudo nosetests * ...which produced this: ## FAIL: test_cast_internals (pandas.tests.test_frame.TestDataFrame) Traceback (most recent call last): File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas-0.11.0-py2.7-macosx-10.6-intel.egg/pandas/tests/test_frame.py", line 9092, in test_cast_internals assert_frame_equal(casted, expected) File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas-0.11.0-py2.7-macosx-10.6-intel.egg/pandas/util/testing.py", line 250, in assert_frame_equal assert(left.columns.names == right.columns.names) AssertionError # ## FAIL: test_constructor_from_items (pandas.tests.test_frame.TestDataFrame) Traceback (most recent call last): File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas-0.11.0-py2.7-macosx-10.6-intel.egg/pandas/tests/test_frame.py", line 2765, in test_constructor_from_items assert_frame_equal(recons, self.frame) File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas-0.11.0-py2.7-macosx-10.6-intel.egg/pandas/util/testing.py", line 250, in assert_frame_equal assert(left.columns.names == right.columns.names) AssertionError # ## FAIL: test_constructor_more (pandas.tests.test_frame.TestDataFrame) Traceback (most recent call last): File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas-0.11.0-py2.7-macosx-10.6-intel.egg/pandas/tests/test_frame.py", line 2565, in test_constructor_more tm.assert_frame_equal(dm, self.frame) File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas-0.11.0-py2.7-macosx-10.6-intel.egg/pandas/util/testing.py", line 250, in assert_frame_equal assert(left.columns.names == right.columns.names) AssertionError # ## FAIL: test_constructor_orient (pandas.tests.test_frame.TestDataFrame) Traceback (most recent call last): File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas-0.11.0-py2.7-macosx-10.6-intel.egg/pandas/tests/test_frame.py", line 2713, in test_constructor_orient assert_frame_equal(recons, expected) File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas-0.11.0-py2.7-macosx-10.6-intel.egg/pandas/util/testing.py", line 249, in assert_frame_equal assert(left.index.names == right.index.names) AssertionError # ## FAIL: test_constructor_subclass_dict (pandas.tests.test_frame.TestDataFrame) Traceback (most recent call last): File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas-0.11.0-py2.7-macosx-10.6-intel.egg/pandas/tests/test_frame.py", line 2267, in test_constructor_subclass_dict assert_frame_equal(self.frame.sort_index(), frame) File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas-0.11.0-py2.7-macosx-10.6-intel.egg/pandas/util/testing.py", line 249, in assert_frame_equal assert(left.index.names == right.index.names) AssertionError # ## FAIL: test_getitem_fancy_2d (pandas.tests.test_frame.TestDataFrame) Traceback (most recent call last): File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas-0.11.0-py2.7-macosx-10.6-intel.egg/pandas/tests/test_frame.py", line 620, in test_getitem_fancy_2d assert_frame_equal(ix[:, :2], f.reindex(columns=['A', 'B'])) File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas-0.11.0-py2.7-macosx-10.6-intel.egg/pandas/util/testing.py", line 250, in assert_frame_equal assert(left.columns.names == right.columns.names) AssertionError # ## FAIL: test_getitem_fancy_boolean (pandas.tests.test_frame.TestDataFrame) Traceback (most recent call last): File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas-0.11.0-py2.7-macosx-10.6-intel.egg/pandas/tests/test_frame.py", line 1106, in test_getitem_fancy_boolean assert_frame_equal(result, expected) File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas-0.11.0-py2.7-macosx-10.6-intel.egg/pandas/util/testing.py", line 250, in assert_frame_equal assert(left.columns.names == right.columns.names) AssertionError # ## FAIL: test_time_series_plot_color_with_empty_kwargs (pandas.tests.test_graphics.TestDataFrameGroupByPlots) Traceback (most recent call last): File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas-0.11.0-py2.7-macosx-10.6-intel.egg/pandas/tests/test_graphics.py", line 752, in test_time_series_plot_color_with_empty_kwargs self.assert_(line_colors == ['b', 'g', 'r']) AssertionError: False is not true --- Ran 3382 tests in 341.290s FAILED (SKIP=46, failures=8) /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas-0.11.0-py2.7-macosx-10.6-intel.egg/pandas/tests$ 3) Then I moved the pandas egg out of the site-packages directory, and I installed pip, and I used pip to install pandas: ``` ~$ pip install pandas ``` 4) Then I ran nosetests like this: ``` /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages$ nosetests pandas ``` And that produced one failed test: ## FAIL: Throws an exception when DataReader can't get a 200 response from Traceback (most recent call last): File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas/util/testing.py", line 765, in network_wrapper return t(_args, *_kwargs) File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas/io/tests/test_data.py", line 370, in test_fred 15984.1) AssertionError: DATE 2013-01-01 16535.3 Name: GDP, dtype: float64 != 15984.1 --- Ran 3568 tests in 382.962s FAILED (SKIP=140, failures=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/4736/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4736/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4737
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4737/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4737/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4737/events
https://github.com/pandas-dev/pandas/issues/4737
18,935,695
MDU6SXNzdWUxODkzNTY5NQ==
4,737
ER: should constructors check and raise if big-endian dtypes are detected?
{ "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": "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": "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": "d4c5f9", "default": false, "description": "Series/DataFrame/Index/pd.array Constructors", "id": 1465286368, "name": "Constructors", "node_id": "MDU6TGFiZWwxNDY1Mjg2MzY4", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Constructors" } ]
open
false
null
[]
{ "closed_at": null, "closed_issues": 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" }
2
2013-09-03T20:13:39Z
2021-04-11T03:15:33Z
null
CONTRIBUTOR
null
related #2330, #2821 pretty easy to do; doesn't really take much time either (can be done in the block manager) http://stackoverflow.com/questions/18599579/python-pandas-multi-index could also easily convert them (which in theory could be expensive so should be a 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/4737/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4737/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4738
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4738/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4738/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4738/events
https://github.com/pandas-dev/pandas/pull/4738
18,941,455
MDExOlB1bGxSZXF1ZXN0ODA1Njg4Mw==
4,738
API: allow single element boolean Series to improve on numpy behavior( related GH4657)
{ "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" }
83
2013-09-03T22:01:37Z
2014-06-17T15:59:26Z
2013-10-01T00:03:52Z
CONTRIBUTOR
null
related #4657
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4738/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4738/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4738.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4738", "merged_at": "2013-10-01T00:03:52Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4738.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4738" }
https://api.github.com/repos/pandas-dev/pandas/issues/4739
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4739/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4739/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4739/events
https://github.com/pandas-dev/pandas/pull/4739
18,944,242
MDExOlB1bGxSZXF1ZXN0ODA1ODM0MQ==
4,739
ENH: Added xlsxwriter as an ExcelWriter option.
{ "avatar_url": "https://avatars.githubusercontent.com/u/94267?v=4", "events_url": "https://api.github.com/users/jmcnamara/events{/privacy}", "followers_url": "https://api.github.com/users/jmcnamara/followers", "following_url": "https://api.github.com/users/jmcnamara/following{/other_user}", "gists_url": "https://api.github.com/users/jmcnamara/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/jmcnamara", "id": 94267, "login": "jmcnamara", "node_id": "MDQ6VXNlcjk0MjY3", "organizations_url": "https://api.github.com/users/jmcnamara/orgs", "received_events_url": "https://api.github.com/users/jmcnamara/received_events", "repos_url": "https://api.github.com/users/jmcnamara/repos", "site_admin": false, "starred_url": "https://api.github.com/users/jmcnamara/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jmcnamara/subscriptions", "type": "User", "url": "https://api.github.com/users/jmcnamara" }
[]
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-09-03T23:03:21Z
2014-06-20T00:03:33Z
2013-09-15T22:08:02Z
CONTRIBUTOR
null
Refactored pandas.io.excel.ExcelWriter to allow other writer engines and added xlsxwriter as an option. GitHub issue #4542.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4739/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4739/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4739.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4739", "merged_at": null, "patch_url": "https://github.com/pandas-dev/pandas/pull/4739.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4739" }
https://api.github.com/repos/pandas-dev/pandas/issues/4740
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4740/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4740/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4740/events
https://github.com/pandas-dev/pandas/pull/4740
18,945,446
MDExOlB1bGxSZXF1ZXN0ODA1OTAxNA==
4,740
ENH ohlc resample for DataFrame
{ "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" }
7
2013-09-03T23:35:28Z
2014-06-22T17:56:54Z
2013-09-10T06:40:38Z
CONTRIBUTOR
null
closes #2320 Can use ohlc from DataFrame. cc @jreback Example: ``` In [24]: df = pd.DataFrame({'PRICE': {Timestamp('2011-01-06 10:59:05', tz=None): 24990, Timestamp('2011-01-06 12:43:33', tz=None): 25499, Timestamp('2011-01-06 12:54:09', tz=None): 25499}, 'VOLUME': {Timestamp('2011-01-06 10:59:05', tz=None): 1500000000, Timestamp('2011-01-06 12:43:33', tz=None): 5000000000, Timestamp('2011-01-06 12:54:09', tz=None): 100000000}}) In [25]: df.resample('H', how='ohlc') Out[25]: PRICE VOLUME \ open high low close open high 2011-01-06 10:00:00 24990 24990 24990 24990 1500000000 1500000000 2011-01-06 11:00:00 NaN NaN NaN NaN NaN NaN 2011-01-06 12:00:00 25499 25499 25499 25499 5000000000 5000000000 low close 2011-01-06 10:00:00 1500000000 1500000000 2011-01-06 11:00:00 NaN NaN 2011-01-06 12:00:00 100000000 100000000 ```
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4740/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4740/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4740.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4740", "merged_at": "2013-09-10T06:40:38Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4740.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4740" }
https://api.github.com/repos/pandas-dev/pandas/issues/4741
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4741/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4741/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4741/events
https://github.com/pandas-dev/pandas/issues/4741
18,945,828
MDU6SXNzdWUxODk0NTgyOA==
4,741
ENH: support additional multi-column groupby functions, (like ohlc) e.g. describe
{ "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": "729FCF", "default": false, "description": null, "id": 233160, "name": "Groupby", "node_id": "MDU6TGFiZWwyMzMxNjA=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Groupby" } ]
closed
false
null
[]
{ "closed_at": "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-09-03T23:47:50Z
2013-09-29T17:56:56Z
2013-09-29T17:56:56Z
CONTRIBUTOR
null
related #2320 `df.groupby('A').describe()`
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4741/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4741/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4742
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4742/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4742/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4742/events
https://github.com/pandas-dev/pandas/issues/4742
18,948,970
MDU6SXNzdWUxODk0ODk3MA==
4,742
Possible bug: No numeric data error when numeric data added
{ "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" }
3
2013-09-04T01:32:22Z
2016-05-10T11:26:26Z
2013-09-06T23:56:14Z
NONE
null
New to pandas, so not sure if bug or stupidity, but the behavior is not what I expect. Pandas version is 0.12.0 on Mac OS X with python 2.7.5. In [12]: df = pd.DataFrame({'a': [3, 3], 'b': [3, 3]}) In [13]: df.plot() Out[13]: <matplotlib.axes.AxesSubplot at 0x10fb6e2d0> In [14]: df_two = pd.DataFrame({'a': [None, None], 'b': [None, None]}) In [15]: df_two Out[15]: a b 0 None None 1 None None In [16]: df_two = df_two.fillna(3) In [17]: df_two Out[17]: a b 0 3 3 1 3 3 ## In [18]: df_two.plot() TypeError Traceback (most recent call last) <ipython-input-18-7a340ea12677> in <module>() ----> 1 df_two.plot() /usr/local/Cellar/python/2.7.5/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas/tools/plotting.pyc in plot_frame(frame, x, y, subplots, sharex, sharey, use_index, figsize, grid, legend, rot, ax, style, title, xlim, ylim, logx, logy, xticks, yticks, kind, sort_columns, fontsize, secondary_y, *_kwds) 1634 logy=logy, sort_columns=sort_columns, 1635 secondary_y=secondary_y, *_kwds) -> 1636 plot_obj.generate() 1637 plot_obj.draw() 1638 if subplots: /usr/local/Cellar/python/2.7.5/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas/tools/plotting.pyc in generate(self) 852 def generate(self): 853 self._args_adjust() --> 854 self._compute_plot_data() 855 self._setup_subplots() 856 self._make_plot() /usr/local/Cellar/python/2.7.5/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas/tools/plotting.pyc in _compute_plot_data(self) 947 if is_empty: 948 raise TypeError('Empty {0!r}: no numeric data to ' --> 949 'plot'.format(numeric_data.__class__.**name**)) 950 951 self.data = numeric_data TypeError: Empty 'DataFrame': no numeric data to plot
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4742/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4742/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4743
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4743/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4743/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4743/events
https://github.com/pandas-dev/pandas/issues/4743
18,950,100
MDU6SXNzdWUxODk1MDEwMA==
4,743
Bug in Series.replace
{ "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": "e10c02", "default": false, "description": null, "id": 76811, "name": "Bug", "node_id": "MDU6TGFiZWw3NjgxMQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug" }, { "color": "d7e102", "default": false, "description": "np.nan, pd.NaT, pd.NA, dropna, isnull, interpolate", "id": 2822342, "name": "Missing-data", "node_id": "MDU6TGFiZWwyODIyMzQy", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Missing-data" } ]
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" }
7
2013-09-04T02:21:00Z
2013-09-06T23:40:44Z
2013-09-06T23:40:44Z
MEMBER
null
http://pandas.pydata.org/pandas-docs/dev/missing_data.html#replacing-generic-values and scroll down a bit. Caught this in a doc build. I'll take a look at 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/4743/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4743/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4744
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4744/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4744/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4744/events
https://github.com/pandas-dev/pandas/issues/4744
18,963,064
MDU6SXNzdWUxODk2MzA2NA==
4,744
Series that won't plot!
{ "avatar_url": "https://avatars.githubusercontent.com/u/881019?v=4", "events_url": "https://api.github.com/users/dhirschfeld/events{/privacy}", "followers_url": "https://api.github.com/users/dhirschfeld/followers", "following_url": "https://api.github.com/users/dhirschfeld/following{/other_user}", "gists_url": "https://api.github.com/users/dhirschfeld/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/dhirschfeld", "id": 881019, "login": "dhirschfeld", "node_id": "MDQ6VXNlcjg4MTAxOQ==", "organizations_url": "https://api.github.com/users/dhirschfeld/orgs", "received_events_url": "https://api.github.com/users/dhirschfeld/received_events", "repos_url": "https://api.github.com/users/dhirschfeld/repos", "site_admin": false, "starred_url": "https://api.github.com/users/dhirschfeld/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dhirschfeld/subscriptions", "type": "User", "url": "https://api.github.com/users/dhirschfeld" }
[]
closed
false
null
[]
null
8
2013-09-04T10:05:39Z
2013-09-04T12:52:21Z
2013-09-04T11:58:11Z
CONTRIBUTOR
null
https://www.dropbox.com/s/rgy9iqt9o8pvfdl/wontplot.pandas ``` python In [3]: s = pd.load('wontplot.pandas') In [5]: s.plot() Traceback (most recent call last): File "<ipython-input-5-d3eb09d34df4>", line 1, in <module> s.plot() File "C:\dev\bin\Python27\lib\site-packages\pandas\tools\plotting.py", line 1727, in plot_series plot_obj.generate() File "C:\dev\bin\Python27\lib\site-packages\pandas\tools\plotting.py", line 853, in generate self._make_plot() File "C:\dev\bin\Python27\lib\site-packages\pandas\tools\plotting.py", line 1241, in _make_plot x = self._get_xticks(convert_period=True) File "C:\dev\bin\Python27\lib\site-packages\pandas\tools\plotting.py", line 1031, in _get_xticks self.data = self.data.reindex(index=index.order()) File "C:\dev\bin\Python27\lib\site-packages\pandas\core\series.py", line 2638, in reindex return Series(new_values, index=new_index, name=self.name) File "C:\dev\bin\Python27\lib\site-packages\pandas\core\series.py", line 489, in __new__ subarr.index = index File "properties.pyx", line 74, in pandas.lib.SeriesIndex.__set__ (pandas\lib.c:29092) AssertionError: Index length did not match values In [6]: s.index.shape Out[6]: (480,) In [7]: s.values.shape Out[7]: (480,) ```
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4744/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4744/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4745
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4745/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4745/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4745/events
https://github.com/pandas-dev/pandas/issues/4745
18,968,021
MDU6SXNzdWUxODk2ODAyMQ==
4,745
ENH: Make ExcelWriter more easily pluggable
{ "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" }
0
2013-09-04T12:18:08Z
2013-09-13T11:08:18Z
2013-09-13T11:08:18Z
CONTRIBUTOR
null
Basically, make a clear interface for `ExcelWriter` and allow others to plug into it. Unfortunately, it looks like we're stuck with using `ExcelWriter` directly as a class, so might take a bit more complexity to stick this in (i.e., a metaclass). If we can convert it to a function instead, can make a lot less magic. Check out [this branch](https://github.com/jtratner/pandas/compare/refactor-excel-writer) if you want to see what I'm talking about. We'd end up with a separate config option for each extension (`io.excel.xlsx.writer`, `io.excel.xls.writer`, `io.excel.xlsm.writer`) (can't do the reverse because `io.excel.writer.xls` would match all the different filetypes). Client code then just has to implement `save` and `write_cells` and define `supported_extensions` and register their their class with `register_engine` in pandas/io/excel, then it's easily available under `to_excel` as an engine parameter.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4745/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4745/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4746
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4746/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4746/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4746/events
https://github.com/pandas-dev/pandas/issues/4746
18,969,186
MDU6SXNzdWUxODk2OTE4Ng==
4,746
ER: unclear error message when reindexing with duplicate index
{ "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-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-09-04T12:47:46Z
2013-09-06T23:09:08Z
2013-09-06T23:09:08Z
MEMBER
null
When trying to reindex with an index with duplicate values, I get the error message `ValueError: Shape of passed values is (1, 20), indices imply (1, 10)`, while I expected somthing like `Reindexing only valid with uniquely valued Index objects` I see this with both 0.12 and master. An example: ``` python In [2]: pd.__version__ Out[2]: '0.12.0-274-gc472099' In [3]: s = pd.DataFrame(np.random.randn(10), index=[1,2,3,4,5,1,2,3,4,5]) In [4]: s Out[4]: 0 1 -0.067753 2 -1.544545 3 0.726160 4 0.562298 5 -0.094550 1 0.753334 2 -0.893318 3 -0.275085 4 2.645206 5 -0.926170 In [5]: s.reindex(index=range(len(s))) --------------------------------------------------------------------------- ValueError Traceback (most recent call last) <ipython-input-6-2085c8b16fe3> in <module>() ----> 1 s.reindex(index=range(len(s))) c:\users\vdbosscj\scipy\pandas-joris\pandas\core\generic.pyc in reindex(self, *args, **kwargs) 1085 1086 # perform the reindex on the axes -> 1087 return self._reindex_axes(axes, level, limit, method, fill_value, copy, takeable=takeable)._propogate_attributes(self) 1088 1089 def _reindex_axes(self, axes, level, limit, method, fill_value, copy, takeable=False): c:\users\vdbosscj\scipy\pandas-joris\pandas\core\frame.pyc in _reindex_axes(self, axes, level, limit, method, fill_value, copy, takeable) 2268 if index is not None: 2269 frame = frame._reindex_index(index, method, copy, level, -> 2270 fill_value, limit, takeable=takeable) 2271 2272 return frame c:\users\vdbosscj\scipy\pandas-joris\pandas\core\frame.pyc in _reindex_index(self, new_index, method, copy, level, fill_value, limit, takeable) 2278 takeable=takeable) 2279 return self._reindex_with_indexers({0: [new_index, indexer]}, -> 2280 copy=copy, fill_value=fill_value) 2281 2282 def _reindex_columns(self, new_columns, copy, level, fill_value=NA, c:\users\vdbosscj\scipy\pandas-joris\pandas\core\generic.pyc in _reindex_with_indexers(self, reindexers, method, fill_value, limit, copy) 1184 indexer = com._ensure_int64(indexer) 1185 new_data = new_data.reindex_indexer(index, indexer, axis=baxis, -> 1186 fill_value=fill_value) 1187 1188 elif baxis == 0 and index is not None and index is not new_data.axes[baxis]: c:\users\vdbosscj\scipy\pandas-joris\pandas\core\internals.pyc in reindex_indexer(self, new_axis, indexer, axis, fill_value) 2673 new_axes = list(self.axes) 2674 new_axes[axis] = new_axis -> 2675 return self.__class__(new_blocks, new_axes) 2676 2677 def _reindex_indexer_items(self, new_items, indexer, fill_value): c:\users\vdbosscj\scipy\pandas-joris\pandas\core\internals.pyc in __init__(self, blocks, axes, do_integrity_check, fastpath) 1563 1564 if do_integrity_check: -> 1565 self._verify_integrity() 1566 1567 self._has_sparse = False c:\users\vdbosscj\scipy\pandas-joris\pandas\core\internals.pyc in _verify_integrity(self) 1826 if not block.is_sparse and block.values.shape[1:] != mgr_shape[1:]: 1827 construction_error( -> 1828 tot_items, block.values.shape[1:], self.axes) 1829 if len(self.items) != tot_items: 1830 raise AssertionError('Number of manager items must equal union of ' c:\users\vdbosscj\scipy\pandas-joris\pandas\core\internals.pyc in construction_error(tot_items, block_shape, axes) 3063 raise ValueError("Shape of passed values is %s, indices imply %s" % ( 3064 tuple(map(int, [tot_items] + list(block_shape))), -> 3065 tuple(map(int, [len(ax) for ax in axes])))) 3066 3067 ValueError: Shape of passed values is (1, 15), indices imply (1, 10) In [6]: s.reindex(index=s.index.order()) --------------------------------------------------------------------------- ValueError Traceback (most recent call last) <ipython-input-5-2ce611a93f5d> in <module>() ----> 1 s.reindex(index=s.index.order()) ..... c:\users\vdbosscj\scipy\pandas-joris\pandas\core\internals.py in construction_error(tot_items, block_shape, axes) 3063 raise ValueError("Shape of passed values is %s, indices imply %s" % ( 3064 tuple(map(int, [tot_items] + list(block_shape))), -> 3065 tuple(map(int, [len(ax) for ax in axes])))) 3066 3067 ValueError: Shape of passed values is (1, 20), indices imply (1, 10) ```
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4746/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4746/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4747
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4747/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4747/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4747/events
https://github.com/pandas-dev/pandas/issues/4747
18,979,874
MDU6SXNzdWUxODk3OTg3NA==
4,747
BUG: Passing column list as 'set' with frame_table with multi index causes crash
{ "avatar_url": "https://avatars.githubusercontent.com/u/664644?v=4", "events_url": "https://api.github.com/users/kghose/events{/privacy}", "followers_url": "https://api.github.com/users/kghose/followers", "following_url": "https://api.github.com/users/kghose/following{/other_user}", "gists_url": "https://api.github.com/users/kghose/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/kghose", "id": 664644, "login": "kghose", "node_id": "MDQ6VXNlcjY2NDY0NA==", "organizations_url": "https://api.github.com/users/kghose/orgs", "received_events_url": "https://api.github.com/users/kghose/received_events", "repos_url": "https://api.github.com/users/kghose/repos", "site_admin": false, "starred_url": "https://api.github.com/users/kghose/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/kghose/subscriptions", "type": "User", "url": "https://api.github.com/users/kghose" }
[]
closed
false
null
[]
null
2
2013-09-04T15:53:40Z
2013-09-04T18:59:49Z
2013-09-04T17:08:49Z
NONE
null
I hesitate to call this a real bug. I think this is a fault of Python having different syntaxes for set and list add operations, but perhaps people should be aware of this (I was blindsided). Basically Pandas is appending the row MultiIndex as columns to the columns that we pass. If the columns happen to be a set we get this error (but only for MultiIndexes). I wonder if a test for set/list would slow things down too much? ``` import pandas as pd, numpy r = numpy.empty((4,3)) index = pd.MultiIndex.from_tuples([['A','a'],['A','b'],['B','a'],['B','b']],names=['lev1','lev2']) df = pd.DataFrame(r,columns=['a','b','c']) df_m = pd.DataFrame(r,index=index,columns=['a','b','c']) store = pd.HDFStore('settest.h5') store.put('data',df,table=True,data_columns=True) store.put('datam',df_m,table=True,data_columns=True) print store.select('data',where='a<2',columns=set(['a','b'])) #OK print store.select('datam',where='a<2',columns=set(['a','b'])) #AttributeError: 'set' object has no attribute 'insert' #Pandas is appending the indexes as columns. I wonder if a test would slow things down. #The real issue is perhaps Python itself having different syntax for sets and lists ```
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4747/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4747/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4748
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4748/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4748/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4748/events
https://github.com/pandas-dev/pandas/pull/4748
18,995,228
MDExOlB1bGxSZXF1ZXN0ODA4NDExOQ==
4,748
BUG: series replace should allow a single list
{ "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" }
16
2013-09-04T19:23:07Z
2014-06-21T17:17:09Z
2013-09-06T23:40:44Z
MEMBER
null
Also reverts the `method` parameter of `NDFrame.replace()` deprecation closes #4743
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4748/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4748/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4748.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4748", "merged_at": "2013-09-06T23:40:44Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4748.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4748" }
https://api.github.com/repos/pandas-dev/pandas/issues/4749
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4749/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4749/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4749/events
https://github.com/pandas-dev/pandas/issues/4749
19,008,277
MDU6SXNzdWUxOTAwODI3Nw==
4,749
BUG: if first row is short, read_csv raises exception instead of filling with NaN
{ "avatar_url": "https://avatars.githubusercontent.com/u/854789?v=4", "events_url": "https://api.github.com/users/foobarbecue/events{/privacy}", "followers_url": "https://api.github.com/users/foobarbecue/followers", "following_url": "https://api.github.com/users/foobarbecue/following{/other_user}", "gists_url": "https://api.github.com/users/foobarbecue/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/foobarbecue", "id": 854789, "login": "foobarbecue", "node_id": "MDQ6VXNlcjg1NDc4OQ==", "organizations_url": "https://api.github.com/users/foobarbecue/orgs", "received_events_url": "https://api.github.com/users/foobarbecue/received_events", "repos_url": "https://api.github.com/users/foobarbecue/repos", "site_admin": false, "starred_url": "https://api.github.com/users/foobarbecue/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/foobarbecue/subscriptions", "type": "User", "url": "https://api.github.com/users/foobarbecue" }
[]
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-09-04T22:48:52Z
2014-03-26T16:52:59Z
2013-09-07T04:23:45Z
NONE
null
Please see http://nbviewer.ipython.org/6443825 . Below is an unformatted version. pandas' read_csv is supposed to handle short rows by filling them with NaN. It does so most of the time. However, if the first row is short and you specify header=None, then you get an error. This happens whether or not you specify column names. In [20]: from pandas import DataFrame, read_csv This works: In [21]: mydata='1,2,3\n1,2\n1,2\n' read_csv(StringIO.StringIO(mydata),header=None,names=['one','two','three']) Out[21]: one two three 0 1 2 3 1 1 2 NaN 2 1 2 NaN But this doesn't: In [22]: mydata='1,2\n1,2,3\n4,5,6\n' read_csv(StringIO.StringIO(mydata),header=None,names=['one','two','three']) --- CParserError Traceback (most recent call last) <ipython-input-22-4dc7e64ee312> in <module>() 1 mydata='1,2\n1,2,3\n4,5,6\n' ----> 2 read_csv(StringIO.StringIO(mydata),header=None,names=['one','two','three']) /usr/lib/python2.7/dist-packages/pandas/io/parsers.pyc in parser_f(filepath_or_buffer, sep, dialect, compression, doublequote, escapechar, quotechar, quoting, skipinitialspace, lineterminator, header, index_col, names, prefix, skiprows, skipfooter, skip_footer, na_values, true_values, false_values, delimiter, converters, dtype, usecols, engine, delim_whitespace, as_recarray, na_filter, compact_ints, use_unsigned, low_memory, buffer_lines, warn_bad_lines, error_bad_lines, keep_default_na, thousands, comment, decimal, parse_dates, keep_date_col, dayfirst, date_parser, memory_map, nrows, iterator, chunksize, verbose, encoding, squeeze) 397 buffer_lines=buffer_lines) 398 --> 399 return _read(filepath_or_buffer, kwds) 400 401 parser_f.__name__ = name /usr/lib/python2.7/dist-packages/pandas/io/parsers.pyc in _read(filepath_or_buffer, kwds) 206 207 # Create the parser. --> 208 parser = TextFileReader(filepath_or_buffer, **kwds) 209 210 if nrows is not None: /usr/lib/python2.7/dist-packages/pandas/io/parsers.pyc in **init**(self, f, engine, **kwds) 505 self.options['has_index_names'] = kwds['has_index_names'] 506 --> 507 self._make_engine(self.engine) 508 509 def _get_options_with_defaults(self, engine): /usr/lib/python2.7/dist-packages/pandas/io/parsers.pyc in _make_engine(self, engine) 607 def _make_engine(self, engine='c'): 608 if engine == 'c': --> 609 self._engine = CParserWrapper(self.f, **self.options) 610 else: 611 if engine == 'python': /usr/lib/python2.7/dist-packages/pandas/io/parsers.pyc in **init**(self, src, *_kwds) 888 # #2442 889 kwds['allow_leading_cols'] = self.index_col is not False --> 890 self._reader = _parser.TextReader(src, *_kwds) 891 892 # XXX /usr/lib/python2.7/dist-packages/pandas/_parser.so in pandas._parser.TextReader.__cinit__ (pandas/src/parser.c:3946)() /usr/lib/python2.7/dist-packages/pandas/_parser.so in pandas._parser.TextReader._get_header (pandas/src/parser.c:5628)() CParserError: Column names have 3 fields, data has 2 fields
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4749/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4749/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4750
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4750/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4750/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4750/events
https://github.com/pandas-dev/pandas/pull/4750
19,012,083
MDExOlB1bGxSZXF1ZXN0ODA5MjAwNw==
4,750
CLN: Make ExcelWriter more pluggable
{ "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" }
19
2013-09-05T00:25:02Z
2014-06-17T06:40:42Z
2013-09-13T11:08:18Z
CONTRIBUTOR
null
FIxes #4745 and makes it easier to swap in other `ExcelWriter`s. Basically, you can subclass `ExcelWriter` (or not), register the engine with `register_engine`, and then either pass it as an `engine` keyword to `read_excel` or set it as the default writer using the config options (i.e., `io.excel.xlsx.writer` or `io.excel.xls.writer`). Engine names are validated by checking that they are already defined and that they are able to read files of that type (that said, if you can set up external config files to be parsed by pandas, this validation should be removed, because it won't work if pandas is loaded before an external dependency [e.g., a plugin that registers a writer class]). When you call `ExcelWriter`, the metaclass swaps in the appropriate engine class automatically [thereby being backwards compatible]. The great thing is that it should be _really_ simple to add additional writers and relatively trivial to add additional readers by following the same format. (if, for example, we wanted to resurrect `openpyxl` for brave souls or something). Here's the 'interface': - Mandatory (but not checked at run time): - `write_cells(self, cells, sheet_name=None, startrow=0, startcol=0)` --> called to write additional DataFrames to disk - `supported_extensions` (tuple of supported extensions), used to check that engine supports the given extension. - `engine` - string that gives the engine name. Necessary to instantiate class directly and bypass `ExcelWriterMeta` engine lookup. - `save(self)` --> called to save file to disk - Optional: - `__init__(self, path, **kwargs)` --> always called with path as first argument. - `check_extension(cls, ext)` --> called to check that the engine supports a given extension (and used to validate user selection of engine as option). This supercedes `supported_exceptions`. You also need to register the class with `register_engine()`. If you don't subclass `ExcelWriter`, you will have to implement `check_extensions(ext)` yourself. There's a tiny bit of metaclass magic to make this backwards-compatible, but it's nothing particularly complicated.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4750/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4750/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4750.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4750", "merged_at": "2013-09-13T11:08:18Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4750.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4750" }
https://api.github.com/repos/pandas-dev/pandas/issues/4751
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4751/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4751/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4751/events
https://github.com/pandas-dev/pandas/pull/4751
19,013,587
MDExOlB1bGxSZXF1ZXN0ODA5Mjg3Mg==
4,751
BUG: Fix wrong str.format() calls in Index.summary
{ "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
{ "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" }
[ { "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" } ]
null
3
2013-09-05T01:20:12Z
2014-06-22T12:04:51Z
2013-09-05T02:18:00Z
CONTRIBUTOR
null
Fixes #3869.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4751/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4751/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4751.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4751", "merged_at": "2013-09-05T02:18:00Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4751.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4751" }
https://api.github.com/repos/pandas-dev/pandas/issues/4752
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4752/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4752/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4752/events
https://github.com/pandas-dev/pandas/pull/4752
19,014,358
MDExOlB1bGxSZXF1ZXN0ODA5MzI0MQ==
4,752
BUG: Fix crash using to_csv with QUOTE_NONE
{ "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
{ "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" }
[ { "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" } ]
null
12
2013-09-05T01:48:14Z
2015-08-10T12:29:04Z
2013-09-05T02:37:09Z
CONTRIBUTOR
null
Fixes #4328. Now passes `quotechar` to csv's writer. Default is same as csv (`'"'`), but sets to `None` with `quoting=csv.QUOTE_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/4752/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4752/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4752.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4752", "merged_at": "2013-09-05T02:37:08Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4752.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4752" }
https://api.github.com/repos/pandas-dev/pandas/issues/4753
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4753/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4753/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4753/events
https://github.com/pandas-dev/pandas/pull/4753
19,043,932
MDExOlB1bGxSZXF1ZXN0ODEwNTE5Mw==
4,753
CLN: Remove redundant call to get_splitter
{ "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
[]
{ "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-09-05T13:39:28Z
2014-07-16T08:26:35Z
2013-09-06T22:01:31Z
NONE
null
`get_splitter` was called directly, then again through an internal method. Results from the first call are not used for anything and immediately replaced.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4753/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4753/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4753.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4753", "merged_at": "2013-09-06T22:01:31Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4753.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4753" }
https://api.github.com/repos/pandas-dev/pandas/issues/4754
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4754/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4754/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4754/events
https://github.com/pandas-dev/pandas/pull/4754
19,046,237
MDExOlB1bGxSZXF1ZXN0ODEwNjQ3OQ==
4,754
Added support for outer join in DataFrame.update
{ "avatar_url": "https://avatars.githubusercontent.com/u/401660?v=4", "events_url": "https://api.github.com/users/dougvk/events{/privacy}", "followers_url": "https://api.github.com/users/dougvk/followers", "following_url": "https://api.github.com/users/dougvk/following{/other_user}", "gists_url": "https://api.github.com/users/dougvk/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/dougvk", "id": 401660, "login": "dougvk", "node_id": "MDQ6VXNlcjQwMTY2MA==", "organizations_url": "https://api.github.com/users/dougvk/orgs", "received_events_url": "https://api.github.com/users/dougvk/received_events", "repos_url": "https://api.github.com/users/dougvk/repos", "site_admin": false, "starred_url": "https://api.github.com/users/dougvk/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/dougvk/subscriptions", "type": "User", "url": "https://api.github.com/users/dougvk" }
[]
closed
false
{ "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" }
[ { "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_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" }
6
2013-09-05T14:20:46Z
2014-01-29T03:39:48Z
2014-01-29T03:39:48Z
NONE
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/4754/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4754/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4754.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4754", "merged_at": null, "patch_url": "https://github.com/pandas-dev/pandas/pull/4754.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4754" }
https://api.github.com/repos/pandas-dev/pandas/issues/4755
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4755/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4755/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4755/events
https://github.com/pandas-dev/pandas/pull/4755
19,047,928
MDExOlB1bGxSZXF1ZXN0ODEwNzMzMA==
4,755
BUG: TimeSeries compat from < 0.13
{ "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" }
10
2013-09-05T14:44:45Z
2014-06-27T17:57:48Z
2013-09-06T23:06:27Z
CONTRIBUTOR
null
fixes a pickle compat issue for < 0.13 when presented with a TimeSeries (was an oversight on the initial PR). additional tests as well
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4755/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4755/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4755.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4755", "merged_at": "2013-09-06T23:06:27Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4755.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4755" }
https://api.github.com/repos/pandas-dev/pandas/issues/4756
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4756/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4756/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4756/events
https://github.com/pandas-dev/pandas/pull/4756
19,065,449
MDExOlB1bGxSZXF1ZXN0ODExNDIxMw==
4,756
BUG/ER: (GH2702) Bug with Series indexing not raising an error when the right-hand-side has an incorrect length
{ "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" }
2
2013-09-05T18:13:02Z
2014-06-16T16:32:22Z
2013-09-06T03:11:15Z
CONTRIBUTOR
null
closes #2702 Base use cases (note that a completely changed series will morph to the new dtype if necessary) ``` In [1]: s = Series(list('abc')) In [2]: s[0:3] = list(range(3)) In [3]: s Out[3]:  0    0 1    1 2    2 dtype: int64 In [4]: s = Series(list('abc')) In [5]: s[0:2] = list(range(2)) In [6]: s Out[6]:  0    0 1    1 2    c dtype: object ``` This is a bit odd, but allowed ``` In [4]: s[0] = list(range(10)) In [5]: s Out[5]:  0    [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] 1                                 b 2                                 c dtype: object ``` These all will raise error messages now ``` In [1]: s = Series(list('abc')) In [2]: s[0:3] = list(range(27)) ValueError: cannot set using a slice indexer with a different length than the value In [3]: s[[0,1,2]] = list(range(27)) ValueError: cannot set using a list-like indexer with a different length than the value In [4]: s[[0,1,2]] = list(range(2)) ValueError: cannot set using a list-like indexer with a different length than the value ``` With a step and a slice indexer (not sure was tested before) When the length of the slicer matches exactly it works ``` In [5]: s = Series(list('abcdef')) In [6]: s[0:4:2] = list(range(2)) In [7]: s Out[7]: 0 0 1 b 2 1 3 d 4 e 5 f dtype: object ``` Raises when it doesn't ``` In [8]: s[0:4:2] = list(range(27)) ValueError: cannot set using a slice indexer with a different length than the value ```
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4756/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4756/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4756.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4756", "merged_at": "2013-09-06T03:11:15Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4756.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4756" }
https://api.github.com/repos/pandas-dev/pandas/issues/4757
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4757/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4757/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4757/events
https://github.com/pandas-dev/pandas/pull/4757
19,069,294
MDExOlB1bGxSZXF1ZXN0ODExNjUxNA==
4,757
BUG: Bug with reindexing on the index with a non-unique index will now raise a ValueError
{ "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" }
1
2013-09-05T19:23:07Z
2014-06-16T12:19:34Z
2013-09-06T23:09:09Z
CONTRIBUTOR
null
closes #4746
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4757/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4757/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4757.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4757", "merged_at": "2013-09-06T23:09:08Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4757.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4757" }
https://api.github.com/repos/pandas-dev/pandas/issues/4758
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4758/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4758/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4758/events
https://github.com/pandas-dev/pandas/issues/4758
19,072,906
MDU6SXNzdWUxOTA3MjkwNg==
4,758
Datetime as string in indexing a MultiIndex not always working
{ "avatar_url": "https://avatars.githubusercontent.com/u/1020496?v=4", "events_url": "https://api.github.com/users/jorisvandenbossche/events{/privacy}", "followers_url": "https://api.github.com/users/jorisvandenbossche/followers", "following_url": "https://api.github.com/users/jorisvandenbossche/following{/other_user}", "gists_url": "https://api.github.com/users/jorisvandenbossche/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/jorisvandenbossche", "id": 1020496, "login": "jorisvandenbossche", "node_id": "MDQ6VXNlcjEwMjA0OTY=", "organizations_url": "https://api.github.com/users/jorisvandenbossche/orgs", "received_events_url": "https://api.github.com/users/jorisvandenbossche/received_events", "repos_url": "https://api.github.com/users/jorisvandenbossche/repos", "site_admin": false, "starred_url": "https://api.github.com/users/jorisvandenbossche/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jorisvandenbossche/subscriptions", "type": "User", "url": "https://api.github.com/users/jorisvandenbossche" }
[ { "color": "e10c02", "default": false, "description": null, "id": 76811, "name": "Bug", "node_id": "MDU6TGFiZWw3NjgxMQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug" }, { "color": "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" } ]
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-09-05T20:33:10Z
2013-11-27T10:14:52Z
2013-09-06T08:16:56Z
MEMBER
null
See http://stackoverflow.com/questions/18643030/groupby-and-multi-indexing/18644920#18644920 Basically, indexing a DateTimeIndex with a string does work in a single index, but not always in a MultiIndex: ``` In [7]: df= pd.DataFrame({'ACCOUNT':["ACCT1", "ACCT1", "ACCT1", "ACCT2"], ...: 'TICKER':["ABC", "MNP", "XYZ", "XYZ"], ...: 'val':[1,2,3,4]}, ...: index=pd.date_range("2013-06-19 09:30:00", periods=4, freq='5T')) In [8]: df_multi = df.set_index(['ACCOUNT', 'TICKER'], append=True) In [9]: df Out[9]: ACCOUNT TICKER val 2013-06-19 09:30:00 ACCT1 ABC 1 2013-06-19 09:35:00 ACCT1 MNP 2 2013-06-19 09:40:00 ACCT1 XYZ 3 2013-06-19 09:45:00 ACCT2 XYZ 4 In [10]: df_multi Out[10]: val ACCOUNT TICKER 2013-06-19 09:30:00 ACCT1 ABC 1 2013-06-19 09:35:00 ACCT1 MNP 2 2013-06-19 09:40:00 ACCT1 XYZ 3 2013-06-19 09:45:00 ACCT2 XYZ 4 ``` Accessing a row with string in single index works: ``` In [11]: df.loc['2013-06-19 09:30:00'] Out[11]: ACCOUNT ACCT1 TICKER ABC val 1 Name: 2013-06-19 09:30:00, dtype: object ``` In a MultiIndex it doesn't work: ``` In [12]: df_multi.loc[('2013-06-19 09:30:00', 'ACCT1', 'ABC')] --------------------------------------------------------------------------- KeyError Traceback (most recent call last) <ipython-input-12-cbb2ba302ffa> in <module>() ----> 1 df_multi.loc[('2013-06-19 09:30:00', 'ACCT1', 'ABC')] c:\users\vdbosscj\scipy\pandas-joris\pandas\core\indexing.pyc in __getitem__(self, key) 722 def __getitem__(self, key): 723 if type(key) is tuple: --> 724 return self._getitem_tuple(key) 725 else: 726 return self._getitem_axis(key, axis=0) c:\users\vdbosscj\scipy\pandas-joris\pandas\core\indexing.pyc in _getitem_tuple(self, tup) 285 286 # no multi-index, so validate all of the indexers --> 287 self._has_valid_tuple(tup) 288 289 # ugly hack for GH #836 c:\users\vdbosscj\scipy\pandas-joris\pandas\core\indexing.pyc in _has_valid_tuple(self, key) 717 if i >= self.obj.ndim: 718 raise ValueError('Too many indexers') --> 719 if not self._has_valid_type(k,i): 720 raise ValueError("Location based indexing can only have [%s] types" % self._valid_types) 721 c:\users\vdbosscj\scipy\pandas-joris\pandas\core\indexing.pyc in _has_valid_type(self, key, axis) 792 793 if not key in ax: --> 794 raise KeyError("the label [%s] is not in the [%s]" % (key,self.obj._get_axis_name(axis))) 795 796 return True KeyError: 'the label [ACCT1] is not in the [columns]' ``` But when only accessing the first two levels of the three levels of the MultiIndex, it does work: ``` In [13]: df_multi.loc[('2013-06-19 09:30:00', 'ACCT1')] Out[13]: val TICKER ABC 1 ``` And when using a Timestamp it also works (as it should be): ``` In [14]: df_multi.loc[(pd.Timestamp('2013-06-19 09:30:00', tz=None), 'ACCT1', 'ABC')] Out[14]: val 1 Name: (2013-06-19 09:30:00, ACCT1, ABC), dtype: int64 ```
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4758/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4758/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4759
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4759/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4759/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4759/events
https://github.com/pandas-dev/pandas/issues/4759
19,084,148
MDU6SXNzdWUxOTA4NDE0OA==
4,759
ENH: Better Exception when trying to set on Series with tuple-index.
{ "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
{ "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" }
[ { "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_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-09-06T01:27:20Z
2013-09-15T05:01:34Z
2013-09-15T05:01:34Z
CONTRIBUTOR
null
Fix this Exception to be better (probably the same `tuple-index` error or something...) ``` python >>> import pandas.util.testing as tm >>> ts = tm.makeTimeSeries() >>> ts[:, 2] = None Traceback (most recent call last): File "<console>", line 1, in <module> File "pandas/core/series.py", line 1061, in __setitem__ self._set_with(key, value) File "pandas/core/series.py", line 1103, in _set_with self._set_labels(key, value) File "pandas/core/series.py", line 1110, in _set_labels indexer = self.index.get_indexer(key) File "pandas/core/index.py", line 920, in get_indexer return this.get_indexer(target, method=method, limit=limit) File "pandas/core/index.py", line 935, in get_indexer indexer = self._engine.get_indexer(target.values) File "index.pyx", line 267, in pandas.index.IndexEngine.get_indexer (pandas/index.c:5079) File "hashtable.pyx", line 722, in pandas.hashtable.PyObjectHashTable.lookup (pandas/hashtable.c:11394) TypeError: unhashable type ``` Compare to this exception for **getitem** for the same thing: ``` python >>> ts[:, 2] Traceback (most recent call last): File "<console>", line 1, in <module> File "pandas/core/series.py", line 944, in __getitem__ return self._get_with(key) File "pandas/core/series.py", line 961, in _get_with return self._get_values_tuple(key) File "pandas/core/series.py", line 1007, in _get_values_tuple raise ValueError('Can only tuple-index with a MultiIndex') ValueError: Can only tuple-index with a MultiIndex ```
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4759/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4759/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4760
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4760/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4760/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4760/events
https://github.com/pandas-dev/pandas/pull/4760
19,085,496
MDExOlB1bGxSZXF1ZXN0ODEyNjAyNA==
4,760
CLN: Move print_versions into pandas proper.
{ "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" }
4
2013-09-06T02:26:58Z
2014-07-16T08:26:47Z
2013-09-06T02:49:12Z
CONTRIBUTOR
null
Moves print_versions under util so that it can be called from buildbot (and so we can tell people to run `from pandas.util.print_versions import show_versions; show_versions()` when trying to debug) cc @yarikoptic
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4760/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4760/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4760.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4760", "merged_at": "2013-09-06T02:49:12Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4760.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4760" }
https://api.github.com/repos/pandas-dev/pandas/issues/4761
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4761/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4761/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4761/events
https://github.com/pandas-dev/pandas/pull/4761
19,086,321
MDExOlB1bGxSZXF1ZXN0ODEyNjQ4Nw==
4,761
BUG: in multi-indexing with a partial string selection (GH4758)
{ "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-09-06T03:08:12Z
2014-07-02T05:01:36Z
2013-09-06T08:16:56Z
CONTRIBUTOR
null
closes #4758 ``` In [2]: df = DataFrame({'ACCOUNT':["ACCT1", "ACCT1", "ACCT1", "ACCT2"], ...: 'TICKER':["ABC", "MNP", "XYZ", "XYZ"], ...: 'val':[1,2,3,4]}, ...: index=date_range("2013-06-19 09:30:00", periods=4, freq='5T')) In [3]: df_multi = df.set_index(['ACCOUNT', 'TICKER'], append=True) In [4]: df_multi.loc[(pd.Timestamp('2013-06-19 09:30:00', tz=None), 'ACCT1', 'ABC')] Out[4]: val 1 Name: (2013-06-19 09:30:00, ACCT1, ABC), dtype: int64 In [5]: df_multi.loc[('2013-06-19 09:30:00', 'ACCT1', 'ABC')] Out[5]: val 1 Name: (2013-06-19 09:30:00, ACCT1, ABC), dtype: int64 ``` This is quite difficult to do, a partial selection on a single indexer, so KeyError for now ``` In [6]: df_multi.loc[('2013-06-19', 'ACCT1', 'ABC')] KeyError: 'the label [ACCT1] is not in the [columns]' ```
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4761/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4761/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4761.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4761", "merged_at": "2013-09-06T08:16:56Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4761.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4761" }
https://api.github.com/repos/pandas-dev/pandas/issues/4762
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4762/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4762/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4762/events
https://github.com/pandas-dev/pandas/pull/4762
19,088,231
MDExOlB1bGxSZXF1ZXN0ODEyNzQ4Nw==
4,762
Gotachas -> Gotchas
{ "avatar_url": "https://avatars.githubusercontent.com/u/836375?v=4", "events_url": "https://api.github.com/users/rgbkrk/events{/privacy}", "followers_url": "https://api.github.com/users/rgbkrk/followers", "following_url": "https://api.github.com/users/rgbkrk/following{/other_user}", "gists_url": "https://api.github.com/users/rgbkrk/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/rgbkrk", "id": 836375, "login": "rgbkrk", "node_id": "MDQ6VXNlcjgzNjM3NQ==", "organizations_url": "https://api.github.com/users/rgbkrk/orgs", "received_events_url": "https://api.github.com/users/rgbkrk/received_events", "repos_url": "https://api.github.com/users/rgbkrk/repos", "site_admin": false, "starred_url": "https://api.github.com/users/rgbkrk/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/rgbkrk/subscriptions", "type": "User", "url": "https://api.github.com/users/rgbkrk" }
[]
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-09-06T04:46:59Z
2014-07-16T08:26:51Z
2013-09-06T04:50:46Z
CONTRIBUTOR
null
Just a quick typo fix.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4762/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4762/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4762.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4762", "merged_at": "2013-09-06T04:50:46Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4762.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4762" }
https://api.github.com/repos/pandas-dev/pandas/issues/4763
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4763/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4763/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4763/events
https://github.com/pandas-dev/pandas/issues/4763
19,119,521
MDU6SXNzdWUxOTExOTUyMQ==
4,763
Inconsistent isin with strings
{ "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": "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
{ "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" }
1
2013-09-06T18:04:18Z
2013-09-06T20:07:10Z
2013-09-06T20:07:10Z
MEMBER
null
``` In [5]: s = Series(list('abc')) In [6]: s.isin('a') Out[6]: 0 True 1 False 2 False dtype: bool In [5]: s = Series(list('abc')) In [6]: s.isin('a') Out[6]: 0 True 1 False 2 False dtype: bool In [7]: s = Series(['aaa', 'b', 'c']) In [8]: s.isin('aaa') Out[8]: 0 False 1 False 2 False dtype: bool ``` I would expect: ``` In [7]: s = Series(['aaa', 'b', 'c']) In [8]: s.isin('aaa') Out[8]: 0 True 1 False 2 False dtype: bool ``` or a raise....but raising seems inconsistent with the fact that single strings work.... this is happening bc the iterable passed in is turned into a set which is why a single string works
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4763/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4763/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4764
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4764/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4764/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4764/events
https://github.com/pandas-dev/pandas/issues/4764
19,122,193
MDU6SXNzdWUxOTEyMjE5Mw==
4,764
BLD: windows builds failing in pandas.json
{ "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" }, { "color": "207de5", "default": false, "description": "read_json, to_json, json_normalize", "id": 49379259, "name": "IO JSON", "node_id": "MDU6TGFiZWw0OTM3OTI1OQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20JSON" } ]
closed
false
null
[]
{ "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" }
10
2013-09-06T18:56:25Z
2013-09-18T12:29:24Z
2013-09-18T12:29:24Z
CONTRIBUTOR
null
cc @Komnomnomnom was reported by Gagi, but I reproduced this on building on AMD64 This is current master can you take a look? thanks ``` building 'pandas.json' extension creating build\temp.win-amd64-2.7\Release\pandas\src\ujson creating build\temp.win-amd64-2.7\Release\pandas\src\ujson\python creating build\temp.win-amd64-2.7\Release\pandas\src\ujson\lib C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -Ipandas/src/ujson/python -Ipandas/src/ujson/lib -Ipandas/src/datetime -Ipandas/src/klib -Ipandas/src -IC:\pyth on27\lib\site-packages\numpy\core\include -IC:\python27\include -IC:\python27\PC /Tcpandas/src/ujson/python/ujson.c /Fobuild\temp.win-amd64-2.7\Release\pandas/src/ujson/python/ujson.obj -D_GNU_SOURCE ujson.c C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -Ipandas/src/ujson/python -Ipandas/src/ujson/lib -Ipandas/src/datetime -Ipandas/src/klib -Ipandas/src -IC:\pyth on27\lib\site-packages\numpy\core\include -IC:\python27\include -IC:\python27\PC /Tcpandas/src/ujson/python/objToJSON.c /Fobuild\temp.win-amd64-2.7\Release\pandas/src/ujson/python/objToJSON.obj -D_GNU_SOURCE objToJSON.c c:\python27\lib\site-packages\numpy\core\include\numpy\npy_deprecated_api.h(8) : Warning Msg: Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION pandas/src/ujson/python/objToJSON.c(249) : warning C4267: 'function' : conversion from 'size_t' to 'int', possible loss of data pandas/src/ujson/python/objToJSON.c(274) : error C2143: syntax error : missing ';' before 'type' pandas/src/ujson/python/objToJSON.c(275) : error C2275: 'PyDatetimeScalarObject' : illegal use of this type as an expression C:\python27\lib\site-packages\numpy\core\include\numpy/arrayscalars.h(123) : see declaration of 'PyDatetimeScalarObject' pandas/src/ujson/python/objToJSON.c(275) : error C2065: 'obj' : undeclared identifier pandas/src/ujson/python/objToJSON.c(277) : error C2065: 'obj' : undeclared identifier pandas/src/ujson/python/objToJSON.c(277) : error C2223: left of '->obval' must point to struct/union pandas/src/ujson/python/objToJSON.c(277) : error C2065: 'obj' : undeclared identifier pandas/src/ujson/python/objToJSON.c(277) : error C2223: left of '->obmeta' must point to struct/union pandas/src/ujson/python/objToJSON.c(277) : error C2065: 'dts' : undeclared identifier pandas/src/ujson/python/objToJSON.c(277) : warning C4047: 'function' : 'npy_datetime' differs in levels of indirection from 'int *' pandas/src/ujson/python/objToJSON.c(277) : warning C4024: 'pandas_datetime_to_datetimestruct' : different types for formal and actual parameter 1 pandas/src/ujson/python/objToJSON.c(277) : error C2198: 'pandas_datetime_to_datetimestruct' : too few arguments for call pandas/src/ujson/python/objToJSON.c(278) : error C2065: 'dts' : undeclared identifier pandas/src/ujson/python/objToJSON.c(278) : warning C4133: 'function' : incompatible types - from 'int *' to 'pandas_datetimestruct *' pandas/src/ujson/python/objToJSON.c(356) : warning C4244: '=' : conversion from 'npy_intp' to 'int', possible loss of data error: command '"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\Bin\amd64\cl.exe"' failed with exit status 2 PS H:\jreback\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/4764/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4764/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4765
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4765/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4765/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4765/events
https://github.com/pandas-dev/pandas/pull/4765
19,122,716
MDExOlB1bGxSZXF1ZXN0ODE0NjY3OA==
4,765
API: raise a TypeError when isin is passed a string
{ "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" }
2
2013-09-06T19:08:12Z
2014-06-22T20:42:31Z
2013-09-06T20:07:10Z
MEMBER
null
closes #4763
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4765/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4765/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4765.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4765", "merged_at": "2013-09-06T20:07:10Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4765.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4765" }
https://api.github.com/repos/pandas-dev/pandas/issues/4766
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4766/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4766/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4766/events
https://github.com/pandas-dev/pandas/pull/4766
19,132,878
MDExOlB1bGxSZXF1ZXN0ODE1Mjg2MA==
4,766
BUG: Bug in setting with loc/ix a single indexer on a multi-index axis and a listlike (related to GH3777)
{ "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-09-06T23:00:49Z
2014-06-18T19:30:24Z
2013-09-07T00:10:52Z
CONTRIBUTOR
null
related to #3777 This shows enlarging (and setting inplace) ``` In [8]: df = DataFrame(np.random.randint(5,10,size=9).reshape(3, 3), ...: ...: columns=list('abc'), ...: ...: index=[[4,4,8],[8,10,12]]) In [9]: In [9]: df Out[9]: a b c 4 8 8 8 8 10 9 7 6 8 12 8 7 9 In [10]: df.loc[4,'d'] = [0,1.] In [11]: df Out[11]: a b c d 4 8 8 8 8 0 10 9 7 6 1 8 12 8 7 9 NaN In [12]: df.loc[4,'d'] = [3,4] In [13]: df Out[13]: a b c d 4 8 8 8 8 3 10 9 7 6 4 8 12 8 7 9 NaN ``` Invalid assignments ``` In [10]: df.loc[4,'d'] = [3] ValueError: cannot set using a multi-index selection indexer with a different length than the value In [11]: df.loc[4,'d'] = [3,4,5] ValueError: cannot set using a multi-index selection indexer with a different length than the value ```
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4766/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4766/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4766.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4766", "merged_at": "2013-09-07T00:10:52Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4766.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4766" }
https://api.github.com/repos/pandas-dev/pandas/issues/4767
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4767/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4767/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4767/events
https://github.com/pandas-dev/pandas/issues/4767
19,134,651
MDU6SXNzdWUxOTEzNDY1MQ==
4,767
BUG: readback of duplicate columns in a HDFStore table is buggy
{ "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://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": "0b02e1", "default": false, "description": "Related to indexing on series/frames, not to indexes themselves", "id": 2822098, "name": "Indexing", "node_id": "MDU6TGFiZWwyODIyMDk4", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Indexing" }, { "color": "5319e7", "default": false, "description": "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" }
0
2013-09-07T00:05:13Z
2013-09-07T00:20:06Z
2013-09-07T00:20:06Z
CONTRIBUTOR
null
http://stackoverflow.com/questions/18646668/pandas-hdfstore-duplicate-items-error/18668217#18668217
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4767/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4767/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4768
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4768/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4768/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4768/events
https://github.com/pandas-dev/pandas/pull/4768
19,134,786
MDExOlB1bGxSZXF1ZXN0ODE1MzkwNw==
4,768
BUG: reading from a store with duplicate columns across dtypes would raise (GH4767)
{ "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-09-07T00:10:23Z
2014-06-12T07:59:14Z
2013-09-07T00:20:06Z
CONTRIBUTOR
null
closes #4767
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4768/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4768/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4768.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4768", "merged_at": "2013-09-07T00:20:06Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4768.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4768" }
https://api.github.com/repos/pandas-dev/pandas/issues/4769
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4769/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4769/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4769/events
https://github.com/pandas-dev/pandas/pull/4769
19,136,980
MDExOlB1bGxSZXF1ZXN0ODE1NDk0Mg==
4,769
TST: more robust testing for HDFStore dups
{ "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-09-07T02:25:23Z
2014-07-16T08:26:59Z
2013-09-07T02:35:28Z
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/4769/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4769/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4769.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4769", "merged_at": "2013-09-07T02:35:28Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4769.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4769" }
https://api.github.com/repos/pandas-dev/pandas/issues/4770
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4770/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4770/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4770/events
https://github.com/pandas-dev/pandas/pull/4770
19,137,984
MDExOlB1bGxSZXF1ZXN0ODE1NTM1Mg==
4,770
REF/BUG/ENH/API: refactor read_html to use TextParser
{ "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": "006b75", "default": false, "description": "read_html, to_html, Styler.apply, Styler.applymap", "id": 57395487, "name": "IO HTML", "node_id": "MDU6TGFiZWw1NzM5NTQ4Nw==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20HTML" } ]
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" }
39
2013-09-07T04:14:16Z
2015-08-23T12:59:28Z
2013-10-03T02:26:05Z
MEMBER
null
closes #4697 (refactor issue) (REF/ENH) closes #4700 (header inconsistency issue) (API) closes #5029 (comma issue, added this data set, ordering issue) (BUG) closes #5048 (header type conversion issue) (BUG) closes #5066 (index_col issue) (BUG) - [x] figure out `skiprows`, `header`, and `index_col` interaction (a somewhat longstanding `MultiIndex` sorting issue, I just took the long way to get there :)) - ~~spam url not working anymore~~ (US gov "shutdown" is responsible for this, it correctly skips) - ~~table ordering doc blurb/HTML gotchas~~ (was an actual "bug", now fixed in this PR) - ~~add tests for rows with a different length~~ (this is already done by the existing tests)
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4770/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4770/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4770.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4770", "merged_at": "2013-10-03T02:26:05Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4770.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4770" }
https://api.github.com/repos/pandas-dev/pandas/issues/4771
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4771/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4771/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4771/events
https://github.com/pandas-dev/pandas/issues/4771
19,145,492
MDU6SXNzdWUxOTE0NTQ5Mg==
4,771
BUG: concatenation of dups across dtypes fails for axis=0
{ "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": "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" }
0
2013-09-07T14:33:38Z
2013-09-25T23:53:33Z
2013-09-07T20:57:14Z
CONTRIBUTOR
null
Addmitedly an odd case.... ``` In [5]: df = concat([DataFrame(np.random.randn(10,4),columns=['A','A','B','B']), ...: DataFrame(np.random.randint(0,10,size=20).reshape(10,2),columns=['A','C'])], ...: axis=1) In [6]: df Out[6]: A A B B A C 0 -0.931048 1.068066 -0.006521 -0.031878 4 7 1 2.440559 1.279710 -0.272613 -1.387456 8 4 2 -0.220729 0.730665 -0.999338 -1.063784 1 1 3 -0.395295 -0.868506 -1.945702 1.531287 4 1 4 0.218480 -1.907875 0.354556 -0.277721 9 3 5 -0.518193 -1.292118 -0.250087 0.750773 3 8 6 1.908601 -1.736724 -1.156278 0.552929 3 7 7 -0.996528 0.081386 -1.030960 0.959769 7 1 8 0.349220 0.904122 -0.033104 -1.469096 1 4 9 0.798829 -0.882321 -1.969144 -0.237184 4 7 In [7]: concat([df,df],axis=1) Out[7]: A A B B A C A A B B A C 0 -0.931048 1.068066 -0.006521 -0.031878 4 7 -0.931048 1.068066 -0.006521 -0.031878 4 7 1 2.440559 1.279710 -0.272613 -1.387456 8 4 2.440559 1.279710 -0.272613 -1.387456 8 4 2 -0.220729 0.730665 -0.999338 -1.063784 1 1 -0.220729 0.730665 -0.999338 -1.063784 1 1 3 -0.395295 -0.868506 -1.945702 1.531287 4 1 -0.395295 -0.868506 -1.945702 1.531287 4 1 4 0.218480 -1.907875 0.354556 -0.277721 9 3 0.218480 -1.907875 0.354556 -0.277721 9 3 5 -0.518193 -1.292118 -0.250087 0.750773 3 8 -0.518193 -1.292118 -0.250087 0.750773 3 8 6 1.908601 -1.736724 -1.156278 0.552929 3 7 1.908601 -1.736724 -1.156278 0.552929 3 7 7 -0.996528 0.081386 -1.030960 0.959769 7 1 -0.996528 0.081386 -1.030960 0.959769 7 1 8 0.349220 0.904122 -0.033104 -1.469096 1 4 0.349220 0.904122 -0.033104 -1.469096 1 4 9 0.798829 -0.882321 -1.969144 -0.237184 4 7 0.798829 -0.882321 -1.969144 -0.237184 4 7 In [8]: concat([df,df],axis=0) AttributeError: 'BlockManager' object has no attribute '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/4771/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4771/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4772
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4772/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4772/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4772/events
https://github.com/pandas-dev/pandas/pull/4772
19,150,240
MDExOlB1bGxSZXF1ZXN0ODE1ODk2MQ==
4,772
BUG: Bug in concatenation with duplicate columns across dtypes not merging with axis=0 (GH4771)
{ "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" }
3
2013-09-07T19:16:11Z
2014-06-13T14:32:04Z
2013-09-07T20:57:14Z
CONTRIBUTOR
null
closes #4771 TST/BUG: Bug in iloc with a slice index failing (GH4771)
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4772/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4772/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4772.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4772", "merged_at": "2013-09-07T20:57:14Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4772.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4772" }
https://api.github.com/repos/pandas-dev/pandas/issues/4773
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4773/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4773/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4773/events
https://github.com/pandas-dev/pandas/pull/4773
19,151,608
MDExOlB1bGxSZXF1ZXN0ODE1OTUxMA==
4,773
TST: add dups on both index tests for HDFStore
{ "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-09-07T21:02:33Z
2014-07-16T08:27:09Z
2013-09-07T21:18:52Z
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/4773/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4773/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4773.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4773", "merged_at": "2013-09-07T21:18:52Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4773.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4773" }
https://api.github.com/repos/pandas-dev/pandas/issues/4774
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4774/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4774/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4774/events
https://github.com/pandas-dev/pandas/pull/4774
19,154,603
MDExOlB1bGxSZXF1ZXN0ODE2MDcwNA==
4,774
BUG: read_fwf: incorrect error message with no colspecs or widths
{ "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
[]
null
0
2013-09-08T01:57:55Z
2014-06-12T14:15:28Z
2013-09-08T03:14:03Z
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/4774/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4774/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4774.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4774", "merged_at": "2013-09-08T03:14:03Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4774.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4774" }
https://api.github.com/repos/pandas-dev/pandas/issues/4775
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4775/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4775/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4775/events
https://github.com/pandas-dev/pandas/pull/4775
19,162,847
MDExOlB1bGxSZXF1ZXN0ODE2MzkxMg==
4,775
DOC: some stylistic improvements to docstring rendering in documentation
{ "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-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-09-08T16:16:49Z
2014-07-16T08:27:12Z
2013-09-20T22:21:44Z
MEMBER
null
This is a PR with some stylistic improvements to the docstring rendering in the documentation. The incentive was that I found the reference (docstring) documentation not always clearly organised. Things I changed (mainly copied from the new numpy/scipy docs): - reduced space around parameter description - italic font for parameter types - assure that colon after "Parameters" is on same line and some grey background in Parameter field to highlight the - "See also" box: put link and description on same line - light background color in code examples - line under Notes and Examples section headers You can see the result here: http://jorisvandenbossche.github.io/example-pandas-docs/html-docstring-rendering/generated/pandas.DataFrame.apply.html#pandas.DataFrame.apply and compare with the original: http://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.apply.html#pandas.DataFrame.apply Each of the points is of course debatable and I can change some of them back. Maybe the grey background of the code cells (this also applies to the tutorial docs) and the grey highlighting of the "parameter" and "returns" field (this can alse be the full block as in eg http://docs.scipy.org/doc/numpy/reference/generated/numpy.reshape.html#numpy.reshape) is maybe the most debatable. Style is of course always subjective :-) So what do you think?
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4775/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4775/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4775.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4775", "merged_at": "2013-09-20T22:21:44Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4775.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4775" }
https://api.github.com/repos/pandas-dev/pandas/issues/4776
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4776/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4776/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4776/events
https://github.com/pandas-dev/pandas/pull/4776
19,163,530
MDExOlB1bGxSZXF1ZXN0ODE2NDExMg==
4,776
DOC: correction of example in unstack docstring
{ "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
{ "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" }
[ { "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_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-09-08T16:56:25Z
2014-07-16T08:27:13Z
2013-09-20T22:18:14Z
MEMBER
null
There is an error in the example of the `unstack` docstring (http://pandas.pydata.org/pandas-docs/dev/generated/pandas.DataFrame.unstack.html ): ``` >>> df = s.unstack(level=0) >>> df one two a 1. 2. b 3. 4 ``` should be ``` one two a 1. 3. b 2. 4 ``` So this PR fixes that, but in the same time I did some other adjustments. Mainly: - added a "see also" - added in the example the code to create the series, so one can run the example him/herself
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4776/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4776/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4776.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4776", "merged_at": "2013-09-20T22:18:14Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4776.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4776" }
https://api.github.com/repos/pandas-dev/pandas/issues/4777
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4777/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4777/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4777/events
https://github.com/pandas-dev/pandas/pull/4777
19,169,379
MDExOlB1bGxSZXF1ZXN0ODE2NjEzMQ==
4,777
PERF: refactor tokenizer to give compiler branching hints. (OSX testers wanted)
{ "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" }
10
2013-09-08T23:21:55Z
2014-06-14T23:47:58Z
2013-09-10T13:50:23Z
NONE
null
Included vbench shows ~12% improvement. I've seen 15-20% on movielens, 8% on FEC. I've encountered no regressions on any dataset I tried. Tested with gcc 4.6,4.7,4.8 on linux, results from OSX+clang would be useful: `./test_perf.sh -H -r read_table_multiple_long` before and after. Second VB commit is unrelated. Will merge in a couple of days or so, if all is quiet.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4777/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4777/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4777.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4777", "merged_at": null, "patch_url": "https://github.com/pandas-dev/pandas/pull/4777.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4777" }
https://api.github.com/repos/pandas-dev/pandas/issues/4778
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4778/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4778/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4778/events
https://github.com/pandas-dev/pandas/pull/4778
19,171,108
MDExOlB1bGxSZXF1ZXN0ODE2NjY5Ng==
4,778
BLD: windows builds failing in pandas.json (#4764)
{ "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-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-09-09T00:59:50Z
2014-07-16T08:27:15Z
2013-09-18T02:36:50Z
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/4778/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4778/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4778.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4778", "merged_at": "2013-09-18T02:36:50Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4778.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4778" }
https://api.github.com/repos/pandas-dev/pandas/issues/4779
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4779/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4779/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4779/events
https://github.com/pandas-dev/pandas/pull/4779
19,172,392
MDExOlB1bGxSZXF1ZXN0ODE2NzA0OQ==
4,779
TST/BUG: duplicate indexing ops with a Series using where and inplace add buggy (GH4550/GH4548)
{ "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-09-09T01:51:08Z
2014-06-15T21:16:42Z
2013-09-09T02:03:15Z
CONTRIBUTOR
null
closes #4550,#4548 ``` In [1]: s = pd.concat([Series(list(range(3))),Series(list(range(3)))]) In [2]: s Out[2]: 0 0 1 1 2 2 0 0 1 1 2 2 dtype: int64 In [3]: s.where(s<2) Out[3]: 0 0 1 1 2 NaN 0 0 1 1 2 NaN dtype: float64 In [4]: s[s<1] = 5 In [5]: s Out[5]: 0 5 1 1 2 2 0 5 1 1 2 2 dtype: int64 In [6]: s[s<2] += 10 In [7]: s Out[7]: 0 5 1 11 2 2 0 5 1 11 2 2 dtype: int64 ```
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4779/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4779/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4779.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4779", "merged_at": "2013-09-09T02:03:14Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4779.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4779" }
https://api.github.com/repos/pandas-dev/pandas/issues/4780
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4780/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4780/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4780/events
https://github.com/pandas-dev/pandas/issues/4780
19,173,435
MDU6SXNzdWUxOTE3MzQzNQ==
4,780
Documentation Improvement -- Typo in 10 Minutes to Pandas Tutorial? (date_range)
{ "avatar_url": "https://avatars.githubusercontent.com/u/4527729?v=4", "events_url": "https://api.github.com/users/myhrvold/events{/privacy}", "followers_url": "https://api.github.com/users/myhrvold/followers", "following_url": "https://api.github.com/users/myhrvold/following{/other_user}", "gists_url": "https://api.github.com/users/myhrvold/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/myhrvold", "id": 4527729, "login": "myhrvold", "node_id": "MDQ6VXNlcjQ1Mjc3Mjk=", "organizations_url": "https://api.github.com/users/myhrvold/orgs", "received_events_url": "https://api.github.com/users/myhrvold/received_events", "repos_url": "https://api.github.com/users/myhrvold/repos", "site_admin": false, "starred_url": "https://api.github.com/users/myhrvold/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/myhrvold/subscriptions", "type": "User", "url": "https://api.github.com/users/myhrvold" }
[]
closed
false
null
[]
null
2
2013-09-09T02:42:07Z
2013-09-09T03:59:54Z
2013-09-09T03:59:54Z
NONE
null
Hi all, I'm new to pandas and going through the tutorial: http://pandas.pydata.org/pandas-docs/stable/10min.html . At the top, under the Object Creation tutorial there's a date_range function, which is part of pandas so it has the pd in front of it: In [5]: dates = pd.date_range('20130101',periods=6) Later on, under Setting, there's another date_range function but this time without pd in front: In [42]: s1 = pd.Series([1,2,3,4,5,6],index=date_range('20130102',periods=6)) I can't get it to run properly without adding a 'pd.' in front of the date_range, so I imagine this is a typo in the tutorial. The top cell of the image is the code as it's presented in the tutorial; the bottom cell is after adding .pd to it. ![image](https://f.cloud.github.com/assets/4527729/1104432/6421e5bc-18f8-11e3-9628-8f0ed5785a66.png) It took me a minute or two to figure this out, so figured it might confuse people if in fact this is a typo, especially those new to pandas such as myself. I'm also seeing this same problem with some of the Series (specifically, histogram). And I'm running my IPython notebook from the top of the file, each time, so it's not like I haven't already evaluated the cells above: Histogramming In [65]: s = Series(np.random.randint(0,7,size=10)) String Methods In [68]: s = Series(['A', 'B', 'C', 'Aaba', 'Baca', np.nan, 'CABA', 'dog', 'cat']) Time Series In [115]: ts = Series(randn(len(prng)), prng) Other cells in Time Series above and below both use pd.Series. The error in all cases is: NameError: name 'Series' is not defined. In Merge Concat section, concat instead of pd.concat. Here is what the tutorial gives: In [73]: concat(pieces)
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4780/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4780/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4781
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4781/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4781/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4781/events
https://github.com/pandas-dev/pandas/pull/4781
19,173,852
MDExOlB1bGxSZXF1ZXN0ODE2NzY5MQ==
4,781
ENH: Add axis and level keywords to where, so that the other argument can now be an alignable pandas object.
{ "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" }
2
2013-09-09T03:05:55Z
2014-06-12T07:40:42Z
2013-09-10T11:34:51Z
CONTRIBUTOR
null
So traditionally a fillna that does the means of the columns is an apply operation ``` In [1]: df = DataFrame(np.random.randn(10,3)) In [2]: df.iloc[3:5,0] = np.nan In [3]: df.iloc[4:6,1] = np.nan In [4]: df.iloc[5:8,2] = np.nan In [5]: df Out[5]: 0 1 2 0 0.096030 0.197451 1.645981 1 -0.443437 0.359204 -0.382563 2 0.613981 1.418754 -0.589935 3 0.000000 0.449953 -0.308414 4 0.000000 0.000000 -0.471054 5 -2.350309 0.000000 0.000000 6 -0.218522 0.498207 0.000000 7 0.478238 0.399154 0.000000 8 0.895854 0.230992 0.025799 9 0.085675 2.189373 -0.946990 ``` The following currently fails in 0.12 as where is finicky about how it broadcasts ``` In [4]: df.where(df>0,df[0],axis='index') ValueError: other must be the same shape as self when an ndarray ``` Adding `axis` and `level` arguments to `where` (which uses align under the hood), now enables the `other` object to be a Series/DataFrame (as well as a scalar) without a whole bunch of alignment/broadcasting. This also should be quite a bit faster. ``` IIn [6]: df.where(df>0,df[0],axis='index') Out[6]: 0 1 2 0 0.096030 0.197451 1.645981 1 -0.443437 0.359204 -0.443437 2 0.613981 1.418754 0.613981 3 0.000000 0.449953 0.000000 4 0.000000 0.000000 0.000000 5 -2.350309 -2.350309 -2.350309 6 -0.218522 0.498207 -0.218522 7 0.478238 0.399154 0.478238 8 0.895854 0.230992 0.025799 9 0.085675 2.189373 0.085675 ``` This works in 0.12. ``` In [7]: df.apply(lambda x, y: x.where(x>0,y), y=df[0]) Out[7]: 0 1 2 0 0.096030 0.197451 1.645981 1 -0.443437 0.359204 -0.443437 2 0.613981 1.418754 0.613981 3 0.000000 0.449953 0.000000 4 0.000000 0.000000 0.000000 5 -2.350309 -2.350309 -2.350309 6 -0.218522 0.498207 -0.218522 7 0.478238 0.399154 0.478238 8 0.895854 0.230992 0.025799 9 0.085675 2.189373 0.085675 ```
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4781/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4781/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4781.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4781", "merged_at": "2013-09-10T11:34:51Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4781.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4781" }
https://api.github.com/repos/pandas-dev/pandas/issues/4782
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4782/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4782/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4782/events
https://github.com/pandas-dev/pandas/issues/4782
19,174,341
MDU6SXNzdWUxOTE3NDM0MQ==
4,782
Unfinished test case in pandas/io/tests/test_parsers
{ "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" }
[ { "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": "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": null, "closed_issues": 786, "created_at": "2015-01-13T10:53:19Z", "creator": { "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://api.github.com/users/jreback/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/jreback", "id": 953992, "login": "jreback", "node_id": "MDQ6VXNlcjk1Mzk5Mg==", "organizations_url": "https://api.github.com/users/jreback/orgs", "received_events_url": "https://api.github.com/users/jreback/received_events", "repos_url": "https://api.github.com/users/jreback/repos", "site_admin": false, "starred_url": "https://api.github.com/users/jreback/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jreback/subscriptions", "type": "User", "url": "https://api.github.com/users/jreback" }, "description": "Changes that would be nice to have in the next release. These issues are not blocking. They will be pushed to the next release if no one has time to fix them.", "due_on": null, "html_url": "https://github.com/pandas-dev/pandas/milestone/32", "id": 933188, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/32/labels", "node_id": "MDk6TWlsZXN0b25lOTMzMTg4", "number": 32, "open_issues": 1053, "state": "open", "title": "Contributions Welcome", "updated_at": "2021-11-21T00:50:06Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/32" }
2
2013-09-09T03:29:21Z
2016-08-01T17:35:47Z
2016-08-01T10:17:17Z
CONTRIBUTOR
null
Any ideas on what this was supposed to be? (from 50ae5268) ``` python def test_multiple_skts_example(self): data = "year, month, a, b\n 2001, 01, 0.0, 10.\n 2001, 02, 1.1, 11." pass ``` Came in a commit with release notes that said: ``` diff diff --git a/RELEASE.rst b/RELEASE.rst index a82e511..607be2e 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -41,6 +41,9 @@ pandas 0.8.0 - Add ``match`` function to API (#502) - Add Cython-optimized first, last, min, max, prod functions to GroupBy (#994, #1043) + - Dates can be split across multiple columns (#1227, #1186) + - Add experimental support for converting pandas DataFrame to R data.frame + via rpy2 (#350, #1212) **Improvements to existing features** @@ -53,6 +56,7 @@ pandas 0.8.0 - Can pass arrays in addition to column names to DataFrame.set_index (#402) - Improve the speed of "square" reindexing of homogeneous DataFrame objects by significant margin (#836) + - Handle more dtypes when passed MaskedArrays in DataFrame constructor (#406) ```
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4782/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4782/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4783
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4783/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4783/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4783/events
https://github.com/pandas-dev/pandas/pull/4783
19,174,735
MDExOlB1bGxSZXF1ZXN0ODE2ODAxMw==
4,783
BUG: Fix input bytes conversion in Py3 to return str
{ "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" }
5
2013-09-09T03:45:05Z
2014-06-19T08:30:04Z
2013-09-14T01:59:59Z
CONTRIBUTOR
null
Fixes #3963, #4785 Fixed bug with reading compressed files in as `bytes` (`gzip` and `bz2` both now return `bytes` rather than `str` in Python 3) rather than `str` in Python 3, as well as the lack of conversion of `BytesIO`. Now, `_get_handle` and `_wrap_compressed` both wrap in an `io.TextIOWrapper`, so that the parsers work internally only with `str` in Python 3. In Python 3.2, has to read the entire file in first (because `gzip` and `bz2` files both lack a `read1()` method in 3.2) Also adds support for passing fileobjects with compression == 'bz2'.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4783/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4783/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4783.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4783", "merged_at": "2013-09-14T01:59:59Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4783.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4783" }
https://api.github.com/repos/pandas-dev/pandas/issues/4784
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4784/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4784/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4784/events
https://github.com/pandas-dev/pandas/pull/4784
19,175,910
MDExOlB1bGxSZXF1ZXN0ODE2ODUwNg==
4,784
BUG: Fix read_fwf with compressed files.
{ "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" }
3
2013-09-09T04:46:13Z
2014-06-19T08:29:24Z
2013-09-09T12:27:12Z
CONTRIBUTOR
null
Fixes #3963. `gzip` and `bz2` both now return `bytes` rather than `str` in Python 3, so need to check for bytes and decode as necessary. replacing #4783
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4784/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4784/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4784.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4784", "merged_at": "2013-09-09T12:27:12Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4784.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4784" }
https://api.github.com/repos/pandas-dev/pandas/issues/4785
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4785/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4785/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4785/events
https://github.com/pandas-dev/pandas/issues/4785
19,179,685
MDU6SXNzdWUxOTE3OTY4NQ==
4,785
read_fwf/table on py3 has trouble with BytesIO
{ "avatar_url": "https://avatars.githubusercontent.com/u/10137?v=4", "events_url": "https://api.github.com/users/ghost/events{/privacy}", "followers_url": "https://api.github.com/users/ghost/followers", "following_url": "https://api.github.com/users/ghost/following{/other_user}", "gists_url": "https://api.github.com/users/ghost/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/ghost", "id": 10137, "login": "ghost", "node_id": "MDQ6VXNlcjEwMTM3", "organizations_url": "https://api.github.com/users/ghost/orgs", "received_events_url": "https://api.github.com/users/ghost/received_events", "repos_url": "https://api.github.com/users/ghost/repos", "site_admin": false, "starred_url": "https://api.github.com/users/ghost/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/ghost/subscriptions", "type": "User", "url": "https://api.github.com/users/ghost" }
[ { "color": "e10c02", "default": false, "description": null, "id": 76811, "name": "Bug", "node_id": "MDU6TGFiZWw3NjgxMQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug" }, { "color": "444444", "default": false, "description": "Unicode strings", "id": 36380025, "name": "Unicode", "node_id": "MDU6TGFiZWwzNjM4MDAyNQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Unicode" } ]
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-09-09T07:10:50Z
2016-10-12T23:04:11Z
2013-09-14T02:00:38Z
NONE
null
``` >>> import pandas as pd >>> from io import BytesIO >>> pd.read_fwf(BytesIO("שלום".encode('utf8')),widths=[2]) >>>pandas/io/parsers.py", line 1944, in <listcomp> >>> for (fromm, to) in self.colspecs] >>>TypeError: Type str doesn't support the buffer API ``` By another path: ``` >>> from io import BytesIO >>> pd.read_table(BytesIO("שלום::1234\n".encode('cp1255')),sep="::", engine='python', encoding='cp1255') File "/usr/local/lib/python3.3/dist-packages/pandas-0.12.0_357_g218f334-py3.3-linux-x86_64.egg/pandas/io/parsers.py", line 1324, in _read yield pat.split(line.decode('utf-8').strip()) UnicodeDecodeError: 'utf-8' codec can't decode byte 0xf9 in position 0: invalid start byte ``` is broken. Note that len(sep)>1 activates the python engine anyway right now. related #4784 Edit: fixed incorrect encoding and updated error Edit: Updated examples
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4785/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4785/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4786
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4786/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4786/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4786/events
https://github.com/pandas-dev/pandas/issues/4786
19,200,119
MDU6SXNzdWUxOTIwMDExOQ==
4,786
read_html hanging?
{ "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": "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": "006b75", "default": false, "description": "read_html, to_html, Styler.apply, Styler.applymap", "id": 57395487, "name": "IO HTML", "node_id": "MDU6TGFiZWw1NzM5NTQ4Nw==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20HTML" } ]
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" }
21
2013-09-09T14:36:17Z
2016-10-12T23:04:11Z
2014-01-24T16:13:33Z
CONTRIBUTOR
null
Is this a local problem? I'm on g41d10b5. The following url appears never to return, or at least it's taking an inordinately long time. http://www.nku.edu/~longa/geomed/ppa/doc/globals/Globals.htm Same result with either the url or the raw html.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4786/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4786/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4787
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4787/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4787/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4787/events
https://github.com/pandas-dev/pandas/issues/4787
19,205,932
MDU6SXNzdWUxOTIwNTkzMg==
4,787
ENH/API: add numeric_only with a default of False to numerics
{ "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": "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": "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
{ "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": null, "closed_issues": 2361, "created_at": "2015-02-26T19:29:05Z", "creator": { "avatar_url": "https://avatars.githubusercontent.com/u/1020496?v=4", "events_url": "https://api.github.com/users/jorisvandenbossche/events{/privacy}", "followers_url": "https://api.github.com/users/jorisvandenbossche/followers", "following_url": "https://api.github.com/users/jorisvandenbossche/following{/other_user}", "gists_url": "https://api.github.com/users/jorisvandenbossche/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/jorisvandenbossche", "id": 1020496, "login": "jorisvandenbossche", "node_id": "MDQ6VXNlcjEwMjA0OTY=", "organizations_url": "https://api.github.com/users/jorisvandenbossche/orgs", "received_events_url": "https://api.github.com/users/jorisvandenbossche/received_events", "repos_url": "https://api.github.com/users/jorisvandenbossche/repos", "site_admin": false, "starred_url": "https://api.github.com/users/jorisvandenbossche/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jorisvandenbossche/subscriptions", "type": "User", "url": "https://api.github.com/users/jorisvandenbossche" }, "description": "A milestone for closed or open issues for which there is no action needed (eg not a bug, just a question / discussion, nothing to resolve, wontfix, etc).\r\n\r\n", "due_on": null, "html_url": "https://github.com/pandas-dev/pandas/milestone/33", "id": 997544, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/33/labels", "node_id": "MDk6TWlsZXN0b25lOTk3NTQ0", "number": 33, "open_issues": 11, "state": "open", "title": "No action", "updated_at": "2021-11-19T17:33:16Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/33" }
3
2013-09-09T16:08:18Z
2020-01-01T16:02:29Z
2020-01-01T15:52:33Z
CONTRIBUTOR
null
for: `min,max,sum,var,std,kurt,median,mad,prod,skew` The big reason to do this is a performance hit when you happen to have an object column. and you don't realize it. See: http://stackoverflow.com/questions/18701569/pandas-dataframe-mean-very-slow-how-can-i-calculate-means-of-columns-faster `_reduce` in Frame already supports this (and Series will ignore it), so should be trvial to implement alternatively could just pass `**kwds` thru (I think we had an issue about this earlier)
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4787/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4787/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4788
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4788/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4788/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4788/events
https://github.com/pandas-dev/pandas/issues/4788
19,221,174
MDU6SXNzdWUxOTIyMTE3NA==
4,788
read_pickle error for multi-index: 'FrozenList' does not support mutable operations.
{ "avatar_url": "https://avatars.githubusercontent.com/u/379413?v=4", "events_url": "https://api.github.com/users/wcbeard/events{/privacy}", "followers_url": "https://api.github.com/users/wcbeard/followers", "following_url": "https://api.github.com/users/wcbeard/following{/other_user}", "gists_url": "https://api.github.com/users/wcbeard/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/wcbeard", "id": 379413, "login": "wcbeard", "node_id": "MDQ6VXNlcjM3OTQxMw==", "organizations_url": "https://api.github.com/users/wcbeard/orgs", "received_events_url": "https://api.github.com/users/wcbeard/received_events", "repos_url": "https://api.github.com/users/wcbeard/repos", "site_admin": false, "starred_url": "https://api.github.com/users/wcbeard/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/wcbeard/subscriptions", "type": "User", "url": "https://api.github.com/users/wcbeard" }
[ { "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": "fbca04", "default": false, "description": "Related to non-user accessible pandas implementation", "id": 49094459, "name": "Internals", "node_id": "MDU6TGFiZWw0OTA5NDQ1OQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Internals" } ]
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" }
24
2013-09-09T20:36:09Z
2013-09-10T14:04:41Z
2013-09-10T13:05:46Z
CONTRIBUTOR
null
I'm in a bit of a pickle here. If I try to save and read back a multi-indexed dataframe, I get this error (and in some situations, can't reproduce when, I get a `TypeError: Required argument 'shape' (pos 1) not found` error). The gist with the full traceback is [here](https://gist.github.com/d10genes/6500977). ``` In [3]: import numpy as np In [4]: import pandas as pd In [5]: np.random.seed(10) In [6]: a = np.random.randint(0, 20, (6, 5)) In [7]: df = pd.DataFrame(a).set_index([2,3,4]) In [8]: df Out[8]: 0 1 2 3 4 15 0 17 9 4 8 9 0 16 17 4 19 16 10 8 11 11 1 4 15 14 17 19 8 4 13 19 13 13 5 In [9]: df.to_pickle('~/Desktop/dummy.df') In [10]: df2 = pd.read_pickle('~/Desktop/dummy.df') --------------------------------------------------------------------------- TypeError Traceback (most recent call last) ... TypeError: 'FrozenList' does not support mutable operations. ``` When I `reset_index` it saves fine. I'm on Mac OSX, numpy 1.7, pandas 0.12.0-361-g53eec08. In the meantime, if there's no quick fix, anyone know another way to save multi-indexes to file? csv doesn't look like it can preserve them. I could do something like appending `_index` to the columns and un-rename them after reading but would prefer something less hacky.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4788/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4788/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4789
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4789/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4789/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4789/events
https://github.com/pandas-dev/pandas/issues/4789
19,221,682
MDU6SXNzdWUxOTIyMTY4Mg==
4,789
test_bar_log fights back with matplotlib 1.3.0
{ "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": "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" }
13
2013-09-09T20:45:14Z
2016-10-12T23:04:11Z
2013-09-14T20:31:47Z
CONTRIBUTOR
null
``` ====================================================================== FAIL: test_bar_log (pandas.tests.test_graphics.TestDataFramePlots) ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/yoh/deb/gits/pkg-exppsy/pandas/pandas/tests/test_graphics.py", line 568, in test_bar_log self.assertEqual(ax.yaxis.get_ticklocs()[0], 1.0) AssertionError: 0.10000000000000001 != 1.0 ---------------------------------------------------------------------- Ran 1 test in 0.341s ``` needs to be fixed up for debian where mpl now 1.3.0
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4789/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4789/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4790
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4790/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4790/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4790/events
https://github.com/pandas-dev/pandas/issues/4790
19,222,838
MDU6SXNzdWUxOTIyMjgzOA==
4,790
DOC: DataFrame() not included in API reference
{ "avatar_url": "https://avatars.githubusercontent.com/u/1020496?v=4", "events_url": "https://api.github.com/users/jorisvandenbossche/events{/privacy}", "followers_url": "https://api.github.com/users/jorisvandenbossche/followers", "following_url": "https://api.github.com/users/jorisvandenbossche/following{/other_user}", "gists_url": "https://api.github.com/users/jorisvandenbossche/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/jorisvandenbossche", "id": 1020496, "login": "jorisvandenbossche", "node_id": "MDQ6VXNlcjEwMjA0OTY=", "organizations_url": "https://api.github.com/users/jorisvandenbossche/orgs", "received_events_url": "https://api.github.com/users/jorisvandenbossche/received_events", "repos_url": "https://api.github.com/users/jorisvandenbossche/repos", "site_admin": false, "starred_url": "https://api.github.com/users/jorisvandenbossche/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jorisvandenbossche/subscriptions", "type": "User", "url": "https://api.github.com/users/jorisvandenbossche" }
[ { "color": "3465A4", "default": false, "description": null, "id": 134699, "name": "Docs", "node_id": "MDU6TGFiZWwxMzQ2OTk=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs" } ]
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" }
10
2013-09-09T21:03:57Z
2013-10-14T18:18:38Z
2013-10-14T18:18:38Z
MEMBER
null
The docstring of `DataFrame()` is not present in the documentation (so no 'generated/pandas.DataFrame.html'), because it is not included in the API reference (http://pandas.pydata.org/pandas-docs/dev/api.html). But there is one for `DataFrame.__init__()` (http://pandas.pydata.org/pandas-docs/dev/generated/pandas.DataFrame.__init__.html#pandas.DataFrame.__init__), which seems not that usefull. Do I replace the init version with DataFrame itself, or should I just add a line for DataFrame in api.rst? The same applies for Series and Panel.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4790/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4790/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4791
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4791/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4791/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4791/events
https://github.com/pandas-dev/pandas/pull/4791
19,228,519
MDExOlB1bGxSZXF1ZXN0ODE5NTIwMQ==
4,791
BUG: pickle failing on FrozenList, when using MultiIndex (GH4788)
{ "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" }
34
2013-09-09T23:04:09Z
2014-06-26T18:22:27Z
2013-09-10T13:05:46Z
CONTRIBUTOR
null
closes #4788
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4791/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4791/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4791.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4791", "merged_at": "2013-09-10T13:05:46Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4791.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4791" }
https://api.github.com/repos/pandas-dev/pandas/issues/4792
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4792/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4792/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4792/events
https://github.com/pandas-dev/pandas/issues/4792
19,229,530
MDU6SXNzdWUxOTIyOTUzMA==
4,792
describe on a groupby
{ "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": "729FCF", "default": false, "description": null, "id": 233160, "name": "Groupby", "node_id": "MDU6TGFiZWwyMzMxNjA=", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Groupby" }, { "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": "2017-05-06T10:20:19Z", "closed_issues": 987, "created_at": "2016-02-08T15:30:21Z", "creator": { "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://api.github.com/users/jreback/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/jreback", "id": 953992, "login": "jreback", "node_id": "MDQ6VXNlcjk1Mzk5Mg==", "organizations_url": "https://api.github.com/users/jreback/orgs", "received_events_url": "https://api.github.com/users/jreback/received_events", "repos_url": "https://api.github.com/users/jreback/repos", "site_admin": false, "starred_url": "https://api.github.com/users/jreback/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jreback/subscriptions", "type": "User", "url": "https://api.github.com/users/jreback" }, "description": "after 0.19.x series", "due_on": "2017-05-12T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/39", "id": 1570595, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/39/labels", "node_id": "MDk6TWlsZXN0b25lMTU3MDU5NQ==", "number": 39, "open_issues": 0, "state": "closed", "title": "0.20.0", "updated_at": "2018-10-28T08:18:42Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/39" }
2
2013-09-09T23:28:48Z
2017-02-10T00:19:24Z
2017-02-10T00:19:23Z
CONTRIBUTOR
null
I think expected result of this is with multiindex column... ``` df = pd.DataFrame({'PRICE': {pd.Timestamp('2011-01-06 10:59:05', tz=None): 24990, pd.Timestamp('2011-01-06 12:43:33', tz=None): 25499, pd.Timestamp('2011-01-06 12:54:09', tz=None): 25499}, 'VOLUME': {pd.Timestamp('2011-01-06 10:59:05', tz=None): 1500000000, pd.Timestamp('2011-01-06 12:43:33', tz=None): 5000000000, pd.Timestamp('2011-01-06 12:54:09', tz=None): 100000000}}) In [2]: g = df.groupby('PRICE') In [3]: df.groupby('PRICE').describe() # expected .unstack(1) Out[3]: PRICE VOLUME PRICE 24990 count 1 1.000000e+00 mean 24990 1.500000e+09 std NaN NaN min 24990 1.500000e+09 25% 24990 1.500000e+09 50% 24990 1.500000e+09 75% 24990 1.500000e+09 max 24990 1.500000e+09 25499 count 2 2.000000e+00 mean 25499 2.550000e+09 std 0 3.464823e+09 min 25499 1.000000e+08 25% 25499 1.325000e+09 50% 25499 2.550000e+09 75% 25499 3.775000e+09 max 25499 5.000000e+09 ``` cc #4740 @jreback I guess it just applies method/attribute from df: ``` In [4]: pd.DataFrame.foo = 1 In [5]: g.foo Out[5]: PRICE 24990 1 25499 1 dtype: int64 In [6]: pd.DataFrame.bar = lambda x: 1 In [7]: g.bar() Out[7]: PRICE 24990 1 25499 1 dtype: int64 ``` should we just special case describe? :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/4792/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4792/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4793
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4793/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4793/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4793/events
https://github.com/pandas-dev/pandas/issues/4793
19,229,919
MDU6SXNzdWUxOTIyOTkxOQ==
4,793
read_csv does not parse in header with BOM utf-8
{ "avatar_url": "https://avatars.githubusercontent.com/u/2676018?v=4", "events_url": "https://api.github.com/users/johnclinaa/events{/privacy}", "followers_url": "https://api.github.com/users/johnclinaa/followers", "following_url": "https://api.github.com/users/johnclinaa/following{/other_user}", "gists_url": "https://api.github.com/users/johnclinaa/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/johnclinaa", "id": 2676018, "login": "johnclinaa", "node_id": "MDQ6VXNlcjI2NzYwMTg=", "organizations_url": "https://api.github.com/users/johnclinaa/orgs", "received_events_url": "https://api.github.com/users/johnclinaa/received_events", "repos_url": "https://api.github.com/users/johnclinaa/repos", "site_admin": false, "starred_url": "https://api.github.com/users/johnclinaa/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/johnclinaa/subscriptions", "type": "User", "url": "https://api.github.com/users/johnclinaa" }
[ { "color": "e10c02", "default": false, "description": null, "id": 76811, "name": "Bug", "node_id": "MDU6TGFiZWw3NjgxMQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug" }, { "color": "5319e7", "default": false, "description": "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": "2016-10-03T08:52:13Z", "closed_issues": 733, "created_at": "2016-03-11T21:24:45Z", "creator": { "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://api.github.com/users/jreback/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/jreback", "id": 953992, "login": "jreback", "node_id": "MDQ6VXNlcjk1Mzk5Mg==", "organizations_url": "https://api.github.com/users/jreback/orgs", "received_events_url": "https://api.github.com/users/jreback/received_events", "repos_url": "https://api.github.com/users/jreback/repos", "site_admin": false, "starred_url": "https://api.github.com/users/jreback/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jreback/subscriptions", "type": "User", "url": "https://api.github.com/users/jreback" }, "description": "", "due_on": "2016-09-30T07:00:00Z", "html_url": "https://github.com/pandas-dev/pandas/milestone/40", "id": 1639795, "labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/40/labels", "node_id": "MDk6TWlsZXN0b25lMTYzOTc5NQ==", "number": 40, "open_issues": 0, "state": "closed", "title": "0.19.0", "updated_at": "2017-11-06T02:01:14Z", "url": "https://api.github.com/repos/pandas-dev/pandas/milestones/40" }
27
2013-09-09T23:37:06Z
2020-05-22T12:35:10Z
2016-08-05T10:35:50Z
NONE
null
I am using Pandas version 0.12.0 on a Mac. I noticed that when there is a BOM utf-8 file, and if the header row is in the first line, the read_csv() method will leave a leading quotation mark in the first column's name. However, if the header row is further down the file and I use the "header=" option, then the whole header row gets parsed correctly. Here is an example code: bing_kw = pd.read_csv('../../data/sem/Bing-Keyword_daily.csv', header=9, thousands=',', encoding='utf-8') Parses the header correctly. bing_kw = pd.read_csv('../../data/sem/Bing-Keyword_daily.csv', thousands=',', encoding='utf-8') Parses the first header column name incorrectly by leaving the leading quotation mark.
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4793/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4793/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4794
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4794/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4794/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4794/events
https://github.com/pandas-dev/pandas/issues/4794
19,231,661
MDU6SXNzdWUxOTIzMTY2MQ==
4,794
BUG: MultiIndex needs to validate length of levels on setting.
{ "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" }
[ { "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
{ "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" }
[ { "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_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-09-10T00:31:05Z
2013-10-14T01:43:01Z
2013-10-14T01:43:01Z
CONTRIBUTOR
null
related #4687 Bad errors and/or not checking: ``` >>> ind = tm.makeCustomIndex(5, 5) >>> ind.set_levels([[1, 2]]) # Wrong Error Traceback ... ValueError: Length of names (5) must be same as level (1) >>> ind = tm.makeCustomIndex(5, 5) >>> ind.set_levels([[1, 2]], inplace=True) # Wrong Error Traceback ... ValueError: Length of names (5) must be same as level (1) >>> ind = tm.makeCustomIndex(5, 5) >>> ind.levels = [[1, 2]] # Wrong Error Traceback ... ValueError: Length of names (5) must be same as level (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/4794/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4794/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4795
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4795/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4795/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4795/events
https://github.com/pandas-dev/pandas/issues/4795
19,235,382
MDU6SXNzdWUxOTIzNTM4Mg==
4,795
BUG: _coerce_to_dtypes: Timestamp is not defined.
{ "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" }
[ { "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": "fbca04", "default": false, "description": "Related to non-user accessible pandas implementation", "id": 49094459, "name": "Internals", "node_id": "MDU6TGFiZWw0OTA5NDQ1OQ==", "url": "https://api.github.com/repos/pandas-dev/pandas/labels/Internals" } ]
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-09-10T02:59:40Z
2013-09-10T11:42:07Z
2013-09-10T11:42:07Z
CONTRIBUTOR
null
@jreback - `Timestamp` isn't actually defined/imported in core/common. Did you mean `lib.Timestamp`? ``` python # snippet from core/common.py def _coerce_to_dtypes(result, dtypes): """ given a dtypes and a result set, coerce the result elements to the dtypes """ if len(result) != len(dtypes): raise AssertionError("_coerce_to_dtypes requires equal len arrays") def conv(r,dtype): try: if isnull(r): pass elif dtype == _NS_DTYPE: r = Timestamp(r) elif dtype == _TD_DTYPE: r = _coerce_scalar_to_timedelta_type(r) elif dtype == np.bool_: r = bool(r) elif dtype.kind == 'f': r = float(r) elif dtype.kind == 'i': r = int(r) except: pass return r return np.array([ conv(r,dtype) for r, dtype in zip(result,dtypes) ]) ```
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4795/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4795/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4796
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4796/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4796/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4796/events
https://github.com/pandas-dev/pandas/issues/4796
19,254,226
MDU6SXNzdWUxOTI1NDIyNg==
4,796
INT: Add 0.13 release pickles
{ "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": "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
{ "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" }
0
2013-09-10T11:51:39Z
2013-10-23T12:32:55Z
2013-10-23T12:32:55Z
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/4796/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4796/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4797
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4797/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4797/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4797/events
https://github.com/pandas-dev/pandas/pull/4797
19,254,942
MDExOlB1bGxSZXF1ZXN0ODIwODM2OQ==
4,797
CLN: default for tupleize_cols is now False for both to_csv and read_csv. Fair warning in 0.12 (GH3604)
{ "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" }
2
2013-09-10T12:09:34Z
2014-07-08T08:55:34Z
2013-09-10T13:07:33Z
CONTRIBUTOR
null
closes #3604
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4797/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4797/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4797.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4797", "merged_at": "2013-09-10T13:07:33Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4797.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4797" }
https://api.github.com/repos/pandas-dev/pandas/issues/4798
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4798/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4798/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4798/events
https://github.com/pandas-dev/pandas/pull/4798
19,258,791
MDExOlB1bGxSZXF1ZXN0ODIxMDUzNQ==
4,798
CLN: move clip to core/generic (adds to Panel as well), related to (GH2747)
{ "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-09-10T13:33:57Z
2014-06-17T05:06:46Z
2013-09-10T14:05: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/4798/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4798/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4798.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4798", "merged_at": "2013-09-10T14:05:33Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4798.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4798" }
https://api.github.com/repos/pandas-dev/pandas/issues/4799
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4799/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4799/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4799/events
https://github.com/pandas-dev/pandas/issues/4799
19,259,622
MDU6SXNzdWUxOTI1OTYyMg==
4,799
New Feature Request: DataReader for Unit Trusts
{ "avatar_url": "https://avatars.githubusercontent.com/u/5187727?v=4", "events_url": "https://api.github.com/users/jsphon/events{/privacy}", "followers_url": "https://api.github.com/users/jsphon/followers", "following_url": "https://api.github.com/users/jsphon/following{/other_user}", "gists_url": "https://api.github.com/users/jsphon/gists{/gist_id}", "gravatar_id": "", "html_url": "https://github.com/jsphon", "id": 5187727, "login": "jsphon", "node_id": "MDQ6VXNlcjUxODc3Mjc=", "organizations_url": "https://api.github.com/users/jsphon/orgs", "received_events_url": "https://api.github.com/users/jsphon/received_events", "repos_url": "https://api.github.com/users/jsphon/repos", "site_admin": false, "starred_url": "https://api.github.com/users/jsphon/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jsphon/subscriptions", "type": "User", "url": "https://api.github.com/users/jsphon" }
[]
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" }
2
2013-09-10T13:48:59Z
2013-09-15T13:30:45Z
2013-09-15T13:30:45Z
NONE
null
I am trying to write some Python code to download historical data, similar to the yahoo data reader. The sites I am interested in are: http://www.henderson.com/sites/henderson/uk_pi/fundcentre/historicprices.aspx http://www.mandg.co.uk/investor/funds/prices/ I cannot work out how to submit the Javascript forms on either site successfully, though I have managed to write download scripts for other similar sites. Is this something someone could knock up quickly, or give me some pointers on how to do it myself?
{ "+1": 0, "-1": 0, "confused": 0, "eyes": 0, "heart": 0, "hooray": 0, "laugh": 0, "rocket": 0, "total_count": 0, "url": "https://api.github.com/repos/pandas-dev/pandas/issues/4799/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4799/timeline
null
null
null
https://api.github.com/repos/pandas-dev/pandas/issues/4800
https://api.github.com/repos/pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas/issues/4800/labels{/name}
https://api.github.com/repos/pandas-dev/pandas/issues/4800/comments
https://api.github.com/repos/pandas-dev/pandas/issues/4800/events
https://github.com/pandas-dev/pandas/pull/4800
19,260,142
MDExOlB1bGxSZXF1ZXN0ODIxMTI1Mg==
4,800
CLN: move align out of series consolidating into core/generic.py
{ "avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4", "events_url": "https://api.github.com/users/jreback/events{/privacy}", "followers_url": "https://api.github.com/users/jreback/followers", "following_url": "https://api.github.com/users/jreback/following{/other_user}", "gists_url": "https://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-09-10T13:58:15Z
2014-07-16T08:27:34Z
2013-09-10T14:29:35Z
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/4800/reactions" }
https://api.github.com/repos/pandas-dev/pandas/issues/4800/timeline
null
0
{ "diff_url": "https://github.com/pandas-dev/pandas/pull/4800.diff", "html_url": "https://github.com/pandas-dev/pandas/pull/4800", "merged_at": "2013-09-10T14:29:35Z", "patch_url": "https://github.com/pandas-dev/pandas/pull/4800.patch", "url": "https://api.github.com/repos/pandas-dev/pandas/pulls/4800" }