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/5901 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5901/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5901/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5901/events | https://github.com/pandas-dev/pandas/issues/5901 | 25,409,549 | MDU6SXNzdWUyNTQwOTU0OQ== | 5,901 | Nested groupby using sum of columns changes return type unexpectedly in 0.13.0-111-ge29c8e8 | {
"avatar_url": "https://avatars.githubusercontent.com/u/1355641?v=4",
"events_url": "https://api.github.com/users/cab938/events{/privacy}",
"followers_url": "https://api.github.com/users/cab938/followers",
"following_url": "https://api.github.com/users/cab938/following{/other_user}",
"gists_url": "https://api.github.com/users/cab938/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/cab938",
"id": 1355641,
"login": "cab938",
"node_id": "MDQ6VXNlcjEzNTU2NDE=",
"organizations_url": "https://api.github.com/users/cab938/orgs",
"received_events_url": "https://api.github.com/users/cab938/received_events",
"repos_url": "https://api.github.com/users/cab938/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/cab938/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cab938/subscriptions",
"type": "User",
"url": "https://api.github.com/users/cab938"
} | [] | closed | false | null | [] | null | 7 | 2014-01-10T17:29:48Z | 2014-01-10T18:07:10Z | 2014-01-10T18:07:10Z | NONE | null | I believe this to be a regression error, and could not find information on this change in the release notes (so I don't think it is intentional).
With some DataFrame in python 0.12.0 I could group by timestamp and another column using the following:
``` python
mydf.set_index('timestamp').sort_index().groupby(pandas.TimeGrouper('1D')).apply(__grouped_by_time)
```
See this message by Jeff on StackOverflow: http://stackoverflow.com/questions/20788932/out-of-memory-when-dataframe-resample-is-called-in-pandas-on-small-dataset
The results of this call on a given dataframe differ on pandas 0.12 and pandas 0.13. In particular, the results in 0.13 are all quoted strings, but in 0.12 are all numeric. If the aggregation function is something like sum(), which returns numeric, the results probably shouldn't change into strings (or at least an explanation would be good). Here is a full test, first using pandas 0.12.0 and then using 0.13
``` python
>>> import pandas
>>> pandas.__version__
'0.12.0'
>>> def __grouped_by_time(df):
... return df.groupby(["hashed_username"]).sum()
...
>>> mydf=pandas.read_pickle("sample.pik")
>>> mydf
cnt hashed_username timestamp
0 1 cfc2ff00f9ff635a368f230329a3a464 2012-10-08 00:00:00
1 1 1babe8cf174b20951147ea80ecf2a251 2012-11-16 00:00:00
2 1 fdafdb2e21c47ff967b2705c31457d61 2012-11-20 00:00:00
3 1 f0afdad49d7b693f680dc26b9e1f0fc7 2012-10-02 00:00:00
4 1 febaa2c77250cf7a78ea1aef3c9b3527 2012-10-25 00:00:00
5 1 0cbaabd42eccb0dce44d8070f1d4e7b1 2012-10-07 00:00:00
6 1 ca0efe0e195035d193b78cb0ab1975ee 2012-10-25 00:00:00
7 1 6852cc5b3a9c08a3f675aea075d226a8 2012-10-08 00:00:00
8 1 f731fd87e810c399598b702928392089 2012-11-01 00:00:00
9 1 2792e61e451d0fd63da951759763f52f 2012-10-16 00:00:00
10 0 special 2013-01-01 00:00:00
>>> df_result = mydf.set_index('timestamp').sort_index().groupby(pandas.TimeGrouper('1D')).apply(__grouped_by_time)
>>> df_result["cnt"].unique()
array([1, 0])
```
And now, 0.13.0-111-ge29c8e8:
``` pandas
>>> import pandas
>>> pandas.__version__
'0.13.0-111-ge29c8e8'
>>> def __grouped_by_time(df):
... return df.groupby(["hashed_username"]).sum()
...
>>> mydf=pandas.read_pickle("sample.pik")
>>> mydf
cnt hashed_username timestamp
0 1 cfc2ff00f9ff635a368f230329a3a464 2012-10-08 00:00:00
1 1 1babe8cf174b20951147ea80ecf2a251 2012-11-16 00:00:00
2 1 fdafdb2e21c47ff967b2705c31457d61 2012-11-20 00:00:00
3 1 f0afdad49d7b693f680dc26b9e1f0fc7 2012-10-02 00:00:00
4 1 febaa2c77250cf7a78ea1aef3c9b3527 2012-10-25 00:00:00
5 1 0cbaabd42eccb0dce44d8070f1d4e7b1 2012-10-07 00:00:00
6 1 ca0efe0e195035d193b78cb0ab1975ee 2012-10-25 00:00:00
7 1 6852cc5b3a9c08a3f675aea075d226a8 2012-10-08 00:00:00
8 1 f731fd87e810c399598b702928392089 2012-11-01 00:00:00
9 1 2792e61e451d0fd63da951759763f52f 2012-10-16 00:00:00
10 0 special 2013-01-01 00:00:00
[11 rows x 3 columns]
>>> df_result = mydf.set_index('timestamp').sort_index().groupby(pandas.TimeGrouper('1D')).apply(__grouped_by_time)
>>> df_result["cnt"].unique()
array(['1', '0'], 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/5901/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5901/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5902 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5902/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5902/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5902/events | https://github.com/pandas-dev/pandas/issues/5902 | 25,411,481 | MDU6SXNzdWUyNTQxMTQ4MQ== | 5,902 | PERF: Load data (create Series, Dataframe) in a more functional way. | {
"avatar_url": "https://avatars.githubusercontent.com/u/3742174?v=4",
"events_url": "https://api.github.com/users/tinproject/events{/privacy}",
"followers_url": "https://api.github.com/users/tinproject/followers",
"following_url": "https://api.github.com/users/tinproject/following{/other_user}",
"gists_url": "https://api.github.com/users/tinproject/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/tinproject",
"id": 3742174,
"login": "tinproject",
"node_id": "MDQ6VXNlcjM3NDIxNzQ=",
"organizations_url": "https://api.github.com/users/tinproject/orgs",
"received_events_url": "https://api.github.com/users/tinproject/received_events",
"repos_url": "https://api.github.com/users/tinproject/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/tinproject/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/tinproject/subscriptions",
"type": "User",
"url": "https://api.github.com/users/tinproject"
} | [
{
"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": "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": 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"
} | 21 | 2014-01-10T18:03:27Z | 2016-08-09T21:34:37Z | 2016-06-07T12:37:09Z | CONTRIBUTOR | null | I've been trying to find out the process of creating DataFrames in order to try to solve #2305 with minimal memory use. I've made some tests that put in a IPython notebook: http://nbviewer.ipython.org/gist/tinproject/7d0e0de9475b16910fcf
Currently when reads from a generator pandas internally allocate the whole generator in memory within a list, using at least twice the memory needed. I suspect sometimes could be even more if there is a later type conversion needed.
Also, as it can be viewed in the notebook, the input data collection it's completely readed many times before data it's loaded in the final data structure.
To read from an iterator, without put the whole it in memory, it's needed to process the values that yield one by one, or at least in a one pass form.
One it could read data from a iterator in one pass, it could read from every iterable collection only needing the count of elements to read. It includes collections with implicit lenght: sequences(list, tuple, str), sets, mappings, etc. and collections with unknown length: generators, iterators, etc. which size must be explicitly given.
I think this could end in a great improve on performance and enhance the input data types accepted (In my tests I saw that the tuple collection it's not a valid type for DataFrame!)
Relates to #2305, #2193, #5898
I want to help to solve this, but it's a bis task, and I'm lost when comes to the Blocks part. Is there anywhere documented what structure have and how Blocks 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/5902/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5902/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5903 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5903/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5903/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5903/events | https://github.com/pandas-dev/pandas/pull/5903 | 25,425,040 | MDExOlB1bGxSZXF1ZXN0MTE0MTc5MjA= | 5,903 | DOC: remove usage of code-block directive in docstrings + fix some warnings | {
"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 | 2014-01-10T21:48:16Z | 2014-07-02T21:28:19Z | 2014-01-12T00:33:24Z | MEMBER | null | Some docs things:
- remove remaining use of `code-block`, closes #3430 (@y-p, I think that were the last ones, so now it can be really closed)
- fix some headers to avoid useless warnings during doc build (if the line under the header is not as long as the header itself, sphinx complains about it although it renders fine)
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5903/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5903/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5903.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5903",
"merged_at": "2014-01-12T00:33:24Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/5903.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5903"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5904 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5904/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5904/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5904/events | https://github.com/pandas-dev/pandas/issues/5904 | 25,437,948 | MDU6SXNzdWUyNTQzNzk0OA== | 5,904 | Suggestion: Warning for DataFrame colname-methodname clash | {
"avatar_url": "https://avatars.githubusercontent.com/u/69774?v=4",
"events_url": "https://api.github.com/users/michaelaye/events{/privacy}",
"followers_url": "https://api.github.com/users/michaelaye/followers",
"following_url": "https://api.github.com/users/michaelaye/following{/other_user}",
"gists_url": "https://api.github.com/users/michaelaye/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/michaelaye",
"id": 69774,
"login": "michaelaye",
"node_id": "MDQ6VXNlcjY5Nzc0",
"organizations_url": "https://api.github.com/users/michaelaye/orgs",
"received_events_url": "https://api.github.com/users/michaelaye/received_events",
"repos_url": "https://api.github.com/users/michaelaye/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/michaelaye/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/michaelaye/subscriptions",
"type": "User",
"url": "https://api.github.com/users/michaelaye"
} | [
{
"color": "AD7FA8",
"default": false,
"description": null,
"id": 35818298,
"name": "API Design",
"node_id": "MDU6TGFiZWwzNTgxODI5OA==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/API%20Design"
},
{
"color": "ffa0ff",
"default": false,
"description": "Incorrect or improved errors from pandas",
"id": 42670965,
"name": "Error Reporting",
"node_id": "MDU6TGFiZWw0MjY3MDk2NQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Error%20Reporting"
}
] | closed | false | null | [] | {
"closed_at": "2017-10-28T18:54:27Z",
"closed_issues": 764,
"created_at": "2017-03-23T13:26:25Z",
"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": "2017-10-27T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/46",
"id": 2406656,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/46/labels",
"node_id": "MDk6TWlsZXN0b25lMjQwNjY1Ng==",
"number": 46,
"open_issues": 0,
"state": "closed",
"title": "0.21.0",
"updated_at": "2018-07-08T21:53:21Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/46"
} | 5 | 2014-01-11T05:13:41Z | 2017-08-07T11:05:59Z | 2017-08-07T11:05:59Z | CONTRIBUTOR | null | Would it be costly to issue a warning when one adds a column to a DataFrame that has the same name as a built-in DataFrame method?
As you know, in that case I can not do Dataframe.name to access the column but instead I get a method pointer.
But if I'm unaware (or it's late and I forgot.. ;) ) that a method with that name exists, I could be confused for quite a while before I find out what's going on.
Example I just had:
s = Series(somedata)
Investigating the difference with
s.diff()
Looks interesting, so for easier management I want to put things in a dataframe now.
df = DataFrame(s)
df['diff'] = s.diff()
And then I tried to filter the df for some values in diff and got this:
df[df.diff > 10]
KeyError: u'no item named True'
That somehow didn't make me at all think about a name clash. In this case I eventually guessed what was wrong, but if I wouldn't know that a fancy method with a fancy name exists and I picked it as well, I guess I never would find out, what's going on.
So, if it isn't too much costs in terms of performance a name check against core methods would be really nice, I 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/5904/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5904/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5905 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5905/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5905/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5905/events | https://github.com/pandas-dev/pandas/issues/5905 | 25,444,644 | MDU6SXNzdWUyNTQ0NDY0NA== | 5,905 | BUG: fully reindexing panel is incorrect when missing items | {
"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": "d7e102",
"default": false,
"description": "np.nan, pd.NaT, pd.NA, dropna, isnull, interpolate",
"id": 2822342,
"name": "Missing-data",
"node_id": "MDU6TGFiZWwyODIyMzQy",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Missing-data"
}
] | closed | false | null | [] | null | 0 | 2014-01-11T14:49:50Z | 2014-01-11T15:15:28Z | 2014-01-11T15:15:28Z | CONTRIBUTOR | null | Fully reindexing a panel copies sub-frames when missing top-level items
IOW, this should have a `nan` frame for 'Item2'
```
In [1]: df = DataFrame(np.random.randn(4,3))
[4]: p = Panel({ 'Item1' : df })
In [12]: p['Item2'] = np.nan
In [13]: p
Out[13]:
<class 'pandas.core.panel.Panel'>
Dimensions: 2 (items) x 4 (major_axis) x 3 (minor_axis)
Items axis: Item1 to Item2
Major_axis axis: 0 to 3
Minor_axis axis: 0 to 2
In [5]: items = ['Item1','Item2']
In [8]: major_axis = np.arange(4)
In [9]: minor_axis = np.arange(3)
In [10]: result = p.reindex(items=items,major_axis=major_axis,minor_axis=minor_axis)
In [11]: result.ix['Item2']
Out[11]:
0 1 2
0 1.420715 0.972559 -1.334794
1 -0.165063 -1.811950 -1.107652
2 -1.412676 0.376777 -0.521125
3 2.119229 1.221648 -1.078299
[4 rows x 3 columns]
In [14]: p['Item2']
Out[14]:
0 1 2
0 NaN NaN NaN
1 NaN NaN NaN
2 NaN NaN NaN
3 NaN NaN NaN
[4 rows x 3 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/5905/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5905/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5906 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5906/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5906/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5906/events | https://github.com/pandas-dev/pandas/pull/5906 | 25,444,757 | MDExOlB1bGxSZXF1ZXN0MTE0Mjc3NDc= | 5,906 | BUG: Bug in fully reindexing a Panel (GH5905) | {
"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 | 2014-01-11T14:58:51Z | 2014-07-16T08:45:59Z | 2014-01-11T15:15:28Z | CONTRIBUTOR | null | closes #5905
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5906/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5906/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5906.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5906",
"merged_at": "2014-01-11T15:15:28Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/5906.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5906"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5907 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5907/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5907/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5907/events | https://github.com/pandas-dev/pandas/pull/5907 | 25,447,385 | MDExOlB1bGxSZXF1ZXN0MTE0Mjg3NjE= | 5,907 | DOC: Add "How to reduce a sequence (e.g. of Series) using a binary opera... | {
"avatar_url": "https://avatars.githubusercontent.com/u/443776?v=4",
"events_url": "https://api.github.com/users/unutbu/events{/privacy}",
"followers_url": "https://api.github.com/users/unutbu/followers",
"following_url": "https://api.github.com/users/unutbu/following{/other_user}",
"gists_url": "https://api.github.com/users/unutbu/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/unutbu",
"id": 443776,
"login": "unutbu",
"node_id": "MDQ6VXNlcjQ0Mzc3Ng==",
"organizations_url": "https://api.github.com/users/unutbu/orgs",
"received_events_url": "https://api.github.com/users/unutbu/received_events",
"repos_url": "https://api.github.com/users/unutbu/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/unutbu/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/unutbu/subscriptions",
"type": "User",
"url": "https://api.github.com/users/unutbu"
} | [] | closed | false | null | [] | null | 1 | 2014-01-11T17:39:55Z | 2014-06-14T21:09:21Z | 2014-01-11T18:29:52Z | CONTRIBUTOR | null | ...tor"
MAINT: Fixed some typos
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5907/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5907/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5907.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5907",
"merged_at": "2014-01-11T18:29:52Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/5907.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5907"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5908 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5908/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5908/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5908/events | https://github.com/pandas-dev/pandas/issues/5908 | 25,447,653 | MDU6SXNzdWUyNTQ0NzY1Mw== | 5,908 | BUG: Don't apply function to grouper | {
"avatar_url": "https://avatars.githubusercontent.com/u/1312546?v=4",
"events_url": "https://api.github.com/users/TomAugspurger/events{/privacy}",
"followers_url": "https://api.github.com/users/TomAugspurger/followers",
"following_url": "https://api.github.com/users/TomAugspurger/following{/other_user}",
"gists_url": "https://api.github.com/users/TomAugspurger/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/TomAugspurger",
"id": 1312546,
"login": "TomAugspurger",
"node_id": "MDQ6VXNlcjEzMTI1NDY=",
"organizations_url": "https://api.github.com/users/TomAugspurger/orgs",
"received_events_url": "https://api.github.com/users/TomAugspurger/received_events",
"repos_url": "https://api.github.com/users/TomAugspurger/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/TomAugspurger/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/TomAugspurger/subscriptions",
"type": "User",
"url": "https://api.github.com/users/TomAugspurger"
} | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "729FCF",
"default": false,
"description": null,
"id": 233160,
"name": "Groupby",
"node_id": "MDU6TGFiZWwyMzMxNjA=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Groupby"
},
{
"color": "e102d8",
"default": false,
"description": "Unexpected or buggy dtype conversions",
"id": 31404521,
"name": "Dtype Conversions",
"node_id": "MDU6TGFiZWwzMTQwNDUyMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Dtype%20Conversions"
}
] | closed | false | null | [] | {
"closed_at": 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 | 2014-01-11T17:54:23Z | 2018-07-06T22:50:12Z | 2018-07-06T22:50:12Z | CONTRIBUTOR | null | This came up in https://github.com/pydata/pandas/issues/5264, especially [here](https://github.com/pydata/pandas/issues/5264#issuecomment-30571813), [here](https://github.com/pydata/pandas/issues/5264#issuecomment-32101503), and this [SO post](http://stackoverflow.com/questions/21057397/possible-bug-in-pandas-groupby-agg).
Essentially, there are cases now where the `agg` or `transform` or `apply` function is applied to the grouper. This can cause failures in some very odd ways. As a simple example:
``` python
In [25]: df = pd.DataFrame({"A": ['a', 'b', 'a', 'b'], 'B': [1, 2, 3, 4]})
In [26]: df
Out[26]:
A B
0 a 1
1 b 2
2 a 3
3 b 4
[4 rows x 2 columns]
In [28]: df.groupby('A').apply(lambda x: x+1)
TypeError: Could not operate 1 with block values cannot concatenate 'str' and 'int' objects
```
The example in the SO post linked above is especially subtle because the path the code follows depends on whether or not the aggfunc is successfully applied to the `group`ing column.
I'm going to poke around the code and see what breaks. I'd propose that we apply the function to the grouper in fewer (possibly zero) cases.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5908/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5908/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5909 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5909/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5909/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5909/events | https://github.com/pandas-dev/pandas/issues/5909 | 25,450,289 | MDU6SXNzdWUyNTQ1MDI4OQ== | 5,909 | set_columns() equivalent of set_index() ? | {
"avatar_url": "https://avatars.githubusercontent.com/u/303932?v=4",
"events_url": "https://api.github.com/users/tyarkoni/events{/privacy}",
"followers_url": "https://api.github.com/users/tyarkoni/followers",
"following_url": "https://api.github.com/users/tyarkoni/following{/other_user}",
"gists_url": "https://api.github.com/users/tyarkoni/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/tyarkoni",
"id": 303932,
"login": "tyarkoni",
"node_id": "MDQ6VXNlcjMwMzkzMg==",
"organizations_url": "https://api.github.com/users/tyarkoni/orgs",
"received_events_url": "https://api.github.com/users/tyarkoni/received_events",
"repos_url": "https://api.github.com/users/tyarkoni/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/tyarkoni/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/tyarkoni/subscriptions",
"type": "User",
"url": "https://api.github.com/users/tyarkoni"
} | [
{
"color": "4E9A06",
"default": false,
"description": null,
"id": 76812,
"name": "Enhancement",
"node_id": "MDU6TGFiZWw3NjgxMg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Enhancement"
}
] | open | false | null | [] | {
"closed_at": null,
"closed_issues": 786,
"created_at": "2015-01-13T10:53:19Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jreback/followers",
"following_url": "https://api.github.com/users/jreback/following{/other_user}",
"gists_url": "https://api.github.com/users/jreback/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jreback",
"id": 953992,
"login": "jreback",
"node_id": "MDQ6VXNlcjk1Mzk5Mg==",
"organizations_url": "https://api.github.com/users/jreback/orgs",
"received_events_url": "https://api.github.com/users/jreback/received_events",
"repos_url": "https://api.github.com/users/jreback/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jreback/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jreback/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jreback"
},
"description": "Changes that would be nice to have in the next release. These issues are not blocking. They will be pushed to the next release if no one has time to fix them.",
"due_on": null,
"html_url": "https://github.com/pandas-dev/pandas/milestone/32",
"id": 933188,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/32/labels",
"node_id": "MDk6TWlsZXN0b25lOTMzMTg4",
"number": 32,
"open_issues": 1053,
"state": "open",
"title": "Contributions Welcome",
"updated_at": "2021-11-21T00:50:06Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/32"
} | 11 | 2014-01-11T20:25:12Z | 2021-04-11T04:06:19Z | null | NONE | null | Unless I'm missing something, there's no DataFrame method analogous to set_index() for setting column values. One can directly manipulate the .columns attribute of the DF, but it's often convenient to be able to alter columns in-line after some other operation--e.g.,
`data = pd.concat([df_a, df_b], axis=1).set_columns(['a', 'b', 'c'])`
Even if there's already some equivalent longer way to do this, it might be nice to add set_columns for convenience; I've now caught myself trying to call set_columns() on a DF several times.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5909/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5909/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5910 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5910/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5910/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5910/events | https://github.com/pandas-dev/pandas/pull/5910 | 25,452,680 | MDExOlB1bGxSZXF1ZXN0MTE0MzA4NjU= | 5,910 | docstring grammar. | {
"avatar_url": "https://avatars.githubusercontent.com/u/430274?v=4",
"events_url": "https://api.github.com/users/andrewkittredge/events{/privacy}",
"followers_url": "https://api.github.com/users/andrewkittredge/followers",
"following_url": "https://api.github.com/users/andrewkittredge/following{/other_user}",
"gists_url": "https://api.github.com/users/andrewkittredge/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/andrewkittredge",
"id": 430274,
"login": "andrewkittredge",
"node_id": "MDQ6VXNlcjQzMDI3NA==",
"organizations_url": "https://api.github.com/users/andrewkittredge/orgs",
"received_events_url": "https://api.github.com/users/andrewkittredge/received_events",
"repos_url": "https://api.github.com/users/andrewkittredge/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/andrewkittredge/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/andrewkittredge/subscriptions",
"type": "User",
"url": "https://api.github.com/users/andrewkittredge"
} | [] | closed | false | null | [] | null | 1 | 2014-01-11T22:54:23Z | 2014-07-16T08:46:02Z | 2014-01-11T23:07:19Z | CONTRIBUTOR | null | named should be names
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5910/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5910/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5910.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5910",
"merged_at": "2014-01-11T23:07:19Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/5910.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5910"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5911 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5911/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5911/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5911/events | https://github.com/pandas-dev/pandas/pull/5911 | 25,455,781 | MDExOlB1bGxSZXF1ZXN0MTE0MzIxMjY= | 5,911 | BUG: dt+BDay(n) wrong if n>5, n%5==0 and dt not on offset (GH5890) | {
"avatar_url": "https://avatars.githubusercontent.com/u/6077143?v=4",
"events_url": "https://api.github.com/users/dorandeluz/events{/privacy}",
"followers_url": "https://api.github.com/users/dorandeluz/followers",
"following_url": "https://api.github.com/users/dorandeluz/following{/other_user}",
"gists_url": "https://api.github.com/users/dorandeluz/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/dorandeluz",
"id": 6077143,
"login": "dorandeluz",
"node_id": "MDQ6VXNlcjYwNzcxNDM=",
"organizations_url": "https://api.github.com/users/dorandeluz/orgs",
"received_events_url": "https://api.github.com/users/dorandeluz/received_events",
"repos_url": "https://api.github.com/users/dorandeluz/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/dorandeluz/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dorandeluz/subscriptions",
"type": "User",
"url": "https://api.github.com/users/dorandeluz"
} | [] | 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"
} | 8 | 2014-01-12T03:01:12Z | 2014-06-25T21:56:45Z | 2014-01-13T16:18:13Z | CONTRIBUTOR | null | closes #5890
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5911/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5911/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5911.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5911",
"merged_at": "2014-01-13T16:18:13Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/5911.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5911"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5912 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5912/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5912/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5912/events | https://github.com/pandas-dev/pandas/issues/5912 | 25,469,749 | MDU6SXNzdWUyNTQ2OTc0OQ== | 5,912 | string-representation for Timestamp does not show nanoseconds if present | {
"avatar_url": "https://avatars.githubusercontent.com/u/51059?v=4",
"events_url": "https://api.github.com/users/cancan101/events{/privacy}",
"followers_url": "https://api.github.com/users/cancan101/followers",
"following_url": "https://api.github.com/users/cancan101/following{/other_user}",
"gists_url": "https://api.github.com/users/cancan101/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/cancan101",
"id": 51059,
"login": "cancan101",
"node_id": "MDQ6VXNlcjUxMDU5",
"organizations_url": "https://api.github.com/users/cancan101/orgs",
"received_events_url": "https://api.github.com/users/cancan101/received_events",
"repos_url": "https://api.github.com/users/cancan101/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/cancan101/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cancan101/subscriptions",
"type": "User",
"url": "https://api.github.com/users/cancan101"
} | [
{
"color": "ededed",
"default": false,
"description": "__repr__ of pandas objects, to_string",
"id": 13101118,
"name": "Output-Formatting",
"node_id": "MDU6TGFiZWwxMzEwMTExOA==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Output-Formatting"
}
] | 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"
} | 3 | 2014-01-12T21:00:26Z | 2014-01-15T02:57:34Z | 2014-01-15T02:57:34Z | CONTRIBUTOR | null | See:
```
In [27]: str(pd.Timestamp(200))
Out[27]: '1970-01-01 00:00:00'
In [28]: repr(pd.Timestamp(200))
Out[28]: "Timestamp('1970-01-01 00:00:00.000000200', tz=None)"
```
whereas microseconds work fine:
```
In [30]: str(pd.Timestamp(2000))
Out[30]: '1970-01-01 00:00:00.000002'
```
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5912/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5912/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5913 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5913/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5913/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5913/events | https://github.com/pandas-dev/pandas/issues/5913 | 25,471,261 | MDU6SXNzdWUyNTQ3MTI2MQ== | 5,913 | HDF5 Select with Filter gives incorrect results when using Iteration | {
"avatar_url": "https://avatars.githubusercontent.com/u/2722815?v=4",
"events_url": "https://api.github.com/users/CarstVaartjes/events{/privacy}",
"followers_url": "https://api.github.com/users/CarstVaartjes/followers",
"following_url": "https://api.github.com/users/CarstVaartjes/following{/other_user}",
"gists_url": "https://api.github.com/users/CarstVaartjes/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/CarstVaartjes",
"id": 2722815,
"login": "CarstVaartjes",
"node_id": "MDQ6VXNlcjI3MjI4MTU=",
"organizations_url": "https://api.github.com/users/CarstVaartjes/orgs",
"received_events_url": "https://api.github.com/users/CarstVaartjes/received_events",
"repos_url": "https://api.github.com/users/CarstVaartjes/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/CarstVaartjes/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/CarstVaartjes/subscriptions",
"type": "User",
"url": "https://api.github.com/users/CarstVaartjes"
} | [
{
"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": 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"
} | 21 | 2014-01-12T22:21:56Z | 2015-08-20T02:20:53Z | 2015-08-20T02:20:53Z | NONE | null | Linked Issue: https://github.com/PyTables/PyTables/issues/319
Hi,
I have a dataframe saved in HDF5 with 6.7 million records (about 425MB). As you can see below, it gives an incorrect result when it has to do multiple iterations (which is a serious issue for me actually). ->
```
# prepare
fact_hdf = pd.HDFStore('iteration_test3.h5', mode='r')
store_name = 'store_0'
column_list = ['o', 'm101']
where = [('o', '=', [-15534, -16280, -17113, -14786, -14790, -18074])]
# describe
fact_hdf[store_name]
'''
<class 'pandas.core.frame.DataFrame'>
Int64Index: 6708525 entries, 0 to 6708524
Columns: 27 entries, a1007 to m105_b
dtypes: float64(11), int64(16)
'''
# non iterated
fact_hdf.select(store_name, columns=column_list, where=where)['o'].unique()
'''
array([-14790, -16280, -15534, -14786, -18074, -17113])
'''
# iterated by 1mln
chunksize = 1000000 # 1 mln
for sub_df in fact_hdf.select(store_name, columns=column_list, where=where, iterator=True, chunksize=chunksize):
sub_df['o'].unique()
'''
array([-14790, -16280, -15534, -14786, -18074, -17113])
array([-14786, -14790, -15534, -18074, -16280, -17113])
array([-14790, -18074, -15534, -14786, -16280, -17113])
array([-16280, -14790, -15534, -18074, -14786, -17113])
array([-14790, -14786, -15534, -18074, -16280, -17113])
array([-18511, -17074, -17099, -16876, -18060, -15965, -14733, -16300,
-15534, -14790, -16280, -14786, -18074, -17113])
array([-16280, -14790, -18074, -15534, -14786, -17113])
'''
# iterated by 10mln
chunksize = 10000000 # 1 mln
for sub_df in fact_hdf.select(store_name, columns=column_list, where=where, iterator=True, chunksize=chunksize):
sub_df['o'].unique()
'''
array([-14790, -16280, -15534, -14786, -18074, -17113])
'''
```
Reproducing the bug can be hard (not all files have the same issue), but this specific case happens again (it's not a corrupted HDF5 file, if you write away the dataframe it happens again).
I can share the file with pandas/pytables developers if needed (it has to be personal though / not uploaded to a public location; message me for a sftp link)
Some technical stuff
- Pandas 0.12
- Pytables 3.0
- Ubuntu 12.04LTS 64bit
- File is saved with BLOSC, complevel=9
Kind regards,
Carst
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5913/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5913/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5914 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5914/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5914/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5914/events | https://github.com/pandas-dev/pandas/issues/5914 | 25,473,496 | MDU6SXNzdWUyNTQ3MzQ5Ng== | 5,914 | Float Index Interpreted as Object dtype | {
"avatar_url": "https://avatars.githubusercontent.com/u/1308430?v=4",
"events_url": "https://api.github.com/users/theandygross/events{/privacy}",
"followers_url": "https://api.github.com/users/theandygross/followers",
"following_url": "https://api.github.com/users/theandygross/following{/other_user}",
"gists_url": "https://api.github.com/users/theandygross/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/theandygross",
"id": 1308430,
"login": "theandygross",
"node_id": "MDQ6VXNlcjEzMDg0MzA=",
"organizations_url": "https://api.github.com/users/theandygross/orgs",
"received_events_url": "https://api.github.com/users/theandygross/received_events",
"repos_url": "https://api.github.com/users/theandygross/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/theandygross/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/theandygross/subscriptions",
"type": "User",
"url": "https://api.github.com/users/theandygross"
} | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "e102d8",
"default": false,
"description": "Unexpected or buggy dtype conversions",
"id": 31404521,
"name": "Dtype Conversions",
"node_id": "MDU6TGFiZWwzMTQwNDUyMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Dtype%20Conversions"
},
{
"color": "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": "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"
} | 4 | 2014-01-13T00:36:27Z | 2014-01-13T13:16:33Z | 2014-01-13T13:16:06Z | CONTRIBUTOR | null | When I cast a FloatIndex to a numpy array, I get an array of objects. The desired behavior should be float. This is backwards incompatible with pre-FloatIndex behavior.
``` python
In [119]: s = pd.Series([1,2,3],[1.,2.,3.])
array(s.index).dtype
Out[119]: dtype('O')
```
The Int64Index works as expected.
``` python
In [114]: s = pd.Series([1,2,3],[1,2,3])
array(s.index).dtype
Out[114]: 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/5914/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5914/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5915 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5915/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5915/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5915/events | https://github.com/pandas-dev/pandas/issues/5915 | 25,474,844 | MDU6SXNzdWUyNTQ3NDg0NA== | 5,915 | Problem exporting dataframe to csv using to_csv() with data frames containing strings with accents (\xc9) | {
"avatar_url": "https://avatars.githubusercontent.com/u/825751?v=4",
"events_url": "https://api.github.com/users/slegroux/events{/privacy}",
"followers_url": "https://api.github.com/users/slegroux/followers",
"following_url": "https://api.github.com/users/slegroux/following{/other_user}",
"gists_url": "https://api.github.com/users/slegroux/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/slegroux",
"id": 825751,
"login": "slegroux",
"node_id": "MDQ6VXNlcjgyNTc1MQ==",
"organizations_url": "https://api.github.com/users/slegroux/orgs",
"received_events_url": "https://api.github.com/users/slegroux/received_events",
"repos_url": "https://api.github.com/users/slegroux/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/slegroux/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/slegroux/subscriptions",
"type": "User",
"url": "https://api.github.com/users/slegroux"
} | [
{
"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 | [] | null | 2 | 2014-01-13T02:00:48Z | 2014-01-13T19:52:15Z | 2014-01-13T19:50:11Z | NONE | null | Pandas' to_csv() method produces an error when strings in my data frame contain \xc9 accents. Any idea how I can quickly solve this?
Thanks
UnicodeEncodeError Traceback (most recent call last) /Users/slegroux1/Projects/FeaturEmo/en_features.py in () 360 print "----- No plot. Corresponding features are missing." 361 if name == 'main': --> 362 main()
/Users/slegroux1/Projects/FeaturEmo/en_features.py in main() 40 if output: 41 embed() ---> 42 dict2frame(features).to_csv(output) 43 if plot and not(directory or my_csv_list): 44 plot_features(features)
/Library/Frameworks/EPD64.framework/Versions/7.3/lib/python2.7/site-packages/pandas/core/frame.pyc in to_csv(self, path_or_buf, sep, na_rep, float_format, cols, header, index, index_label, mode, nanRep, encoding, quoting, line_terminator, chunksize, tupleize_cols, **kwds) 1408 chunksize=chunksize,engine=kwds.get("engine"), 1409 tupleize_cols=tupleize_cols) -> 1410 formatter.save() 1411 1412 def to_excel(self, excel_writer, sheet_name='sheet1', na_rep='',
/Library/Frameworks/EPD64.framework/Versions/7.3/lib/python2.7/site-packages/pandas/core/format.pyc in save(self) 970 971 else: --> 972 self._save() 973 974
/Library/Frameworks/EPD64.framework/Versions/7.3/lib/python2.7/site-packages/pandas/core/format.pyc in _save(self) 1076 break 1077 -> 1078 self._save_chunk(start_i, end_i) 1079 1080 def _save_chunk(self, start_i, end_i):
/Library/Frameworks/EPD64.framework/Versions/7.3/lib/python2.7/site-packages/pandas/core/format.pyc in _save_chunk(self, start_i, end_i) 1094 ix = data_index.to_native_types(slicer=slicer, na_rep=self.na_rep, float_format=self.float_format) 1095 -> 1096 lib.write_csv_rows(self.data, ix, self.nlevels, self.cols, self.writer) 1097 1098 # from collections import namedtuple
/Library/Frameworks/EPD64.framework/Versions/7.3/lib/python2.7/site-packages/pandas/lib.so in pandas.lib.write_csv_rows (pandas/lib.c:13871)()
UnicodeEncodeError: 'ascii' codec can't encode character u'\xc9' in position 0: ordinal not in range(128)
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5915/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5915/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5916 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5916/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5916/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5916/events | https://github.com/pandas-dev/pandas/pull/5916 | 25,480,760 | MDExOlB1bGxSZXF1ZXN0MTE0NDI0MjU= | 5,916 | BLD: consider version tags only when using git-describe to gen version string | {
"avatar_url": "https://avatars.githubusercontent.com/u/10137?v=4",
"events_url": "https://api.github.com/users/ghost/events{/privacy}",
"followers_url": "https://api.github.com/users/ghost/followers",
"following_url": "https://api.github.com/users/ghost/following{/other_user}",
"gists_url": "https://api.github.com/users/ghost/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/ghost",
"id": 10137,
"login": "ghost",
"node_id": "MDQ6VXNlcjEwMTM3",
"organizations_url": "https://api.github.com/users/ghost/orgs",
"received_events_url": "https://api.github.com/users/ghost/received_events",
"repos_url": "https://api.github.com/users/ghost/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/ghost/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/ghost/subscriptions",
"type": "User",
"url": "https://api.github.com/users/ghost"
} | [] | 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 | 2014-01-13T07:11:21Z | 2014-07-16T08:46:06Z | 2014-01-13T07:11:37Z | NONE | null | On master we use tags strictly to indicate releases.
In other clones, this may not be the case. Specifically, jenkins
sometimes likes to tags each build which can wreak [havoc](http://pandas.pydata.org/pandas-build/dev/) when
using git-describe naively to generate version strings.
git allows you to filter the tags to consider when constructing the version string. well then.
I tested this locally of course, but as always with changes to setup.py - duck and cover.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5916/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5916/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5916.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5916",
"merged_at": "2014-01-13T07:11:37Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/5916.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5916"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5917 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5917/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5917/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5917/events | https://github.com/pandas-dev/pandas/issues/5917 | 25,491,378 | MDU6SXNzdWUyNTQ5MTM3OA== | 5,917 | dayfirst non working when constructing a pd.DatetimeIndex with an array | {
"avatar_url": "https://avatars.githubusercontent.com/u/1969965?v=4",
"events_url": "https://api.github.com/users/gbakalian/events{/privacy}",
"followers_url": "https://api.github.com/users/gbakalian/followers",
"following_url": "https://api.github.com/users/gbakalian/following{/other_user}",
"gists_url": "https://api.github.com/users/gbakalian/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/gbakalian",
"id": 1969965,
"login": "gbakalian",
"node_id": "MDQ6VXNlcjE5Njk5NjU=",
"organizations_url": "https://api.github.com/users/gbakalian/orgs",
"received_events_url": "https://api.github.com/users/gbakalian/received_events",
"repos_url": "https://api.github.com/users/gbakalian/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/gbakalian/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/gbakalian/subscriptions",
"type": "User",
"url": "https://api.github.com/users/gbakalian"
} | [
{
"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"
}
] | 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"
} | 3 | 2014-01-13T11:34:08Z | 2014-05-10T11:32:16Z | 2014-05-10T11:32:16Z | NONE | null | assert pd.DatetimeIndex(['10/02/2014'], dayfirst=True) == pd.DatetimeIndex(np.asarray(['10/02/2014'], dtype=object), dayfirst=True)
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5917/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5917/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5918 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5918/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5918/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5918/events | https://github.com/pandas-dev/pandas/pull/5918 | 25,495,161 | MDExOlB1bGxSZXF1ZXN0MTE0NDk5NjM= | 5,918 | BUG: Bug in idxmin/max with object dtypes (GH5914) | {
"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": "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 | 2014-01-13T12:57:39Z | 2014-06-26T01:25:52Z | 2014-01-13T13:16:06Z | CONTRIBUTOR | null | closes #5914
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5918/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5918/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5918.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5918",
"merged_at": "2014-01-13T13:16:06Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/5918.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5918"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5919 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5919/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5919/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5919/events | https://github.com/pandas-dev/pandas/issues/5919 | 25,496,034 | MDU6SXNzdWUyNTQ5NjAzNA== | 5,919 | Hive/Hadoop support in pandas | {
"avatar_url": "https://avatars.githubusercontent.com/u/5163065?v=4",
"events_url": "https://api.github.com/users/rzykov/events{/privacy}",
"followers_url": "https://api.github.com/users/rzykov/followers",
"following_url": "https://api.github.com/users/rzykov/following{/other_user}",
"gists_url": "https://api.github.com/users/rzykov/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/rzykov",
"id": 5163065,
"login": "rzykov",
"node_id": "MDQ6VXNlcjUxNjMwNjU=",
"organizations_url": "https://api.github.com/users/rzykov/orgs",
"received_events_url": "https://api.github.com/users/rzykov/received_events",
"repos_url": "https://api.github.com/users/rzykov/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/rzykov/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/rzykov/subscriptions",
"type": "User",
"url": "https://api.github.com/users/rzykov"
} | [
{
"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 | [] | null | 4 | 2014-01-13T13:14:51Z | 2017-03-15T06:44:20Z | 2014-01-13T21:16:49Z | NONE | null | Please add hive (Hadoop Hive Server 2) support into Pandas.
There is an example package: https://github.com/BradRuderman/pyhs2
I fixed a bug in it here: https://github.com/rzykov/pyhs2
See below a working example for pandas:
``` python
import pyhs2
import pandas as pd;
query = """select * from crosssell where siteid='529dee04ec92e60208567ca6' limit 1000"""
def read_hive(query):
conn = pyhs2.connect(host='example.com',
port=10000,
authMechanism="PLAIN",
user='XXXXX',
password='XXXXX',
database='default')
cur = conn.cursor()
cur.execute(query)
#Return column info from query
if cur.getSchema() is None:
cur.close()
conn.close()
return None
columnNames = [a['columnName'] for a in cur.getSchema()]
print columnNames
columnNamesStrings = [a['columnName'] for a in cur.getSchema() if a['type']=='STRING_TYPE']
output = pd.DataFrame(cur.fetch(),columns=columnNames)
cur.close()
conn.close()
return output
read_hive(query)
```
| {
"+1": 2,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 2,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5919/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5919/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5920 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5920/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5920/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5920/events | https://github.com/pandas-dev/pandas/issues/5920 | 25,508,567 | MDU6SXNzdWUyNTUwODU2Nw== | 5,920 | API: deprecate HDFStore.unique entirely | {
"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": "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"
},
{
"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_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 | [] | null | 4 | 2014-01-13T16:24:12Z | 2014-01-13T17:21:05Z | 2014-01-13T17:21:05Z | NONE | null | ```
/home/user1/src/pandas/pandas/io/pytables.py:658: FutureWarning: unique(key,column) is deprecated
use select_column(key,column).unique() instead
FutureWarning)
```
@jreback, any issues with making the change?
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5920/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5920/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5921 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5921/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5921/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5921/events | https://github.com/pandas-dev/pandas/pull/5921 | 25,508,968 | MDExOlB1bGxSZXF1ZXN0MTE0NTc3NTQ= | 5,921 | Fixes to docs, eliminate scikits.timeseries docs dep, sphinx 1.2, update copyright years | {
"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": "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"
} | 11 | 2014-01-13T16:29:28Z | 2014-06-18T06:57:11Z | 2014-01-13T16:30:15Z | NONE | null | closes #5836
closes #5899, following @jorisvandenbossche's advice
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5921/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5921/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5921.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5921",
"merged_at": "2014-01-13T16:30:15Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/5921.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5921"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5922 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5922/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5922/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5922/events | https://github.com/pandas-dev/pandas/issues/5922 | 25,515,026 | MDU6SXNzdWUyNTUxNTAyNg== | 5,922 | Latest ipython master complains of exceptions in df._repr_html_ | {
"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": "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"
} | 1 | 2014-01-13T17:54:34Z | 2014-06-05T16:39:36Z | 2014-01-23T15:48:05Z | NONE | null | https://github.com/ipython/ipython/issues/4792
`df.repr_html` currently raises `ValueError`. if IPython agree to the
proposed behaviour, we'll change it to `NotImplementedError` to restore things to normal.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5922/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5922/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5923 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5923/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5923/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5923/events | https://github.com/pandas-dev/pandas/issues/5923 | 25,515,982 | MDU6SXNzdWUyNTUxNTk4Mg== | 5,923 | API: create option to allow pandas to patch pickle.load/loads at runtime for compat | {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jreback/followers",
"following_url": "https://api.github.com/users/jreback/following{/other_user}",
"gists_url": "https://api.github.com/users/jreback/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jreback",
"id": 953992,
"login": "jreback",
"node_id": "MDQ6VXNlcjk1Mzk5Mg==",
"organizations_url": "https://api.github.com/users/jreback/orgs",
"received_events_url": "https://api.github.com/users/jreback/received_events",
"repos_url": "https://api.github.com/users/jreback/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jreback/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jreback/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jreback"
} | [
{
"color": "AD7FA8",
"default": false,
"description": null,
"id": 35818298,
"name": "API Design",
"node_id": "MDU6TGFiZWwzNTgxODI5OA==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/API%20Design"
}
] | closed | false | null | [] | {
"closed_at": "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"
} | 7 | 2014-01-13T18:10:23Z | 2014-01-19T13:52:15Z | 2014-01-13T20:14:14Z | CONTRIBUTOR | null | related #5661
maybe `io.pickle.compat = 'global/local``
where we only allow local changes to the UnPickler.
This is not destructive, just 'bad practive', but weighing against more usability
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5923/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5923/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5924 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5924/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5924/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5924/events | https://github.com/pandas-dev/pandas/issues/5924 | 25,516,026 | MDU6SXNzdWUyNTUxNjAyNg== | 5,924 | API: allow read_pickle to read from strings (and not just files) | {
"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": "6c1cdb",
"default": false,
"description": "read_pickle, to_pickle",
"id": 1625435109,
"name": "IO Pickle",
"node_id": "MDU6TGFiZWwxNjI1NDM1MTA5",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20Pickle"
}
] | 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"
} | 6 | 2014-01-13T18:11:02Z | 2021-03-15T17:34:47Z | null | CONTRIBUTOR | null | brought up in #5661 , #5894
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5924/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5924/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5925 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5925/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5925/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5925/events | https://github.com/pandas-dev/pandas/pull/5925 | 25,516,309 | MDExOlB1bGxSZXF1ZXN0MTE0NjE5NjY= | 5,925 | Rebase ipython_directive on top of recent ipython updated version | {
"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": "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"
} | 12 | 2014-01-13T18:15:06Z | 2014-06-16T03:52:02Z | 2014-01-18T16:30:29Z | NONE | null | https://github.com/ipython/ipython/pull/4570
We'd prefer to get rid of the duplication, but we have some tweaks in place
which ipython does not.
I rebased everythingon top of ipython to generae a clean diff, if they pick it up
we can make the transition, otherwise we synched for now.
cc @takluyver, if you're interested, check the diff between 2e3c608 and 82b8c3a
for an unobstructed view.
@jorisvandenbossche, can you check this out and let me know if I missed anything?
I included the cython magic fixes you pointed out.
related https://github.com/pydata/pandas/issues/5221
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5925/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5925/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5925.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5925",
"merged_at": "2014-01-18T16:30:28Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/5925.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5925"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5926 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5926/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5926/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5926/events | https://github.com/pandas-dev/pandas/pull/5926 | 25,517,254 | MDExOlB1bGxSZXF1ZXN0MTE0NjI0ODQ= | 5,926 | DOC: make io.rst utf8 only | {
"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": "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"
} | 8 | 2014-01-13T18:30:02Z | 2014-07-06T12:35:17Z | 2014-01-13T20:40:57Z | NONE | null | https://github.com/pydata/pandas/issues/5142
@JanSchulz , can you test whether this solves the problem for you?
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5926/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5926/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5926.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5926",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/5926.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5926"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5927 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5927/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5927/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5927/events | https://github.com/pandas-dev/pandas/issues/5927 | 25,520,147 | MDU6SXNzdWUyNTUyMDE0Nw== | 5,927 | PERF: resample with max/min taking slow path | {
"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": "AFEEEE",
"default": false,
"description": null,
"id": 211840,
"name": "Timeseries",
"node_id": "MDU6TGFiZWwyMTE4NDA=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Timeseries"
},
{
"color": "a10c02",
"default": false,
"description": "Memory or execution speed performance",
"id": 8935311,
"name": "Performance",
"node_id": "MDU6TGFiZWw4OTM1MzEx",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Performance"
},
{
"color": "207de5",
"default": false,
"description": "resample method",
"id": 74975453,
"name": "Resample",
"node_id": "MDU6TGFiZWw3NDk3NTQ1Mw==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Resample"
}
] | closed | false | null | [] | {
"closed_at": "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"
} | 17 | 2014-01-13T19:09:04Z | 2014-01-16T14:28:12Z | 2014-01-16T14:28:12Z | CONTRIBUTOR | null | ```
In [21]: df = DataFrame(np.random.randn(100000,2),index=date_range('20130101',periods=100000,freq='50L'))
In [19]: %timeit df.resample('1s',how=np.max)[0]
1 loops, best of 3: 902 ms per loop
```
mean is ok
```
In [22]: %timeit df.resample('1s',how=np.mean)[0]
100 loops, best of 3: 2.42 ms per loop
```
The way to do this actually is ohlc
```
In [20]: %timeit df.groupby(pd.TimeGrouper('1s'))[0].ohlc()
1000 loops, best of 3: 1.16 ms per loop
```
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5927/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5927/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5928 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5928/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5928/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5928/events | https://github.com/pandas-dev/pandas/issues/5928 | 25,533,548 | MDU6SXNzdWUyNTUzMzU0OA== | 5,928 | Assignment using .ix[] raises ValueError | {
"avatar_url": "https://avatars.githubusercontent.com/u/674200?v=4",
"events_url": "https://api.github.com/users/twiecki/events{/privacy}",
"followers_url": "https://api.github.com/users/twiecki/followers",
"following_url": "https://api.github.com/users/twiecki/following{/other_user}",
"gists_url": "https://api.github.com/users/twiecki/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/twiecki",
"id": 674200,
"login": "twiecki",
"node_id": "MDQ6VXNlcjY3NDIwMA==",
"organizations_url": "https://api.github.com/users/twiecki/orgs",
"received_events_url": "https://api.github.com/users/twiecki/received_events",
"repos_url": "https://api.github.com/users/twiecki/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/twiecki/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/twiecki/subscriptions",
"type": "User",
"url": "https://api.github.com/users/twiecki"
} | [
{
"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": "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"
} | 2 | 2014-01-13T22:21:55Z | 2014-01-14T03:05:23Z | 2014-01-14T00:24:21Z | CONTRIBUTOR | null | This works with `0.12` but not with master:
``` python
In [8]: import pandas as pd
In [10]: x = pd.DataFrame({'a': [1, 2, 3]})
In [13]: x['a'].ix[[0, 1, 2]] = -x['a'].ix[[0, 1, 2]]
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
<ipython-input-13-30fcfd21bb22> in <module>()
----> 1 x['a'].ix[[0, 1, 2]] = -x['a'].ix[[0, 1, 2]]
/home/wiecki/envs/hddm/local/lib/python2.7/site-packages/pandas/core/indexing.py in __setitem__(self, key, value)
94 indexer = self._convert_to_indexer(key, is_setter=True)
95
---> 96 self._setitem_with_indexer(indexer, value)
97
98 def _has_valid_type(self, k, axis):
/home/wiecki/envs/hddm/local/lib/python2.7/site-packages/pandas/core/indexing.py in _setitem_with_indexer(self, indexer, value)
409
410 if isinstance(value, ABCSeries):
--> 411 value = self._align_series(indexer, value)
412
413 elif isinstance(value, ABCDataFrame):
/home/wiecki/envs/hddm/local/lib/python2.7/site-packages/pandas/core/indexing.py in _align_series(self, indexer, ser)
516 return ser.reindex(ax).values
517
--> 518 raise ValueError('Incompatible indexer with Series')
519
520 def _align_frame(self, indexer, df):
ValueError: Incompatible indexer with Series
> /home/wiecki/envs/hddm/local/lib/python2.7/site-packages/pandas/core/indexing.py(518)_align_series()
517
--> 518 raise ValueError('Incompatible indexer with Series')
519
```
This is where it showed up: https://github.com/hddm-devs/hddm/issues/35
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5928/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5928/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5929 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5929/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5929/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5929/events | https://github.com/pandas-dev/pandas/pull/5929 | 25,533,817 | MDExOlB1bGxSZXF1ZXN0MTE0NzE4MDY= | 5,929 | Tutorials | {
"avatar_url": "https://avatars.githubusercontent.com/u/2744117?v=4",
"events_url": "https://api.github.com/users/pichonz/events{/privacy}",
"followers_url": "https://api.github.com/users/pichonz/followers",
"following_url": "https://api.github.com/users/pichonz/following{/other_user}",
"gists_url": "https://api.github.com/users/pichonz/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/pichonz",
"id": 2744117,
"login": "pichonz",
"node_id": "MDQ6VXNlcjI3NDQxMTc=",
"organizations_url": "https://api.github.com/users/pichonz/orgs",
"received_events_url": "https://api.github.com/users/pichonz/received_events",
"repos_url": "https://api.github.com/users/pichonz/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/pichonz/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/pichonz/subscriptions",
"type": "User",
"url": "https://api.github.com/users/pichonz"
} | [] | 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"
} | 13 | 2014-01-13T22:25:52Z | 2014-07-16T08:46:22Z | 2014-01-17T22:17:13Z | NONE | null | added tutorials, let me know if you guys would like the output in a different format.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5929/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5929/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5929.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5929",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/5929.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5929"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5930 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5930/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5930/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5930/events | https://github.com/pandas-dev/pandas/pull/5930 | 25,537,103 | MDExOlB1bGxSZXF1ZXN0MTE0NzM4MjY= | 5,930 | BUG: bug in chained assignment with ix and another chained series (GH5928) | {
"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": "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 | 2014-01-13T23:21:18Z | 2014-06-22T07:37:28Z | 2014-01-14T00:24:21Z | CONTRIBUTOR | null | closes #5928
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5930/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5930/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5930.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5930",
"merged_at": "2014-01-14T00:24:21Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/5930.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5930"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5931 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5931/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5931/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5931/events | https://github.com/pandas-dev/pandas/issues/5931 | 25,554,031 | MDU6SXNzdWUyNTU1NDAzMQ== | 5,931 | time series indexing KeyError on non-monotonic index | {
"avatar_url": "https://avatars.githubusercontent.com/u/69774?v=4",
"events_url": "https://api.github.com/users/michaelaye/events{/privacy}",
"followers_url": "https://api.github.com/users/michaelaye/followers",
"following_url": "https://api.github.com/users/michaelaye/following{/other_user}",
"gists_url": "https://api.github.com/users/michaelaye/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/michaelaye",
"id": 69774,
"login": "michaelaye",
"node_id": "MDQ6VXNlcjY5Nzc0",
"organizations_url": "https://api.github.com/users/michaelaye/orgs",
"received_events_url": "https://api.github.com/users/michaelaye/received_events",
"repos_url": "https://api.github.com/users/michaelaye/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/michaelaye/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/michaelaye/subscriptions",
"type": "User",
"url": "https://api.github.com/users/michaelaye"
} | [
{
"color": "ffa0ff",
"default": false,
"description": "Incorrect or improved errors from pandas",
"id": 42670965,
"name": "Error Reporting",
"node_id": "MDU6TGFiZWw0MjY3MDk2NQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Error%20Reporting"
}
] | closed | false | null | [] | {
"closed_at": "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"
} | 15 | 2014-01-14T05:38:28Z | 2015-03-03T01:54:06Z | 2015-03-03T01:54:06Z | CONTRIBUTOR | null | I just stumbled over time series indexing with a non-monotonic time series that came about because I concatenated data that should not have existed even. (JPL just got a bug report. ;)
So, if I have a dataframe like this, with the index clearly out of order:
``` python
0 1 2
2011-07-19 10:00:01.824000 -0.071762 -0.708509 -0.764987
2011-07-19 10:00:01.952000 1.487533 -0.111620 0.858629
2011-07-19 10:00:00.038000 0.600555 0.183954 -0.635211
```
Here as a json string, but: When you recreate it, the index is in order, so you got to do some magic to roll it around (how would i do that?)
``` python
'{"0":{"1311069601824":-0.0717615221,"1311069601952":1.4875326599,"1311069600038":0.6005551597},"1":{"1311069601824":-0.7085093684,"1311069601952":-0.111620072,"1311069600038":0.1839544789},"2":{"1311069601824":-0.7649867899,"1311069601952":0.8586288484,"1311069600038":-0.6352107949}}'
```
and I try an indexing with an automatically determined hour start, I get KeyError:
``` python
import datetime as dt
start = dt.datetime(2011, 7,19,10)
try:
df2[start:]
except KeyError as e:
print KeyError, e
```
I get
``` python
<type 'exceptions.KeyError'> Timestamp('2011-07-19 10:00:00', tz=None)
```
Leaving out the last, non-monotonic, index, it works:
``` python
df.iloc[:-1][start:]
```
Out:
``` python
0 1 2
2011-07-19 10:00:00.038000 0.600555 0.183954 -0.635211
2011-07-19 10:00:01.824000 -0.071762 -0.708509 -0.764987
```
I understand why it is happening (I think), but I believe it should be handled better, or at least a better error message so that the user knows what's happening.
Edit: This is on v0.13
| {
"+1": 1,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 1,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5931/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5931/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5932 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5932/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5932/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5932/events | https://github.com/pandas-dev/pandas/issues/5932 | 25,560,807 | MDU6SXNzdWUyNTU2MDgwNw== | 5,932 | BUG: Copying an empty DataFrame with index results in a broken BlockManager | {
"avatar_url": "https://avatars.githubusercontent.com/u/30848?v=4",
"events_url": "https://api.github.com/users/filmor/events{/privacy}",
"followers_url": "https://api.github.com/users/filmor/followers",
"following_url": "https://api.github.com/users/filmor/following{/other_user}",
"gists_url": "https://api.github.com/users/filmor/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/filmor",
"id": 30848,
"login": "filmor",
"node_id": "MDQ6VXNlcjMwODQ4",
"organizations_url": "https://api.github.com/users/filmor/orgs",
"received_events_url": "https://api.github.com/users/filmor/received_events",
"repos_url": "https://api.github.com/users/filmor/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/filmor/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/filmor/subscriptions",
"type": "User",
"url": "https://api.github.com/users/filmor"
} | [
{
"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": "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"
} | 2 | 2014-01-14T09:05:22Z | 2014-01-14T13:45:46Z | 2014-01-14T13:45:01Z | CONTRIBUTOR | null | The following line illustrates the problem:
```
df = pd.DataFrame(index=[0]).copy()
df["a"] = 0
```
This results in an `AttributeError` since the function `BlockManager.make_empty` initialises `df._data.blocks` with a numpy array object instead of an empty list. Thus subsequent calls to `blocks.pop` and `blocks.append` fail.
I have a patch coming up.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5932/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5932/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5933 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5933/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5933/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5933/events | https://github.com/pandas-dev/pandas/issues/5933 | 25,562,783 | MDU6SXNzdWUyNTU2Mjc4Mw== | 5,933 | DOC: error 'being used by another process' when removing temp files on Windows | {
"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": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
},
{
"color": "fbca04",
"default": false,
"description": "Windows OS",
"id": 57186974,
"name": "Windows",
"node_id": "MDU6TGFiZWw1NzE4Njk3NA==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Windows"
}
] | 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"
} | 9 | 2014-01-14T09:49:12Z | 2021-04-11T04:08:00Z | null | MEMBER | null | When building the docs on Windows, I get some errors related to the removal of temporary files. For example, for building io.rst:
```
reading sources... [100%] io
---------------------------------------------------------------------------
WindowsError Traceback (most recent call last)
<ipython-input-124-e1699a291992> in <module>()
----> 1 os.remove('tmp.sv')
WindowsError: [Error 32] The process cannot access the file because it is being
used by another process: 'tmp.sv'
---------------------------------------------------------------------------
WindowsError Traceback (most recent call last)
<ipython-input-371-8e84b2979f2e> in <module>()
----> 1 os.remove('store.h5')
WindowsError: [Error 32] The process cannot access the file because it is being
used by another process: 'store.h5'
```
- For `temp.sv` this is due to:
```
reader = pd.read_table('tmp.sv', sep='|', iterator=True)
reader.get_chunk(5)
```
where `reader` is still 'open'. A following `os.remove('tmp.sv')` will generate this error. **Is there a way to close a `TextFileReader` object?**
- For `store.h5` this is due to the last `os.remove('store.h5')` (before 'SQL queries' http://pandas.pydata.org/pandas-docs/dev/io.html#sql-queries). For this, I don't directly see why this fails, as all the other calls to `os.remove('store.h5')` do work (and there is a `store.close()` command)
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5933/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5933/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5934 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5934/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5934/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5934/events | https://github.com/pandas-dev/pandas/issues/5934 | 25,564,364 | MDU6SXNzdWUyNTU2NDM2NA== | 5,934 | DOC: easing building of the docs for contributors | {
"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": 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"
} | 6 | 2014-01-14T10:20:40Z | 2018-07-06T22:43:01Z | 2018-07-06T22:43:00Z | MEMBER | null | Contributing to the docs (and so building the docs) should be as easy as possible to promote this, which is not always the case (eg see comment here https://github.com/pydata/pandas/pull/5530#issuecomment-32138220). Thanks to @y-p to pushing some things forward yesterday, and I thought of making an overview of all issues related to this:
- [x] Building of the docs fails with current stable sphinx 1.2 (#5899).
- It does work with 1.1.3 and with development version of sphinx (bug already fixed). In #5921 there was a discussion on this (removing template class.rst would temporarily solve this, but some of the generated docstring pages would be lost). For the moment this is left as is. At least, there should be a clear warning for this.
Does somebody see another solution?
- [x] On Windows, doc building fails on some unicode error in io.rst (#5142).
- See also #5245 and #5926.
- Fixed by #5925.
- [ ] On Windows, the removal of temporary files cause errors (#5933).
- [x] Building of the docs is not python 3 compatible at the moment (#5479, #5530)
- This should be solved after updating to ipython's version (#5221, #5925)
- [x] There should be a better guide to building the documentation.
- To be fixed by #5996.
Any others?
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5934/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5934/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5935 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5935/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5935/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5935/events | https://github.com/pandas-dev/pandas/pull/5935 | 25,572,445 | MDExOlB1bGxSZXF1ZXN0MTE0OTEzNDc= | 5,935 | BUG: Bug in creating an empty DataFrame, copying, then assigning (GH5932) | {
"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": "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 | 2014-01-14T13:10:28Z | 2014-06-15T15:32:47Z | 2014-01-14T13:45:01Z | CONTRIBUTOR | null | closes #5932
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5935/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5935/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5935.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5935",
"merged_at": "2014-01-14T13:45:01Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/5935.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5935"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5936 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5936/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5936/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5936/events | https://github.com/pandas-dev/pandas/issues/5936 | 25,580,855 | MDU6SXNzdWUyNTU4MDg1NQ== | 5,936 | io.rst needs updating to reflect api sql API methods introduced in 0.13 | {
"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": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
}
] | closed | false | null | [] | {
"closed_at": "2014-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"
} | 13 | 2014-01-14T15:25:46Z | 2014-02-20T21:28:07Z | 2014-02-20T21:28:07Z | NONE | null | @mangecoeur noted in https://github.com/pydata/pandas/issues/4163#issuecomment-32272752
```
http://pandas.pydata.org/pandas-docs/stable/io.html#sql-queries
Also needs updating since it doesn't reflect the updated API
(that was already introduced in 0.13 I think) which uses read_sql
and to_sql for consistency with e.g. the CSV api.
```
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5936/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5936/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5937 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5937/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5937/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5937/events | https://github.com/pandas-dev/pandas/issues/5937 | 25,584,950 | MDU6SXNzdWUyNTU4NDk1MA== | 5,937 | Inconsistent behaviour in resample between daily and weekly | {
"avatar_url": "https://avatars.githubusercontent.com/u/6034908?v=4",
"events_url": "https://api.github.com/users/dbew/events{/privacy}",
"followers_url": "https://api.github.com/users/dbew/followers",
"following_url": "https://api.github.com/users/dbew/following{/other_user}",
"gists_url": "https://api.github.com/users/dbew/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/dbew",
"id": 6034908,
"login": "dbew",
"node_id": "MDQ6VXNlcjYwMzQ5MDg=",
"organizations_url": "https://api.github.com/users/dbew/orgs",
"received_events_url": "https://api.github.com/users/dbew/received_events",
"repos_url": "https://api.github.com/users/dbew/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/dbew/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dbew/subscriptions",
"type": "User",
"url": "https://api.github.com/users/dbew"
} | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "207de5",
"default": false,
"description": "resample method",
"id": 74975453,
"name": "Resample",
"node_id": "MDU6TGFiZWw3NDk3NTQ1Mw==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Resample"
}
] | open | false | null | [] | {
"closed_at": null,
"closed_issues": 786,
"created_at": "2015-01-13T10:53:19Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jreback/followers",
"following_url": "https://api.github.com/users/jreback/following{/other_user}",
"gists_url": "https://api.github.com/users/jreback/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jreback",
"id": 953992,
"login": "jreback",
"node_id": "MDQ6VXNlcjk1Mzk5Mg==",
"organizations_url": "https://api.github.com/users/jreback/orgs",
"received_events_url": "https://api.github.com/users/jreback/received_events",
"repos_url": "https://api.github.com/users/jreback/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jreback/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jreback/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jreback"
},
"description": "Changes that would be nice to have in the next release. These issues are not blocking. They will be pushed to the next release if no one has time to fix them.",
"due_on": null,
"html_url": "https://github.com/pandas-dev/pandas/milestone/32",
"id": 933188,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/32/labels",
"node_id": "MDk6TWlsZXN0b25lOTMzMTg4",
"number": 32,
"open_issues": 1053,
"state": "open",
"title": "Contributions Welcome",
"updated_at": "2021-11-21T00:50:06Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/32"
} | 2 | 2014-01-14T16:18:38Z | 2021-04-11T04:08:50Z | null | CONTRIBUTOR | null | Resampling weekly doesn't behave the same way as resampling daily when using label='right'.
``` python
import numpy as np
import pandas as pd
dates = pd.date_range('2001-01-01 10:00', '2001-01-15 16:00', freq='12h')
d = pd.DataFrame(dict(A=np.arange(len(dates))), index=dates)
```
so d looks like this:
```
A
2001-01-01 10:00:00 0
2001-01-01 22:00:00 1
2001-01-02 10:00:00 2
2001-01-02 22:00:00 3
2001-01-03 10:00:00 4
2001-01-03 22:00:00 5
2001-01-04 10:00:00 6
2001-01-04 22:00:00 7
2001-01-05 10:00:00 8
2001-01-05 22:00:00 9
2001-01-06 10:00:00 10
2001-01-06 22:00:00 11
<truncated>
```
Then we resample daily:
``` python
d.resample('D', label='right').last()
```
Produces the following output.
```
A
2001-01-02 1
2001-01-03 3
2001-01-04 5
2001-01-05 7
2001-01-06 9
<truncated>
```
Note that the value for 2001-01-05 is 7, the last value on 2001-01-04 in the original dataframe. If we resample weekly:
``` python
d.resample('W-FRI', label='right').last()
```
Output is
```
A
2001-01-05 9
2001-01-12 23
2001-01-19 29
```
This time, the value labelled 2001-01-05 is the last value on 2001-01-05 _not_ the last value on 2001-01-04. This is inconsistent with the behaviour for daily resample, where the label is always strictly after the data.
The result I expect is
```
A
2001-01-06 9
2001-01-13 23
2001-01-20 29
```
as the end of a W-FRI bucket should be midnight on the following Saturday. This is consistent with the daily resampling behaviour where the end of the 2001-01-05 bucket is midnight on 2001-01-06.
Output of installed versions below.
```
INSTALLED VERSIONS
------------------
Python: 2.7.3.final.0
OS: Linux
Release: 2.6.18-308.el5
Processor: x86_64
byteorder: little
LC_ALL: None
LANG: en_GB
pandas: 0.13.0
Cython: Not installed
Numpy: 1.7.1
Scipy: 0.9.0
statsmodels: Not installed
patsy: Not installed
scikits.timeseries: Not installed
dateutil: 1.5
pytz: 2011k
bottleneck: Not installed
PyTables: 2.3.1-1
numexpr: 2.0.1
matplotlib: 1.1.1
openpyxl: Not installed
xlrd: 0.8.0
xlwt: 0.7.4
xlsxwriter: Not installed
sqlalchemy: 0.8.2
lxml: 2.3.6
bs4: Not installed
html5lib: 0.90
bigquery: Not installed
apiclient: Not installed
```
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5937/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5937/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5938 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5938/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5938/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5938/events | https://github.com/pandas-dev/pandas/issues/5938 | 25,602,624 | MDU6SXNzdWUyNTYwMjYyNA== | 5,938 | indexed assignment does not work for dataframe | {
"avatar_url": "https://avatars.githubusercontent.com/u/526173?v=4",
"events_url": "https://api.github.com/users/RayVR/events{/privacy}",
"followers_url": "https://api.github.com/users/RayVR/followers",
"following_url": "https://api.github.com/users/RayVR/following{/other_user}",
"gists_url": "https://api.github.com/users/RayVR/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/RayVR",
"id": 526173,
"login": "RayVR",
"node_id": "MDQ6VXNlcjUyNjE3Mw==",
"organizations_url": "https://api.github.com/users/RayVR/orgs",
"received_events_url": "https://api.github.com/users/RayVR/received_events",
"repos_url": "https://api.github.com/users/RayVR/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/RayVR/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/RayVR/subscriptions",
"type": "User",
"url": "https://api.github.com/users/RayVR"
} | [] | closed | false | null | [] | null | 5 | 2014-01-14T20:25:54Z | 2014-01-14T21:31:09Z | 2014-01-14T20:29:08Z | NONE | null | ```
In [82]: d = {'a': range(4), 'b': list('ab..'), 'c': ['a', 'b', nan, 'd']}
In [83]: df = pd.DataFrame(d)
In [84]: df
Out[84]:
a b c
0 0 a a
1 1 b b
2 2 . NaN
3 3 . d
In [85]: df[['c']][pd.isnull(df.c)] = df[['b']][pd.isnull(df.c)]
In [86]: df
Out[86]:
a b c
0 0 a a
1 1 b b
2 2 . NaN
3 3 . d
In [87]: df['c'][pd.isnull(df.c)] = df[['b']][pd.isnull(df.c)]
In [88]: df
Out[88]:
a b c
0 0 a a
1 1 b b
2 2 . .
3 3 . d
```
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5938/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5938/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5939 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5939/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5939/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5939/events | https://github.com/pandas-dev/pandas/pull/5939 | 25,607,153 | MDExOlB1bGxSZXF1ZXN0MTE1MTE3Mjk= | 5,939 | API: Raise/Warn SettingWithCopyError in more cases | {
"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": "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 | 2014-01-14T21:31:09Z | 2014-07-16T08:46:31Z | 2014-01-15T00:37:31Z | CONTRIBUTOR | null | when detecting chained assignment, related, #5938
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5939/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5939/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5939.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5939",
"merged_at": "2014-01-15T00:37:31Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/5939.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5939"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5940 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5940/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5940/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5940/events | https://github.com/pandas-dev/pandas/issues/5940 | 25,615,278 | MDU6SXNzdWUyNTYxNTI3OA== | 5,940 | Support UTF-8 in Google BigQuery results | {
"avatar_url": "https://avatars.githubusercontent.com/u/50643?v=4",
"events_url": "https://api.github.com/users/andrewryno/events{/privacy}",
"followers_url": "https://api.github.com/users/andrewryno/followers",
"following_url": "https://api.github.com/users/andrewryno/following{/other_user}",
"gists_url": "https://api.github.com/users/andrewryno/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/andrewryno",
"id": 50643,
"login": "andrewryno",
"node_id": "MDQ6VXNlcjUwNjQz",
"organizations_url": "https://api.github.com/users/andrewryno/orgs",
"received_events_url": "https://api.github.com/users/andrewryno/received_events",
"repos_url": "https://api.github.com/users/andrewryno/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/andrewryno/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/andrewryno/subscriptions",
"type": "User",
"url": "https://api.github.com/users/andrewryno"
} | [
{
"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": "444444",
"default": false,
"description": "Unicode strings",
"id": 36380025,
"name": "Unicode",
"node_id": "MDU6TGFiZWwzNjM4MDAyNQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Unicode"
},
{
"color": "0052cc",
"default": false,
"description": "pandas-gbq compatability",
"id": 57351315,
"name": "IO Google",
"node_id": "MDU6TGFiZWw1NzM1MTMxNQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20Google"
}
] | closed | false | null | [] | {
"closed_at": "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"
} | 20 | 2014-01-14T23:41:02Z | 2014-03-14T02:40:26Z | 2014-03-14T02:33:24Z | NONE | null | Given that the entire Google BigQuery API returns UTF-8, it would make sense to handle UTF-8 output from BigQuery in the `gbq.read_gbq` IO module.
I'd love to do a pull request but I'm not sure the preferred way of handling this. I'd assume that [this line](https://github.com/pydata/pandas/blob/master/pandas/io/gbq.py#L123) should be changed to `field_value = field_value.decode('utf-8')`. I made that change and tests passed but figuring out how to properly test UTF-8 encoding is giving me some trouble (keeps making my test addition fail).
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5940/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5940/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5941 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5941/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5941/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5941/events | https://github.com/pandas-dev/pandas/pull/5941 | 25,617,953 | MDExOlB1bGxSZXF1ZXN0MTE1MTgzOTI= | 5,941 | API: add read_gbq to top-level api, closes (GH5843) | {
"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": "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 | 2014-01-15T00:41:22Z | 2014-07-16T08:46:33Z | 2014-01-15T02:51:22Z | CONTRIBUTOR | null | closes #5843
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5941/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5941/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5941.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5941",
"merged_at": "2014-01-15T02:51:22Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/5941.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5941"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5942 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5942/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5942/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5942/events | https://github.com/pandas-dev/pandas/pull/5942 | 25,618,545 | MDExOlB1bGxSZXF1ZXN0MTE1MTg3ODI= | 5,942 | BUG: Bug in propogating metadata on resample (GH5862) | {
"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": "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 | 2014-01-15T00:56:48Z | 2014-06-22T19:02:47Z | 2014-01-15T02:08:37Z | CONTRIBUTOR | null | closes #5862
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5942/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5942/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5942.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5942",
"merged_at": "2014-01-15T02:08:37Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/5942.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5942"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5943 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5943/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5943/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5943/events | https://github.com/pandas-dev/pandas/pull/5943 | 25,623,022 | MDExOlB1bGxSZXF1ZXN0MTE1MjEyOTM= | 5,943 | BUG: pd.match not returning passed sentinel | {
"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": "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 | 2014-01-15T02:50:17Z | 2014-07-16T08:46:35Z | 2014-01-15T03:07:47Z | 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/5943/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5943/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5943.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5943",
"merged_at": "2014-01-15T03:07:47Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/5943.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5943"
} |
|
https://api.github.com/repos/pandas-dev/pandas/issues/5944 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5944/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5944/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5944/events | https://github.com/pandas-dev/pandas/pull/5944 | 25,646,467 | MDExOlB1bGxSZXF1ZXN0MTE1MzM5ODM= | 5,944 | ENH: Improve perf of str_extract | {
"avatar_url": "https://avatars.githubusercontent.com/u/443776?v=4",
"events_url": "https://api.github.com/users/unutbu/events{/privacy}",
"followers_url": "https://api.github.com/users/unutbu/followers",
"following_url": "https://api.github.com/users/unutbu/following{/other_user}",
"gists_url": "https://api.github.com/users/unutbu/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/unutbu",
"id": 443776,
"login": "unutbu",
"node_id": "MDQ6VXNlcjQ0Mzc3Ng==",
"organizations_url": "https://api.github.com/users/unutbu/orgs",
"received_events_url": "https://api.github.com/users/unutbu/received_events",
"repos_url": "https://api.github.com/users/unutbu/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/unutbu/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/unutbu/subscriptions",
"type": "User",
"url": "https://api.github.com/users/unutbu"
} | [] | 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"
} | 6 | 2014-01-15T13:19:13Z | 2014-06-14T23:57:13Z | 2014-01-15T22:17:33Z | CONTRIBUTOR | null | Building the result from a list of strings or a list of lists seems to improve performance over building the result via `arr.apply(f)`.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5944/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5944/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5944.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5944",
"merged_at": "2014-01-15T22:17:33Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/5944.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5944"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5945 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5945/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5945/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5945/events | https://github.com/pandas-dev/pandas/issues/5945 | 25,652,791 | MDU6SXNzdWUyNTY1Mjc5MQ== | 5,945 | Can't read excel decimal seconds | {
"avatar_url": "https://avatars.githubusercontent.com/u/6409820?v=4",
"events_url": "https://api.github.com/users/dershow/events{/privacy}",
"followers_url": "https://api.github.com/users/dershow/followers",
"following_url": "https://api.github.com/users/dershow/following{/other_user}",
"gists_url": "https://api.github.com/users/dershow/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/dershow",
"id": 6409820,
"login": "dershow",
"node_id": "MDQ6VXNlcjY0MDk4MjA=",
"organizations_url": "https://api.github.com/users/dershow/orgs",
"received_events_url": "https://api.github.com/users/dershow/received_events",
"repos_url": "https://api.github.com/users/dershow/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/dershow/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dershow/subscriptions",
"type": "User",
"url": "https://api.github.com/users/dershow"
} | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "bfe5bf",
"default": false,
"description": "read_excel, to_excel",
"id": 49254273,
"name": "IO Excel",
"node_id": "MDU6TGFiZWw0OTI1NDI3Mw==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20Excel"
},
{
"color": "5319e7",
"default": false,
"description": "Timedelta data type",
"id": 49597148,
"name": "Timedelta",
"node_id": "MDU6TGFiZWw0OTU5NzE0OA==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Timedelta"
}
] | 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"
} | 8 | 2014-01-15T14:57:06Z | 2014-04-24T01:24:31Z | 2014-04-24T01:24:31Z | NONE | null | related to #4332
I have an excel spread sheet (.xls) that contains a time column. The time is displayed in Excel as minutes:seconds.tenths of seconds. Such as "50:59.2" "50:59.4". The raw data contains hours:minutes:seconds.decimalseconds.
It seems that Pandas uses xldate_as_tuple() which apparently rounds all seconds, so the decimal part is dropped. So the above two data points both import as "50:59".
I suggest using a different conversion method, at least as an option. That way the data will not be dropped, as it is now.
I did also post this same issue to xlrd.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5945/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5945/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5946 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5946/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5946/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5946/events | https://github.com/pandas-dev/pandas/issues/5946 | 25,656,978 | MDU6SXNzdWUyNTY1Njk3OA== | 5,946 | ENH: resample to conjoin ohlc with other fields | {
"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": "02d7e1",
"default": false,
"description": "Concat, Merge/Join, Stack/Unstack, Explode",
"id": 13098779,
"name": "Reshaping",
"node_id": "MDU6TGFiZWwxMzA5ODc3OQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Reshaping"
},
{
"color": "207de5",
"default": false,
"description": "resample method",
"id": 74975453,
"name": "Resample",
"node_id": "MDU6TGFiZWw3NDk3NTQ1Mw==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Resample"
}
] | closed | false | null | [] | {
"closed_at": 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"
} | 1 | 2014-01-15T15:52:46Z | 2018-07-06T22:37:51Z | 2018-07-06T22:37:51Z | CONTRIBUTOR | null | Since ohlc produces a multi-index and other aggregations an index,
should promote the index to multi-index and conjoin
http://stackoverflow.com/questions/21140630/resampling-trade-data-into-ohlcv-with-pandas
e.g.
`df.resample('30s',how={'price' : 'ohlc', 'volume' : 'sum'})`
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5946/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5946/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5947 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5947/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5947/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5947/events | https://github.com/pandas-dev/pandas/issues/5947 | 25,659,763 | MDU6SXNzdWUyNTY1OTc2Mw== | 5,947 | Msgpack serialization fails for DatetimeIndex with only two rows | {
"avatar_url": "https://avatars.githubusercontent.com/u/3529638?v=4",
"events_url": "https://api.github.com/users/acowlikeobject/events{/privacy}",
"followers_url": "https://api.github.com/users/acowlikeobject/followers",
"following_url": "https://api.github.com/users/acowlikeobject/following{/other_user}",
"gists_url": "https://api.github.com/users/acowlikeobject/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/acowlikeobject",
"id": 3529638,
"login": "acowlikeobject",
"node_id": "MDQ6VXNlcjM1Mjk2Mzg=",
"organizations_url": "https://api.github.com/users/acowlikeobject/orgs",
"received_events_url": "https://api.github.com/users/acowlikeobject/received_events",
"repos_url": "https://api.github.com/users/acowlikeobject/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/acowlikeobject/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/acowlikeobject/subscriptions",
"type": "User",
"url": "https://api.github.com/users/acowlikeobject"
} | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
}
] | closed | false | null | [] | {
"closed_at": "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"
} | 1 | 2014-01-15T16:27:40Z | 2014-01-15T19:25:07Z | 2014-01-15T19:25:07Z | NONE | null | A rare/corner case, but thought I'd document it.
pandas.read_msgpack() throws a `ValueError: Dates do not conform to passed frequency` if the index is a DatetimeIndex and there are only two rows of data.
``` python
In [66]: df = pd.DataFrame([1, 2], index=pd.date_range('1/1/2013', '1/2/2013'))
In [67]: df
Out[67]:
0
2013-01-01 1
2013-01-02 2
[2 rows x 1 columns]
In [68]: pd.read_msgpack(df.to_msgpack())
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
<ipython-input-68-fae93928effe> in <module>()
----> 1 pd.read_msgpack(df.to_msgpack())
/home/user/environments/python3/src/pandas/pandas/io/packers.py in read_msgpack(path_or_buf, iterator, **kwargs)
158 try:
159 fh = compat.BytesIO(path_or_buf)
--> 160 return read(fh)
161 finally:
162 fh.close()
/home/user/environments/python3/src/pandas/pandas/io/packers.py in read(fh)
136
137 def read(fh):
--> 138 l = list(unpack(fh))
139 if len(l) == 1:
140 return l[0]
/home/user/environments/python3/src/pandas/pandas/msgpack.cpython-33m.so in pandas.msgpack.Unpacker.__next__ (pandas/msgpack.cpp:7846)()
/home/user/environments/python3/src/pandas/pandas/msgpack.cpython-33m.so in pandas.msgpack.Unpacker._unpack (pandas/msgpack.cpp:6981)()
/home/user/environments/python3/src/pandas/pandas/io/packers.py in decode(obj)
448 elif typ == 'datetime_index':
449 data = unconvert(obj['data'], np.int64, obj.get('compress'))
--> 450 result = globals()[obj['klass']](data, freq=obj['freq'], name=obj['name'])
451 tz = obj['tz']
452
/home/user/environments/python3/src/pandas/pandas/tseries/index.py in __new__(cls, data, freq, start, end, periods, copy, name, tz, verify_integrity, normalize, closed, **kwds)
283 inferred = subarr.inferred_freq
284 if inferred != offset.freqstr:
--> 285 raise ValueError('Dates do not conform to passed '
286 'frequency')
287
ValueError: Dates do not conform to passed frequency
```
Adding a third row makes the problem go away:
``` python
In [13]: df = pd.DataFrame([1, 2, 3], index=pd.date_range('1/1/2013', '1/3/2013'))
In [14]: df
Out[14]:
0
2013-01-01 1
2013-01-02 2
2013-01-03 3
[3 rows x 1 columns]
In [15]: pd.read_msgpack(df.to_msgpack())
Out[15]:
0
2013-01-01 1
2013-01-02 2
2013-01-03 3
[3 rows x 1 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/5947/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5947/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5948 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5948/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5948/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5948/events | https://github.com/pandas-dev/pandas/pull/5948 | 25,660,818 | MDExOlB1bGxSZXF1ZXN0MTE1NDIwNzU= | 5,948 | BUG: Bug in pd.read_msgpack with inferring a DateTimeIndex frequency incorrectly (GH5947) | {
"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": "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 | 2014-01-15T16:41:07Z | 2014-07-16T08:46:41Z | 2014-01-15T19:25:07Z | CONTRIBUTOR | null | closes #5947
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5948/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5948/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5948.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5948",
"merged_at": "2014-01-15T19:25:07Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/5948.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5948"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5949 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5949/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5949/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5949/events | https://github.com/pandas-dev/pandas/issues/5949 | 25,665,069 | MDU6SXNzdWUyNTY2NTA2OQ== | 5,949 | DOC: document pd.match in main docs section | {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jreback/followers",
"following_url": "https://api.github.com/users/jreback/following{/other_user}",
"gists_url": "https://api.github.com/users/jreback/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jreback",
"id": 953992,
"login": "jreback",
"node_id": "MDQ6VXNlcjk1Mzk5Mg==",
"organizations_url": "https://api.github.com/users/jreback/orgs",
"received_events_url": "https://api.github.com/users/jreback/received_events",
"repos_url": "https://api.github.com/users/jreback/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jreback/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jreback/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jreback"
} | [
{
"color": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
}
] | closed | false | null | [] | {
"closed_at": 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 | 2014-01-15T17:25:01Z | 2018-03-07T09:56:47Z | 2018-03-07T09:56:42Z | CONTRIBUTOR | null | `pd.match` is a lurking function.....would be nice to add a short blurb to the main docs, maybe in `factorize` section
https://github.com/pydata/pandas/blob/master/doc/source/reshaping.rst#factorizing-values
used here in docs: https://github.com/pydata/pandas/pull/5875/files
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5949/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5949/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5950 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5950/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5950/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5950/events | https://github.com/pandas-dev/pandas/pull/5950 | 25,665,868 | MDExOlB1bGxSZXF1ZXN0MTE1NDQ0NzQ= | 5,950 | ENH: sql support via SQLAlchemy, with legacy fallback | {
"avatar_url": "https://avatars.githubusercontent.com/u/743508?v=4",
"events_url": "https://api.github.com/users/mangecoeur/events{/privacy}",
"followers_url": "https://api.github.com/users/mangecoeur/followers",
"following_url": "https://api.github.com/users/mangecoeur/following{/other_user}",
"gists_url": "https://api.github.com/users/mangecoeur/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/mangecoeur",
"id": 743508,
"login": "mangecoeur",
"node_id": "MDQ6VXNlcjc0MzUwOA==",
"organizations_url": "https://api.github.com/users/mangecoeur/orgs",
"received_events_url": "https://api.github.com/users/mangecoeur/received_events",
"repos_url": "https://api.github.com/users/mangecoeur/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/mangecoeur/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/mangecoeur/subscriptions",
"type": "User",
"url": "https://api.github.com/users/mangecoeur"
} | [
{
"color": "5319e7",
"default": false,
"description": "to_sql, read_sql, read_sql_query",
"id": 47232590,
"name": "IO SQL",
"node_id": "MDU6TGFiZWw0NzIzMjU5MA==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20SQL"
}
] | closed | false | null | [] | {
"closed_at": "2014-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"
} | 72 | 2014-01-15T17:35:55Z | 2014-06-12T12:35:36Z | 2014-02-06T21:35:56Z | CONTRIBUTOR | null | Code, tests, and docs for an updated io.sql module which uses SQLAlchemy as a DB abstraction layer. A legacy fallback is provided for SQLite and MySQL. The api should be backwards compatible, with depreciated names marked as such.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5950/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5950/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5950.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5950",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/5950.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5950"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5951 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5951/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5951/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5951/events | https://github.com/pandas-dev/pandas/pull/5951 | 25,671,868 | MDExOlB1bGxSZXF1ZXN0MTE1NDc5OTc= | 5,951 | CLN: repr_html raises NotImplementedError rather then ValueError in qtconsole | {
"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": "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 | 2014-01-15T19:03:35Z | 2014-07-16T08:22:47Z | 2014-01-15T20:49:18Z | NONE | null | #5922. No word from ipython yet but the change makes sense regardless.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5951/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5951/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5951.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5951",
"merged_at": "2014-01-15T20:49:18Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/5951.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5951"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5952 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5952/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5952/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5952/events | https://github.com/pandas-dev/pandas/issues/5952 | 25,675,520 | MDU6SXNzdWUyNTY3NTUyMA== | 5,952 | Negative NaN (-nan) in CSV input treated as object | {
"avatar_url": "https://avatars.githubusercontent.com/u/64128?v=4",
"events_url": "https://api.github.com/users/Bklyn/events{/privacy}",
"followers_url": "https://api.github.com/users/Bklyn/followers",
"following_url": "https://api.github.com/users/Bklyn/following{/other_user}",
"gists_url": "https://api.github.com/users/Bklyn/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/Bklyn",
"id": 64128,
"login": "Bklyn",
"node_id": "MDQ6VXNlcjY0MTI4",
"organizations_url": "https://api.github.com/users/Bklyn/orgs",
"received_events_url": "https://api.github.com/users/Bklyn/received_events",
"repos_url": "https://api.github.com/users/Bklyn/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/Bklyn/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Bklyn/subscriptions",
"type": "User",
"url": "https://api.github.com/users/Bklyn"
} | [
{
"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"
},
{
"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": "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"
} | 3 | 2014-01-15T19:36:40Z | 2014-01-23T20:17:02Z | 2014-01-23T20:17:02Z | NONE | null | The value "-nan" (yes, this is a valid type of NaN!) in a CSV input file causes that column to be treated as 'object' instead of float64.
```
pd.read_csv(StringIO.StringIO('a,b\n1,2.0\n2,nan\n3,-nan')).b
Out[15]:
0 2.0
1 NaN
2 -nan
Name: b, dtype: object
pd.read_csv(StringIO.StringIO('a,b\n1,2.0\n2,nan\n')).b
Out[16]:
0 2
1 NaN
Name: b, dtype: float64
```
When the file is sufficiently large, the following error is generated:
```
In [3]: pd.read_csv('big.bad.csv')
/usr/local/lib/python2.7/dist-packages/pandas/io/parsers.py:1033: DtypeWarning: Columns (58,64) have mixed types. Specify dtype option on import or set low_memory=False.
data = self._reader.read(nrows)
```
If the string "-nan" is replaced with "nan" all is well. I don't really need to distinguish negative NaN from NaN but would like to be able to read my data files w/o having to pre-process them to scrub all the '-nan'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/5952/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5952/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5953 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5953/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5953/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5953/events | https://github.com/pandas-dev/pandas/pull/5953 | 25,676,292 | MDExOlB1bGxSZXF1ZXN0MTE1NDk4NTE= | 5,953 | Misc fixes to doc build | {
"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": "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 | 2014-01-15T19:47:05Z | 2014-06-22T18:22:35Z | 2014-01-15T19:47:11Z | NONE | null | The more innocous bits and pieces of #5925, no sense in waiting.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5953/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5953/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5953.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5953",
"merged_at": "2014-01-15T19:47:11Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/5953.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5953"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5954 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5954/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5954/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5954/events | https://github.com/pandas-dev/pandas/pull/5954 | 25,679,118 | MDExOlB1bGxSZXF1ZXN0MTE1NTE1MzI= | 5,954 | CLN: break read_json, read_msgpack API, disallow string data input | {
"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": "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"
} | 17 | 2014-01-15T20:26:44Z | 2014-06-15T09:42:36Z | 2014-01-16T11:26:40Z | NONE | null | revisiting #5655 due to recent #5874, it's just not right.
most pandas read_\* methods take a path/url of file like. the newish read_json/read_msgpack
also accept a (byte)string of data, and tries to guess whether it's data or a filepath.
That creates weird corner cases and is sufficently wrong IMO that it's worth
making a breaking change. Users will now have to wrap their data in BytesIO/StringIO.
not much of a problem, except perhaps the lost convenience of `pd.read_json(j)`. But since json
usually comes from a file or url which are supported directly I'm hoping it won't be
that disruptive.
0.14.0 ofcourse.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5954/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5954/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5954.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5954",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/5954.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5954"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5955 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5955/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5955/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5955/events | https://github.com/pandas-dev/pandas/issues/5955 | 25,679,361 | MDU6SXNzdWUyNTY3OTM2MQ== | 5,955 | rolling_mean with freq='D' returns all NaNs when there is exactly 1 data point per day | {
"avatar_url": "https://avatars.githubusercontent.com/u/1260747?v=4",
"events_url": "https://api.github.com/users/sleibman/events{/privacy}",
"followers_url": "https://api.github.com/users/sleibman/followers",
"following_url": "https://api.github.com/users/sleibman/following{/other_user}",
"gists_url": "https://api.github.com/users/sleibman/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/sleibman",
"id": 1260747,
"login": "sleibman",
"node_id": "MDQ6VXNlcjEyNjA3NDc=",
"organizations_url": "https://api.github.com/users/sleibman/orgs",
"received_events_url": "https://api.github.com/users/sleibman/received_events",
"repos_url": "https://api.github.com/users/sleibman/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/sleibman/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/sleibman/subscriptions",
"type": "User",
"url": "https://api.github.com/users/sleibman"
} | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "207de5",
"default": false,
"description": "resample method",
"id": 74975453,
"name": "Resample",
"node_id": "MDU6TGFiZWw3NDk3NTQ1Mw==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Resample"
}
] | closed | false | null | [] | {
"closed_at": "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"
} | 2 | 2014-01-15T20:30:31Z | 2014-03-29T01:53:36Z | 2014-03-29T01:53:36Z | NONE | null | related to #3020
``` python
$ python
Python 2.7.4 (default, Apr 23 2013, 12:22:04)
[GCC 4.2.1 Compatible Apple LLVM 4.2 (clang-425.0.28)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import datetime
>>> import pandas as pd
>>> pd.__version__
'0.12.0'
>>> indices = [datetime.datetime(1975, 1, i, 12, 0) for i in range(1, 6)]
>>> series = pd.Series(range(1, 6), index=indices)
>>> series = series.map(lambda x: float(x)) # range() returns ints, so force to float
>>> series = series.sort_index() # already sorted, but just to be clear
>>> series # here's what our input series looks like
1975-01-01 12:00:00 1
1975-01-02 12:00:00 2
1975-01-03 12:00:00 3
1975-01-04 12:00:00 4
1975-01-05 12:00:00 5
dtype: float64
>>> pd.rolling_mean(series, window=2, freq='D') # these results will be wrong
1975-01-01 NaN
1975-01-02 NaN
1975-01-03 NaN
1975-01-04 NaN
1975-01-05 NaN
Freq: D, dtype: float64
>>> better_series = series.append(pd.Series([3.0], index=[datetime.datetime(1975, 1, 3, 6, 0)]))
>>> better_series = better_series.sort_index()
>>> better_series # here's a revised input with more than one datapoint on one of the days
1975-01-01 12:00:00 1
1975-01-02 12:00:00 2
1975-01-03 06:00:00 3
1975-01-03 12:00:00 3
1975-01-04 12:00:00 4
1975-01-05 12:00:00 5
dtype: float64
>>> pd.rolling_mean(better_series, window=2, freq='D') # These results will be correct and are what I expected above
1975-01-01 NaN
1975-01-02 1.5
1975-01-03 2.5
1975-01-04 3.5
1975-01-05 4.5
Freq: D, dtype: float64
```
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5955/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5955/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5956 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5956/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5956/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5956/events | https://github.com/pandas-dev/pandas/issues/5956 | 25,684,152 | MDU6SXNzdWUyNTY4NDE1Mg== | 5,956 | DOC: put EXPERIMENTAL in read_gbq/to_gbq docstrings | {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jreback/followers",
"following_url": "https://api.github.com/users/jreback/following{/other_user}",
"gists_url": "https://api.github.com/users/jreback/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jreback",
"id": 953992,
"login": "jreback",
"node_id": "MDQ6VXNlcjk1Mzk5Mg==",
"organizations_url": "https://api.github.com/users/jreback/orgs",
"received_events_url": "https://api.github.com/users/jreback/received_events",
"repos_url": "https://api.github.com/users/jreback/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jreback/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jreback/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jreback"
} | [
{
"color": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
},
{
"color": "0052cc",
"default": false,
"description": "pandas-gbq compatability",
"id": 57351315,
"name": "IO Google",
"node_id": "MDU6TGFiZWw1NzM1MTMxNQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20Google"
}
] | closed | false | null | [] | {
"closed_at": "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"
} | 8 | 2014-01-15T21:38:59Z | 2014-01-25T08:30:47Z | 2014-01-25T08:30:47Z | 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/5956/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5956/timeline | null | null | null |
|
https://api.github.com/repos/pandas-dev/pandas/issues/5957 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5957/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5957/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5957/events | https://github.com/pandas-dev/pandas/pull/5957 | 25,691,088 | MDExOlB1bGxSZXF1ZXN0MTE1NTg3MzA= | 5,957 | API: add reads_json, reads_msgpack, reads_csv, reads_pickle as convience functions which accept a string | {
"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": "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"
} | 2 | 2014-01-15T23:25:21Z | 2014-06-26T01:49:36Z | 2014-01-16T11:12:09Z | CONTRIBUTOR | null | related #5655
related #5874
closes #5924
todo:
```
[ ] update io.rst docs / whatsnew
[ ] more tests (esp pickle/csv) for passing string to ``read_csv`` or file-handle to ``reads_csv``
```
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5957/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5957/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5957.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5957",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/5957.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5957"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5958 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5958/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5958/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5958/events | https://github.com/pandas-dev/pandas/pull/5958 | 25,691,378 | MDExOlB1bGxSZXF1ZXN0MTE1NTg5MDk= | 5,958 | BUG: Fix to_datetime to properly deal with tz offsets #3944 | {
"avatar_url": "https://avatars.githubusercontent.com/u/91798?v=4",
"events_url": "https://api.github.com/users/danbirken/events{/privacy}",
"followers_url": "https://api.github.com/users/danbirken/followers",
"following_url": "https://api.github.com/users/danbirken/following{/other_user}",
"gists_url": "https://api.github.com/users/danbirken/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/danbirken",
"id": 91798,
"login": "danbirken",
"node_id": "MDQ6VXNlcjkxNzk4",
"organizations_url": "https://api.github.com/users/danbirken/orgs",
"received_events_url": "https://api.github.com/users/danbirken/received_events",
"repos_url": "https://api.github.com/users/danbirken/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/danbirken/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/danbirken/subscriptions",
"type": "User",
"url": "https://api.github.com/users/danbirken"
} | [] | 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"
} | 15 | 2014-01-15T23:30:56Z | 2014-06-13T22:41:44Z | 2014-02-04T09:24:37Z | CONTRIBUTOR | null | Currently for certain formats of datetime strings, the tz offset will
just be ignored.
#3944
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5958/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5958/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5958.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5958",
"merged_at": "2014-02-04T09:24:36Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/5958.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5958"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5959 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5959/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5959/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5959/events | https://github.com/pandas-dev/pandas/pull/5959 | 25,697,284 | MDExOlB1bGxSZXF1ZXN0MTE1NjI0NDk= | 5,959 | BUG: use the "join" string in Appender decorator | {
"avatar_url": "https://avatars.githubusercontent.com/u/128740?v=4",
"events_url": "https://api.github.com/users/gandalf013/events{/privacy}",
"followers_url": "https://api.github.com/users/gandalf013/followers",
"following_url": "https://api.github.com/users/gandalf013/following{/other_user}",
"gists_url": "https://api.github.com/users/gandalf013/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/gandalf013",
"id": 128740,
"login": "gandalf013",
"node_id": "MDQ6VXNlcjEyODc0MA==",
"organizations_url": "https://api.github.com/users/gandalf013/orgs",
"received_events_url": "https://api.github.com/users/gandalf013/received_events",
"repos_url": "https://api.github.com/users/gandalf013/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/gandalf013/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/gandalf013/subscriptions",
"type": "User",
"url": "https://api.github.com/users/gandalf013"
} | [] | 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"
} | 1 | 2014-01-16T01:40:05Z | 2014-07-06T10:27:41Z | 2014-01-18T03:08:06Z | CONTRIBUTOR | null | The docstring for Appender decorator says that "join" parameter is used to join the docstring and addendum. This commit brings the code in line with the documentation.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5959/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5959/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5959.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5959",
"merged_at": "2014-01-18T03:08:06Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/5959.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5959"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5960 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5960/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5960/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5960/events | https://github.com/pandas-dev/pandas/pull/5960 | 25,698,975 | MDExOlB1bGxSZXF1ZXN0MTE1NjM0Mzk= | 5,960 | PERF: add np.max and np.min to _cython_table (GH5927) | {
"avatar_url": "https://avatars.githubusercontent.com/u/980054?v=4",
"events_url": "https://api.github.com/users/dsm054/events{/privacy}",
"followers_url": "https://api.github.com/users/dsm054/followers",
"following_url": "https://api.github.com/users/dsm054/following{/other_user}",
"gists_url": "https://api.github.com/users/dsm054/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/dsm054",
"id": 980054,
"login": "dsm054",
"node_id": "MDQ6VXNlcjk4MDA1NA==",
"organizations_url": "https://api.github.com/users/dsm054/orgs",
"received_events_url": "https://api.github.com/users/dsm054/received_events",
"repos_url": "https://api.github.com/users/dsm054/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/dsm054/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dsm054/subscriptions",
"type": "User",
"url": "https://api.github.com/users/dsm054"
} | [] | 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"
} | 2 | 2014-01-16T02:24:51Z | 2014-06-21T03:08:27Z | 2014-01-16T14:28:12Z | CONTRIBUTOR | null | closes #5927
Fixes numpy max/min slow path on resample and adds tests to vbench.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5960/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5960/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5960.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5960",
"merged_at": "2014-01-16T14:28:12Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/5960.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5960"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5961 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5961/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5961/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5961/events | https://github.com/pandas-dev/pandas/issues/5961 | 25,701,517 | MDU6SXNzdWUyNTcwMTUxNw== | 5,961 | to_datetime broken for Tz-aware datetimes and NaTs in same array | {
"avatar_url": "https://avatars.githubusercontent.com/u/51059?v=4",
"events_url": "https://api.github.com/users/cancan101/events{/privacy}",
"followers_url": "https://api.github.com/users/cancan101/followers",
"following_url": "https://api.github.com/users/cancan101/following{/other_user}",
"gists_url": "https://api.github.com/users/cancan101/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/cancan101",
"id": 51059,
"login": "cancan101",
"node_id": "MDQ6VXNlcjUxMDU5",
"organizations_url": "https://api.github.com/users/cancan101/orgs",
"received_events_url": "https://api.github.com/users/cancan101/received_events",
"repos_url": "https://api.github.com/users/cancan101/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/cancan101/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cancan101/subscriptions",
"type": "User",
"url": "https://api.github.com/users/cancan101"
} | [
{
"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": "5319e7",
"default": false,
"description": "Timezone data dtype",
"id": 60458168,
"name": "Timezones",
"node_id": "MDU6TGFiZWw2MDQ1ODE2OA==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Timezones"
}
] | closed | false | null | [] | {
"closed_at": "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 | 2014-01-16T03:46:06Z | 2014-01-16T11:54:39Z | 2014-01-16T11:54:39Z | CONTRIBUTOR | null | This works:
```
In [400]:
pd.to_datetime([pd.Timestamp("2013-1-1", tz=pytz.timezone('US/Eastern'))])
Out[400]:
<class 'pandas.tseries.index.DatetimeIndex'>
[2013-01-01 00:00:00-05:00]
Length: 1, Freq: None, Timezone: US/Eastern
```
but this (adding an NaT) does not. At the very least, the error message is misleading:
```
In [401]:
pd.to_datetime([pd.Timestamp("2013-1-1", tz=pytz.timezone('US/Eastern')), pd.NaT])
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
<ipython-input-401-3b5b8a67d2e1> in <module>()
----> 1 pd.to_datetime([pd.Timestamp("2013-1-1", tz=pytz.timezone('US/Eastern')), pd.NaT])
/usr/local/lib/python2.7/dist-packages/pandas-0.13.0rc1_78_g142ca62-py2.7-linux-x86_64.egg/pandas/tseries/tools.pyc in to_datetime(arg, errors, dayfirst, utc, box, format, coerce, unit)
137 return Series(values, index=arg.index, name=arg.name)
138 elif com.is_list_like(arg):
--> 139 return _convert_listlike(arg, box=box)
140
141 return _convert_listlike(np.array([ arg ]), box=box)[0]
/usr/local/lib/python2.7/dist-packages/pandas-0.13.0rc1_78_g142ca62-py2.7-linux-x86_64.egg/pandas/tseries/tools.pyc in _convert_listlike(arg, box)
127 return DatetimeIndex._simple_new(values, None, tz=tz)
128 except (ValueError, TypeError):
--> 129 raise e
130
131 if arg is None:
ValueError: Tz-aware datetime.datetime cannot be converted to datetime64 unless utc=True
```
I tracked down this issue to a bug in `datetime_to_datetime64`
When iterating over the elements in `datetime_to_datetime64` the check for nullness is `util._checknull(val)` which is `False` for `NaT`.
The correct null check is to use `checknull` from `lib`
PR on the way.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5961/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5961/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5962 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5962/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5962/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5962/events | https://github.com/pandas-dev/pandas/pull/5962 | 25,701,743 | MDExOlB1bGxSZXF1ZXN0MTE1NjQ5NjI= | 5,962 | BUG: Fixed to_datetime for array with both Tz-aware datetimes and NaTs | {
"avatar_url": "https://avatars.githubusercontent.com/u/51059?v=4",
"events_url": "https://api.github.com/users/cancan101/events{/privacy}",
"followers_url": "https://api.github.com/users/cancan101/followers",
"following_url": "https://api.github.com/users/cancan101/following{/other_user}",
"gists_url": "https://api.github.com/users/cancan101/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/cancan101",
"id": 51059,
"login": "cancan101",
"node_id": "MDQ6VXNlcjUxMDU5",
"organizations_url": "https://api.github.com/users/cancan101/orgs",
"received_events_url": "https://api.github.com/users/cancan101/received_events",
"repos_url": "https://api.github.com/users/cancan101/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/cancan101/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cancan101/subscriptions",
"type": "User",
"url": "https://api.github.com/users/cancan101"
} | [] | 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"
} | 6 | 2014-01-16T03:52:27Z | 2014-06-22T06:32:18Z | 2014-01-16T11:54:39Z | CONTRIBUTOR | null | Closes #5961
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5962/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5962/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5962.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5962",
"merged_at": "2014-01-16T11:54:39Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/5962.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5962"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5963 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5963/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5963/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5963/events | https://github.com/pandas-dev/pandas/issues/5963 | 25,702,862 | MDU6SXNzdWUyNTcwMjg2Mg== | 5,963 | Unable to compare timedelta64 to timedelta | {
"avatar_url": "https://avatars.githubusercontent.com/u/51059?v=4",
"events_url": "https://api.github.com/users/cancan101/events{/privacy}",
"followers_url": "https://api.github.com/users/cancan101/followers",
"following_url": "https://api.github.com/users/cancan101/following{/other_user}",
"gists_url": "https://api.github.com/users/cancan101/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/cancan101",
"id": 51059,
"login": "cancan101",
"node_id": "MDQ6VXNlcjUxMDU5",
"organizations_url": "https://api.github.com/users/cancan101/orgs",
"received_events_url": "https://api.github.com/users/cancan101/received_events",
"repos_url": "https://api.github.com/users/cancan101/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/cancan101/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cancan101/subscriptions",
"type": "User",
"url": "https://api.github.com/users/cancan101"
} | [
{
"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": "Timedelta data type",
"id": 49597148,
"name": "Timedelta",
"node_id": "MDU6TGFiZWw0OTU5NzE0OA==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Timedelta"
}
] | closed | false | null | [] | {
"closed_at": "2014-12-12T13:45:40Z",
"closed_issues": 173,
"created_at": "2014-10-07T14:40:52Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/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.1 of course",
"due_on": "2014-12-12T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/30",
"id": 816816,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/30/labels",
"node_id": "MDk6TWlsZXN0b25lODE2ODE2",
"number": 30,
"open_issues": 0,
"state": "closed",
"title": "0.15.2",
"updated_at": "2015-07-29T20:17:19Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/30"
} | 4 | 2014-01-16T04:33:47Z | 2014-11-26T02:30:02Z | 2014-11-26T02:30:02Z | CONTRIBUTOR | null | ```
In [426]:
s = pd.Series([timedelta(days=1), timedelta(days=2)])
s > timedelta(days=1)
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-426-9094b7c93677> in <module>()
1 s = pd.Series([timedelta(days=1), timedelta(days=2)])
----> 2 s > timedelta(days=1)
/usr/local/lib/python2.7/dist-packages/pandas-0.13.0rc1_78_g142ca62-py2.7-linux-x86_64.egg/pandas/core/ops.pyc in wrapper(self, other)
561
562 # scalars
--> 563 res = na_op(values, other)
564 if np.isscalar(res):
565 raise TypeError('Could not compare %s type with Series'
/usr/local/lib/python2.7/dist-packages/pandas-0.13.0rc1_78_g142ca62-py2.7-linux-x86_64.egg/pandas/core/ops.pyc in na_op(x, y)
528
529 try:
--> 530 result = getattr(x, name)(y)
531 if result is NotImplemented:
532 raise TypeError("invalid type comparison")
TypeError: can't compare datetime.timedelta to long
```
The comparison does work for `timedelta64`:
```
In [45]: s > np.timedelta64(timedelta(days=1))
Out[45]:
0 False
1 True
dtype: bool
```
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5963/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5963/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5964 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5964/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5964/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5964/events | https://github.com/pandas-dev/pandas/pull/5964 | 25,703,296 | MDExOlB1bGxSZXF1ZXN0MTE1NjU3NzY= | 5,964 | DOC: Clarified documentation for MultiIndexes | {
"avatar_url": "https://avatars.githubusercontent.com/u/5019234?v=4",
"events_url": "https://api.github.com/users/felixlawrence/events{/privacy}",
"followers_url": "https://api.github.com/users/felixlawrence/followers",
"following_url": "https://api.github.com/users/felixlawrence/following{/other_user}",
"gists_url": "https://api.github.com/users/felixlawrence/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/felixlawrence",
"id": 5019234,
"login": "felixlawrence",
"node_id": "MDQ6VXNlcjUwMTkyMzQ=",
"organizations_url": "https://api.github.com/users/felixlawrence/orgs",
"received_events_url": "https://api.github.com/users/felixlawrence/received_events",
"repos_url": "https://api.github.com/users/felixlawrence/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/felixlawrence/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/felixlawrence/subscriptions",
"type": "User",
"url": "https://api.github.com/users/felixlawrence"
} | [] | closed | false | null | [] | null | 8 | 2014-01-16T04:51:47Z | 2014-07-16T08:46:52Z | 2014-01-20T09:27:50Z | NONE | null | Clarify some quirks regarding slicing on MultiIndexes
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5964/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5964/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5964.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5964",
"merged_at": "2014-01-20T09:27:50Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/5964.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5964"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5965 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5965/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5965/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5965/events | https://github.com/pandas-dev/pandas/issues/5965 | 25,712,825 | MDU6SXNzdWUyNTcxMjgyNQ== | 5,965 | pip install error - cython required to install from tarball? | {
"avatar_url": "https://avatars.githubusercontent.com/u/120225?v=4",
"events_url": "https://api.github.com/users/jdu/events{/privacy}",
"followers_url": "https://api.github.com/users/jdu/followers",
"following_url": "https://api.github.com/users/jdu/following{/other_user}",
"gists_url": "https://api.github.com/users/jdu/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jdu",
"id": 120225,
"login": "jdu",
"node_id": "MDQ6VXNlcjEyMDIyNQ==",
"organizations_url": "https://api.github.com/users/jdu/orgs",
"received_events_url": "https://api.github.com/users/jdu/received_events",
"repos_url": "https://api.github.com/users/jdu/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jdu/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jdu/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jdu"
} | [
{
"color": "75507B",
"default": false,
"description": "Library building on various platforms",
"id": 129350,
"name": "Build",
"node_id": "MDU6TGFiZWwxMjkzNTA=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Build"
}
] | closed | false | null | [] | {
"closed_at": "2013-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 | 2014-01-16T09:37:09Z | 2014-01-16T11:49:06Z | 2014-01-16T11:05:06Z | NONE | null | 0.16 install from pip on ubuntu 12.04 LTS 64 bit edition currently throws an error:
Exception: Cython-generated file 'pandas/msgpack.c' not found.
Cython is required to compile pandas from a development branch.
Please install Cython or download a release package of pandas.
I did not specify a dev branch install from pip, simply ran
`sudo pip install pandas` and it produced the above error, python-dev and build-essential are installed, available and the latest updates on ubuntu 12.04 64
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5965/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5965/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5966 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5966/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5966/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5966/events | https://github.com/pandas-dev/pandas/pull/5966 | 25,719,638 | MDExOlB1bGxSZXF1ZXN0MTE1NzQ3MDc= | 5,966 | Travis checks that tarball can be installed without cython installed. | {
"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": "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 | 2014-01-16T11:49:06Z | 2014-07-16T08:46:54Z | 2014-01-16T11:49:17Z | NONE | null | Catch stuff like #5965 in the future.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5966/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5966/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5966.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5966",
"merged_at": "2014-01-16T11:49:17Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/5966.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5966"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5967 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5967/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5967/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5967/events | https://github.com/pandas-dev/pandas/issues/5967 | 25,724,217 | MDU6SXNzdWUyNTcyNDIxNw== | 5,967 | Inconsistent Behavior of min on Timestamps w/ and w/o timezones | {
"avatar_url": "https://avatars.githubusercontent.com/u/51059?v=4",
"events_url": "https://api.github.com/users/cancan101/events{/privacy}",
"followers_url": "https://api.github.com/users/cancan101/followers",
"following_url": "https://api.github.com/users/cancan101/following{/other_user}",
"gists_url": "https://api.github.com/users/cancan101/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/cancan101",
"id": 51059,
"login": "cancan101",
"node_id": "MDQ6VXNlcjUxMDU5",
"organizations_url": "https://api.github.com/users/cancan101/orgs",
"received_events_url": "https://api.github.com/users/cancan101/received_events",
"repos_url": "https://api.github.com/users/cancan101/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/cancan101/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cancan101/subscriptions",
"type": "User",
"url": "https://api.github.com/users/cancan101"
} | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "e102d8",
"default": false,
"description": "Unexpected or buggy dtype conversions",
"id": 31404521,
"name": "Dtype Conversions",
"node_id": "MDU6TGFiZWwzMTQwNDUyMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Dtype%20Conversions"
},
{
"color": "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": "5319e7",
"default": false,
"description": "Timezone data dtype",
"id": 60458168,
"name": "Timezones",
"node_id": "MDU6TGFiZWw2MDQ1ODE2OA==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Timezones"
}
] | closed | false | null | [] | {
"closed_at": 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"
} | 4 | 2014-01-16T13:21:52Z | 2016-11-11T10:21:27Z | 2016-11-11T10:21:23Z | CONTRIBUTOR | null | related #4147
Observe w/o tz:
```
In [46]: pd.Series([pd.NaT, pd.Timestamp("2013-1-1")]).min()
Out[46]: Timestamp('2013-01-01 00:00:00', tz=None)
```
however w/ tz:
```
In [48]: pd.Series([pd.NaT, pd.Timestamp("2013-1-1", tz="US/Eastern")]).min()
Out[48]: NaT
```
strangely, `max` works:
```
In [60]: pd.Series([pd.NaT, pd.Timestamp("2013-1-1", tz="US/Eastern")]).max()
Out[60]: Timestamp('2013-01-01 00:00:00-0500', tz='US/Eastern')
```
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5967/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5967/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5968 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5968/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5968/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5968/events | https://github.com/pandas-dev/pandas/issues/5968 | 25,725,340 | MDU6SXNzdWUyNTcyNTM0MA== | 5,968 | df.dtypes.values is not O(1) and repr(df) is therefore slow for large frames | {
"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": "a10c02",
"default": false,
"description": "Memory or execution speed performance",
"id": 8935311,
"name": "Performance",
"node_id": "MDU6TGFiZWw4OTM1MzEx",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Performance"
}
] | closed | false | null | [] | {
"closed_at": "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"
} | 21 | 2014-01-16T13:42:26Z | 2014-01-16T22:14:44Z | 2014-01-16T17:58:40Z | NONE | null | For the FEC dataset, it takes about 1.5 sec to get a repr. and prun
puts it all in `infer_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/5968/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5968/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5969 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5969/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5969/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5969/events | https://github.com/pandas-dev/pandas/issues/5969 | 25,735,613 | MDU6SXNzdWUyNTczNTYxMw== | 5,969 | ERR: better error reporting for missing numexpr | {
"avatar_url": "https://avatars.githubusercontent.com/u/674200?v=4",
"events_url": "https://api.github.com/users/twiecki/events{/privacy}",
"followers_url": "https://api.github.com/users/twiecki/followers",
"following_url": "https://api.github.com/users/twiecki/following{/other_user}",
"gists_url": "https://api.github.com/users/twiecki/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/twiecki",
"id": 674200,
"login": "twiecki",
"node_id": "MDQ6VXNlcjY3NDIwMA==",
"organizations_url": "https://api.github.com/users/twiecki/orgs",
"received_events_url": "https://api.github.com/users/twiecki/received_events",
"repos_url": "https://api.github.com/users/twiecki/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/twiecki/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/twiecki/subscriptions",
"type": "User",
"url": "https://api.github.com/users/twiecki"
} | [
{
"color": "AD7FA8",
"default": false,
"description": null,
"id": 35818298,
"name": "API Design",
"node_id": "MDU6TGFiZWwzNTgxODI5OA==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/API%20Design"
},
{
"color": "ffa0ff",
"default": false,
"description": "Incorrect or improved errors from pandas",
"id": 42670965,
"name": "Error Reporting",
"node_id": "MDU6TGFiZWw0MjY3MDk2NQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Error%20Reporting"
}
] | closed | false | null | [] | {
"closed_at": "2014-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"
} | 43 | 2014-01-16T16:08:44Z | 2016-10-12T23:04:30Z | 2014-01-26T23:16:10Z | CONTRIBUTOR | null | From the example at http://pandas.pydata.org/pandas-docs/dev/generated/pandas.DataFrame.query.html:
``` python
from numpy.random import randn
from pandas import DataFrame
df = DataFrame(randn(10, 2), columns=list('ab'))
df.query('a > b')
```
gives me:
```
---------------------------------------------------------------------------
NameResolutionError Traceback (most recent call last)
<ipython-input-19-47040e53b0e7> in <module>()
2 from pandas import DataFrame
3 df = DataFrame(randn(10, 2), columns=list('ab'))
----> 4 df.query('a > b')
/usr/local/lib/python2.7/dist-packages/pandas/core/frame.pyc in query(self, expr, **kwargs)
1778 "query expression")
1779
-> 1780 res = self.eval(expr, **kwargs)
1781
1782 try:
/usr/local/lib/python2.7/dist-packages/pandas/core/frame.pyc in eval(self, expr, **kwargs)
1829 kwargs['local_dict'] = _ensure_scope(resolvers=resolvers, **kwargs)
1830 kwargs['target'] = self
-> 1831 return _eval(expr, **kwargs)
1832
1833 def _slice(self, slobj, axis=0, raise_on_error=False, typ=None):
/usr/local/lib/python2.7/dist-packages/pandas/computation/eval.pyc in eval(expr, parser, engine, truediv, local_dict, global_dict, resolvers, level, target)
206 eng = _engines[engine]
207 eng_inst = eng(parsed_expr)
--> 208 ret = eng_inst.evaluate()
209
210 # assign if needed
/usr/local/lib/python2.7/dist-packages/pandas/computation/engines.pyc in evaluate(self)
48
49 # make sure no names in resolvers and locals/globals clash
---> 50 self.pre_evaluate()
51 res = self._evaluate()
52 return _reconstruct_object(self.result_type, res, self.aligned_axes,
/usr/local/lib/python2.7/dist-packages/pandas/computation/engines.pyc in pre_evaluate(self)
31
32 def pre_evaluate(self):
---> 33 self.expr.check_name_clashes()
34
35 def evaluate(self):
/usr/local/lib/python2.7/dist-packages/pandas/computation/expr.pyc in check_name_clashes(self)
797 lcl_keys = frozenset(env.locals.keys()) & names
798 gbl_keys = frozenset(env.globals.keys()) & names
--> 799 _check_disjoint_resolver_names(res_keys, lcl_keys, gbl_keys)
800
801 def add_resolvers_to_locals(self):
/usr/local/lib/python2.7/dist-packages/pandas/computation/expr.pyc in _check_disjoint_resolver_names(resolver_keys, local_keys, global_keys)
39 if res_locals:
40 msg = "resolvers and locals overlap on names {0}".format(res_locals)
---> 41 raise NameResolutionError(msg)
42
43 res_globals = list(com.intersection(resolver_keys, global_keys))
NameResolutionError: resolvers and locals overlap on names ['a']
```
This is with `0.13`.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5969/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5969/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5970 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5970/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5970/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5970/events | https://github.com/pandas-dev/pandas/pull/5970 | 25,737,727 | MDExOlB1bGxSZXF1ZXN0MTE1ODUyOTM= | 5,970 | PERF: perf improvments in dtypes/ftypes methods (GH5968) | {
"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": "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"
} | 3 | 2014-01-16T16:35:58Z | 2014-06-15T18:39:31Z | 2014-01-16T17:04:02Z | CONTRIBUTOR | null | closes #5968
```
-------------------------------------------------------------------------------
Test name | head[ms] | base[ms] | ratio |
-------------------------------------------------------------------------------
frame_dtypes | 0.2654 | 51.2140 | 0.0052 |
frame_wide_repr | 17.1947 | 525.7313 | 0.0327 |
-------------------------------------------------------------------------------
Test name | head[ms] | base[ms] | ratio |
-------------------------------------------------------------------------------
Ratio < 1.0 means the target commit is faster then the baseline.
Seed used: 1234
Target [6a7bfc1] : PERF: perf improvments in dtypes/ftypes methods (GH5968)
Base [2081fcc] : Merge pull request #5951 from y-p/PR_latest_ipython_rep_fixes
CLN: repr_html raises NotImplementedError rather then ValueError in qtconsole
```
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5970/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5970/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5970.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5970",
"merged_at": "2014-01-16T17:04:02Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/5970.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5970"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5971 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5971/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5971/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5971/events | https://github.com/pandas-dev/pandas/issues/5971 | 25,740,818 | MDU6SXNzdWUyNTc0MDgxOA== | 5,971 | Suggestion: percentile ranks | {
"avatar_url": "https://avatars.githubusercontent.com/u/1874691?v=4",
"events_url": "https://api.github.com/users/MichaelWS/events{/privacy}",
"followers_url": "https://api.github.com/users/MichaelWS/followers",
"following_url": "https://api.github.com/users/MichaelWS/following{/other_user}",
"gists_url": "https://api.github.com/users/MichaelWS/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/MichaelWS",
"id": 1874691,
"login": "MichaelWS",
"node_id": "MDQ6VXNlcjE4NzQ2OTE=",
"organizations_url": "https://api.github.com/users/MichaelWS/orgs",
"received_events_url": "https://api.github.com/users/MichaelWS/received_events",
"repos_url": "https://api.github.com/users/MichaelWS/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/MichaelWS/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/MichaelWS/subscriptions",
"type": "User",
"url": "https://api.github.com/users/MichaelWS"
} | [
{
"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"
},
{
"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": "Non-arithmetic algos: value_counts, factorize, sorting, isin, clip, shift, diff",
"id": 57296398,
"name": "Algos",
"node_id": "MDU6TGFiZWw1NzI5NjM5OA==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Algos"
}
] | closed | false | null | [] | {
"closed_at": "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"
} | 4 | 2014-01-16T17:14:47Z | 2014-03-27T12:07:42Z | 2014-02-16T21:23:12Z | CONTRIBUTOR | null | I realize I am computing percentile ranks constantly in my code.
df["pct_rank"] = df["field"].groupby("date").transform(lambda x: x.rank(ascending=False) / float(x.count()))
Would anyone have any use for a function that is computed in cython for this?
if so, would people prefer to it to be a separate function or an option in rank?
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5971/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5971/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5972 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5972/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5972/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5972/events | https://github.com/pandas-dev/pandas/issues/5972 | 25,742,667 | MDU6SXNzdWUyNTc0MjY2Nw== | 5,972 | vb_suite parser.py can shadow builtin parser module | {
"avatar_url": "https://avatars.githubusercontent.com/u/980054?v=4",
"events_url": "https://api.github.com/users/dsm054/events{/privacy}",
"followers_url": "https://api.github.com/users/dsm054/followers",
"following_url": "https://api.github.com/users/dsm054/following{/other_user}",
"gists_url": "https://api.github.com/users/dsm054/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/dsm054",
"id": 980054,
"login": "dsm054",
"node_id": "MDQ6VXNlcjk4MDA1NA==",
"organizations_url": "https://api.github.com/users/dsm054/orgs",
"received_events_url": "https://api.github.com/users/dsm054/received_events",
"repos_url": "https://api.github.com/users/dsm054/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/dsm054/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dsm054/subscriptions",
"type": "User",
"url": "https://api.github.com/users/dsm054"
} | [
{
"color": "C4A000",
"default": false,
"description": "pandas testing functions or related to the test suite",
"id": 127685,
"name": "Testing",
"node_id": "MDU6TGFiZWwxMjc2ODU=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Testing"
},
{
"color": "a10c02",
"default": false,
"description": "Memory or execution speed performance",
"id": 8935311,
"name": "Performance",
"node_id": "MDU6TGFiZWw4OTM1MzEx",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Performance"
}
] | closed | false | null | [] | {
"closed_at": "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"
} | 2 | 2014-01-16T17:38:28Z | 2014-01-17T09:48:52Z | 2014-01-17T09:48:52Z | CONTRIBUTOR | null | This is identical to Tom Augspurger's issue [here](https://groups.google.com/d/msg/pydata/pxFe_ISulyA/Upyjnx96P-UJ).
Under some circumstances, you can't run the performance tests:
```
~/sys/pandas$ ./test_perf.sh
Traceback (most recent call last):
File "/home/mcneil/sys/pandas/vb_suite/test_perf.py", line 55, in <module>
import pandas as pd
File "/usr/local/lib/python2.7/dist-packages/pandas-0.13.0_75_g7d9e9fa-py2.7-linux-i686.egg/pandas/__init__.py", line 37, in <module>
import pandas.core.config_init
File "/usr/local/lib/python2.7/dist-packages/pandas-0.13.0_75_g7d9e9fa-py2.7-linux-i686.egg/pandas/core/config_init.py", line 17, in <module>
from pandas.core.format import detect_console_encoding
File "/usr/local/lib/python2.7/dist-packages/pandas-0.13.0_75_g7d9e9fa-py2.7-linux-i686.egg/pandas/core/format.py", line 9, in <module>
from pandas.core.index import Index, MultiIndex, _ensure_index
File "/usr/local/lib/python2.7/dist-packages/pandas-0.13.0_75_g7d9e9fa-py2.7-linux-i686.egg/pandas/core/index.py", line 11, in <module>
import pandas.index as _index
File "index.pyx", line 34, in init pandas.index (pandas/index.c:16227)
File "/usr/local/lib/python2.7/dist-packages/pytz/__init__.py", line 29, in <module>
from pkg_resources import resource_stream
File "/usr/local/lib/python2.7/dist-packages/pkg_resources.py", line 76, in <module>
import parser
File "/home/mcneil/sys/pandas/vb_suite/parser.py", line 1, in <module>
from vbench.api import Benchmark
File "/usr/local/lib/python2.7/dist-packages/vbench/__init__.py", line 2, in <module>
import vbench.log
File "/usr/local/lib/python2.7/dist-packages/vbench/log.py", line 34, in <module>
from vbench.config import is_interactive
File "/usr/local/lib/python2.7/dist-packages/vbench/config.py", line 4, in <module>
TIME_ZONE = pytz.timezone('US/Eastern')
AttributeError: 'module' object has no attribute 'timezone'
```
This happens because pytz does
```
from pkg_resources import resource_stream
```
which itself calls
```
import parser
```
which is picking up `pandas/vb_suite/parser.py` instead of the builtin parser module. Net result: the `pytz` import never manages to get to the point where `timezone` is defined.
As expected, renaming `parser.py` solves the problem (and restoring the original name creates it again).
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5972/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5972/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5973 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5973/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5973/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5973/events | https://github.com/pandas-dev/pandas/pull/5973 | 25,743,312 | MDExOlB1bGxSZXF1ZXN0MTE1ODg1NDY= | 5,973 | PERF: perf improvments in indexing with object dtypes (GH5968) | {
"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": "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"
} | 4 | 2014-01-16T17:47:39Z | 2014-06-13T17:04:51Z | 2014-01-16T21:14:35Z | CONTRIBUTOR | null | closes #5968
```
-------------------------------------------------------------------------------
Test name | head[ms] | base[ms] | ratio |
-------------------------------------------------------------------------------
frame_iloc_big | 0.2836 | 2.8454 | 0.0997 |
```
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5973/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5973/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5973.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5973",
"merged_at": "2014-01-16T21:14:35Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/5973.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5973"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5974 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5974/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5974/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5974/events | https://github.com/pandas-dev/pandas/pull/5974 | 25,743,681 | MDExOlB1bGxSZXF1ZXN0MTE1ODg3NTk= | 5,974 | ENH: revamp null count supression for large frames in df.info() | {
"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": "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"
} | 14 | 2014-01-16T17:52:57Z | 2014-06-12T19:14:09Z | 2014-01-16T18:06:13Z | NONE | null | #5550 deprecated options.display.max_info_rows, but df.info is still there
for the user to invoke and the null count can be very slow.
Un-deprecte the option and revamp `df.info` to do the right thing.
Now that @cpcloud add per column dtypes it will always show them,
and just supress the counts if needed, where previously if max_info_rows was
exceeded, it didn't even print the column names.
```
In [4]: df.info()
<class 'pandas.core.frame.DataFrame'>
Index: 1000000 entries, C00410118 to C00431445
Data columns (total 18 columns):
cmte_id 1000000 non-null object
cand_id 1000000 non-null object
cand_nm 1000000 non-null object
contbr_nm 999975 non-null object
contbr_city 1000000 non-null object
contbr_st 999850 non-null object
contbr_zip 992087 non-null object
contbr_employer 994533 non-null object
contbr_occupation 1000000 non-null float64
contb_receipt_amt 1000000 non-null object
contb_receipt_dt 18038 non-null object
receipt_desc 383960 non-null object
memo_cd 391290 non-null object
memo_text 1000000 non-null object
form_tp 1000000 non-null int64
file_num 1000000 non-null object
tran_id 999998 non-null object
election_tp 0 non-null float64
dtypes: float64(2), int64(1), object(15)
In [5]: pd.options.display.max_info_rows
Out[5]: 1690785
In [6]: pd.options.display.max_info_rows=999999
In [7]: df.info()
<class 'pandas.core.frame.DataFrame'>
Index: 1000000 entries, C00410118 to C00431445
Data columns (total 18 columns):
cmte_id object
cand_id object
cand_nm object
contbr_nm object
contbr_city object
contbr_st object
contbr_zip object
contbr_employer object
contbr_occupation float64
contb_receipt_amt object
contb_receipt_dt object
receipt_desc object
memo_cd object
memo_text object
form_tp int64
file_num object
tran_id object
election_tp float64
```
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5974/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5974/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5974.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5974",
"merged_at": "2014-01-16T18:06:13Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/5974.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5974"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5975 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5975/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5975/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5975/events | https://github.com/pandas-dev/pandas/issues/5975 | 25,746,434 | MDU6SXNzdWUyNTc0NjQzNA== | 5,975 | BUG: Scipy interpolate methods are not datetime64 aware | {
"avatar_url": "https://avatars.githubusercontent.com/u/1312546?v=4",
"events_url": "https://api.github.com/users/TomAugspurger/events{/privacy}",
"followers_url": "https://api.github.com/users/TomAugspurger/followers",
"following_url": "https://api.github.com/users/TomAugspurger/following{/other_user}",
"gists_url": "https://api.github.com/users/TomAugspurger/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/TomAugspurger",
"id": 1312546,
"login": "TomAugspurger",
"node_id": "MDQ6VXNlcjEzMTI1NDY=",
"organizations_url": "https://api.github.com/users/TomAugspurger/orgs",
"received_events_url": "https://api.github.com/users/TomAugspurger/received_events",
"repos_url": "https://api.github.com/users/TomAugspurger/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/TomAugspurger/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/TomAugspurger/subscriptions",
"type": "User",
"url": "https://api.github.com/users/TomAugspurger"
} | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "e102d8",
"default": false,
"description": "Unexpected or buggy dtype conversions",
"id": 31404521,
"name": "Dtype Conversions",
"node_id": "MDU6TGFiZWwzMTQwNDUyMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Dtype%20Conversions"
},
{
"color": "006b75",
"default": false,
"description": "Arithmetic, Comparison, and Logical operations",
"id": 47223669,
"name": "Numeric Operations",
"node_id": "MDU6TGFiZWw0NzIyMzY2OQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Numeric%20Operations"
}
] | closed | false | null | [] | {
"closed_at": "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"
} | 2 | 2014-01-16T18:14:57Z | 2014-01-19T09:43:24Z | 2014-01-19T09:43:24Z | CONTRIBUTOR | null | From [this SO question](http://stackoverflow.com/questions/21169182/interpolation-for-some-methods-is-failing-with-a-type-error).
Is this something we should worry about here, or report upstream to scipy? The workaround I posted on SO is just to explicitly recast the index as an int64, interpolate on that, and then reset the original index. Any reason we shouldn't do this internally?
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5975/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5975/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5976 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5976/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5976/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5976/events | https://github.com/pandas-dev/pandas/pull/5976 | 25,747,646 | MDExOlB1bGxSZXF1ZXN0MTE1OTAzMjk= | 5,976 | ENH: make show_versions available in the top_level api | {
"avatar_url": "https://avatars.githubusercontent.com/u/10137?v=4",
"events_url": "https://api.github.com/users/ghost/events{/privacy}",
"followers_url": "https://api.github.com/users/ghost/followers",
"following_url": "https://api.github.com/users/ghost/following{/other_user}",
"gists_url": "https://api.github.com/users/ghost/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/ghost",
"id": 10137,
"login": "ghost",
"node_id": "MDQ6VXNlcjEwMTM3",
"organizations_url": "https://api.github.com/users/ghost/orgs",
"received_events_url": "https://api.github.com/users/ghost/received_events",
"repos_url": "https://api.github.com/users/ghost/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/ghost/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/ghost/subscriptions",
"type": "User",
"url": "https://api.github.com/users/ghost"
} | [] | closed | false | null | [] | null | 2 | 2014-01-16T18:34:01Z | 2014-07-16T08:47:02Z | 2014-01-16T18:35:51Z | NONE | null | comfy for everyone.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5976/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5976/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5976.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5976",
"merged_at": "2014-01-16T18:35:51Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/5976.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5976"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5977 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5977/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5977/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5977/events | https://github.com/pandas-dev/pandas/pull/5977 | 25,748,343 | MDExOlB1bGxSZXF1ZXN0MTE1OTA3MDU= | 5,977 | BUG: Allow DatetimeIndex for scipy interpolate | {
"avatar_url": "https://avatars.githubusercontent.com/u/1312546?v=4",
"events_url": "https://api.github.com/users/TomAugspurger/events{/privacy}",
"followers_url": "https://api.github.com/users/TomAugspurger/followers",
"following_url": "https://api.github.com/users/TomAugspurger/following{/other_user}",
"gists_url": "https://api.github.com/users/TomAugspurger/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/TomAugspurger",
"id": 1312546,
"login": "TomAugspurger",
"node_id": "MDQ6VXNlcjEzMTI1NDY=",
"organizations_url": "https://api.github.com/users/TomAugspurger/orgs",
"received_events_url": "https://api.github.com/users/TomAugspurger/received_events",
"repos_url": "https://api.github.com/users/TomAugspurger/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/TomAugspurger/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/TomAugspurger/subscriptions",
"type": "User",
"url": "https://api.github.com/users/TomAugspurger"
} | [] | closed | false | null | [] | null | 6 | 2014-01-16T18:43:21Z | 2014-06-14T08:31:34Z | 2014-01-16T21:08:52Z | CONTRIBUTOR | null | Closes #5975
Is there a better way to check for a DatetimeIndex than with an `isinstance()`?
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5977/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5977/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5977.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5977",
"merged_at": "2014-01-16T21:08:52Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/5977.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5977"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5978 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5978/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5978/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5978/events | https://github.com/pandas-dev/pandas/pull/5978 | 25,750,403 | MDExOlB1bGxSZXF1ZXN0MTE1OTE1NzQ= | 5,978 | ENH: series rank has a percentage rank option | {
"avatar_url": "https://avatars.githubusercontent.com/u/1874691?v=4",
"events_url": "https://api.github.com/users/MichaelWS/events{/privacy}",
"followers_url": "https://api.github.com/users/MichaelWS/followers",
"following_url": "https://api.github.com/users/MichaelWS/following{/other_user}",
"gists_url": "https://api.github.com/users/MichaelWS/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/MichaelWS",
"id": 1874691,
"login": "MichaelWS",
"node_id": "MDQ6VXNlcjE4NzQ2OTE=",
"organizations_url": "https://api.github.com/users/MichaelWS/orgs",
"received_events_url": "https://api.github.com/users/MichaelWS/received_events",
"repos_url": "https://api.github.com/users/MichaelWS/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/MichaelWS/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/MichaelWS/subscriptions",
"type": "User",
"url": "https://api.github.com/users/MichaelWS"
} | [
{
"color": "4E9A06",
"default": false,
"description": null,
"id": 76812,
"name": "Enhancement",
"node_id": "MDU6TGFiZWw3NjgxMg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Enhancement"
},
{
"color": "006b75",
"default": false,
"description": "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": "Non-arithmetic algos: value_counts, factorize, sorting, isin, clip, shift, diff",
"id": 57296398,
"name": "Algos",
"node_id": "MDU6TGFiZWw1NzI5NjM5OA==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Algos"
}
] | closed | false | null | [] | {
"closed_at": "2014-05-30T12:17:57Z",
"closed_issues": 755,
"created_at": "2014-01-03T20:19:04Z",
"creator": null,
"description": "2014-02-3: previous version released",
"due_on": "2014-05-31T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/24",
"id": 526062,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/24/labels",
"node_id": "MDk6TWlsZXN0b25lNTI2MDYy",
"number": 24,
"open_issues": 0,
"state": "closed",
"title": "0.14.0",
"updated_at": "2016-12-29T13:57:13Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/24"
} | 14 | 2014-01-16T19:05:10Z | 2014-06-12T15:46:42Z | 2014-02-16T21:23:12Z | CONTRIBUTOR | null | closes #5971
This pull allows people to compute percentage ranks in cython for a series. I found myself computing this all the time and it will make this calculation much faster.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5978/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5978/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5978.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5978",
"merged_at": "2014-02-16T21:23:12Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/5978.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5978"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5979 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5979/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5979/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5979/events | https://github.com/pandas-dev/pandas/pull/5979 | 25,755,447 | MDExOlB1bGxSZXF1ZXN0MTE1OTMwMzI= | 5,979 | VBENCH: rename parser.py to parser_vb.py | {
"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": "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"
} | 4 | 2014-01-16T19:38:24Z | 2014-06-21T02:57:58Z | 2014-01-17T09:48:52Z | NONE | null | closes #5972
@dsm054, does this resolve the issue for you?
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5979/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5979/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5979.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5979",
"merged_at": "2014-01-17T09:48:52Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/5979.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5979"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5980 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5980/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5980/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5980/events | https://github.com/pandas-dev/pandas/pull/5980 | 25,768,473 | MDExOlB1bGxSZXF1ZXN0MTE1OTg2NDA= | 5,980 | DOC: add a couple plt.close('all') to avoid warning | {
"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 | 2014-01-16T21:52:15Z | 2014-07-02T01:21:00Z | 2014-01-17T10:47:13Z | MEMBER | null | Some small doc fixes:
- added some `plt.close('all')` calls to avoid the matplotlib warning that there are more than 20 figures open.
- some style errors in release.rst. Apparantly sphinx complains about something like ```NaN``s`.because there may not be a character directly after the closing ````
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5980/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5980/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5980.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5980",
"merged_at": "2014-01-17T10:47:13Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/5980.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5980"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5981 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5981/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5981/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5981/events | https://github.com/pandas-dev/pandas/issues/5981 | 25,774,514 | MDU6SXNzdWUyNTc3NDUxNA== | 5,981 | test_pow fails due to differences at machine precision | {
"avatar_url": "https://avatars.githubusercontent.com/u/4128715?v=4",
"events_url": "https://api.github.com/users/drudd/events{/privacy}",
"followers_url": "https://api.github.com/users/drudd/followers",
"following_url": "https://api.github.com/users/drudd/following{/other_user}",
"gists_url": "https://api.github.com/users/drudd/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/drudd",
"id": 4128715,
"login": "drudd",
"node_id": "MDQ6VXNlcjQxMjg3MTU=",
"organizations_url": "https://api.github.com/users/drudd/orgs",
"received_events_url": "https://api.github.com/users/drudd/received_events",
"repos_url": "https://api.github.com/users/drudd/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/drudd/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/drudd/subscriptions",
"type": "User",
"url": "https://api.github.com/users/drudd"
} | [
{
"color": "C4A000",
"default": false,
"description": "pandas testing functions or related to the test suite",
"id": 127685,
"name": "Testing",
"node_id": "MDU6TGFiZWwxMjc2ODU=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Testing"
}
] | closed | false | null | [] | {
"closed_at": "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"
} | 4 | 2014-01-16T23:18:14Z | 2014-01-17T12:55:11Z | 2014-01-17T12:55:11Z | CONTRIBUTOR | null | I am testing pandas 0.13 (built against numexpr 2.2.2, numpy 1.8.0, scipy 0.13.2, all linked to MKL 10.3 using Scientific Linux 6.4's stock gcc 4.7.4), and test_pow fails with an array not equal error:
#
## FAIL: test_pow (pandas.computation.tests.test_eval.TestEvalNumexprPandas)
Traceback (most recent call last):
File "/software/python-2.7-2014q1-el6-x86_64/lib/python2.7/site-packages/pandas/computation/tests/test_eval.py", line 192, in test_pow
self.check_pow(lhs, '*_', rhs)
File "/software/python-2.7-2014q1-el6-x86_64/lib/python2.7/site-packages/pandas/computation/tests/test_eval.py", line 94, in wrapper
f(self, lhs, arith1, rhs, *args, *_kwargs)
File "/software/python-2.7-2014q1-el6-x86_64/lib/python2.7/site-packages/pandas/computation/tests/test_eval.py", line 408, in check_pow
assert_array_equal(result, expected)
File "/software/python-2.7-2014q1-el6-x86_64/lib/python2.7/site-packages/numpy/testing/utils.py", line 718, in assert_array_equal
verbose=verbose, header='Arrays are not equal')
File "/software/python-2.7-2014q1-el6-x86_64/lib/python2.7/site-packages/numpy/testing/utils.py", line 644, in assert_array_compare
raise AssertionError(msg)
AssertionError:
Arrays are not equal
(mismatch 25.8064516129%)
x: array([[ 6.98492548e-01, 5.39900967e-01, 1.87991705e+00,
7.67724670e-01, nan],
[ nan, 1.18493281e+00, 4.15163610e+01,...
y: array([[ 6.98492548e-01, 5.39900967e-01, 1.87991705e+00,
7.67724670e-01, nan],
[ nan, 1.18493281e+00, 4.15163610e+01,...
---
I have modified the check_pow function in that test to identify the error and print out the difference in result and expected:
@skip_incompatible_operand
def check_pow(self, lhs, arith1, rhs):
ex = 'lhs {0} rhs'.format(arith1)
expected = self.get_expected_pow_result(lhs, rhs)
result = pd.eval(ex, engine=self.engine, parser=self.parser)
```
if (np.isscalar(lhs) and np.isscalar(rhs) and
_is_py3_complex_incompat(result, expected)):
self.assertRaises(AssertionError, assert_array_equal, result,
expected)
else:
print result, expected, result-expected
assert_array_equal(result, expected,verbose=True)
ex = '(lhs {0} rhs) {0} rhs'.format(arith1)
result = pd.eval(ex, engine=self.engine, parser=self.parser)
expected = self.get_expected_pow_result(
self.get_expected_pow_result(lhs, rhs), rhs)
print result, expected, result-expected
assert_array_equal(result, expected)
```
Which yields the following (only differences reported for brevity):
[10 rows x 5 columns] 0 1 2 3 4
0 -2.775558e-17 NaN 0.000000e+00 -2.220446e-16 0.000000e+00
1 0.000000e+00 1.110223e-16 NaN NaN NaN
2 0.000000e+00 NaN NaN NaN NaN
3 0.000000e+00 NaN NaN 0.000000e+00 0.000000e+00
4 NaN 0.000000e+00 1.110223e-16 0.000000e+00 2.220446e-16
5 NaN -1.110223e-16 -5.551115e-17 0.000000e+00 0.000000e+00
6 NaN NaN 0.000000e+00 NaN -4.440892e-16
7 -1.110223e-16 NaN NaN 3.552714e-15 NaN
8 NaN 0.000000e+00 0.000000e+00 NaN 2.220446e-16
9 0.000000e+00 0.000000e+00 NaN 0.000000e+00 0.000000e+00
and
[10 rows x 5 columns] 0 1 2 3 4
0 0.000000e+00 NaN 0.000000e+00 0.000000e+00 0.000000e+00
1 0.000000e+00 1.110223e-16 NaN NaN NaN
2 2.220446e-16 NaN NaN NaN NaN
3 0.000000e+00 NaN NaN 5.551115e-17 0.000000e+00
4 NaN 0.000000e+00 1.110223e-16 0.000000e+00 2.220446e-16
5 NaN -1.110223e-16 0.000000e+00 0.000000e+00 0.000000e+00
6 NaN NaN 0.000000e+00 NaN 1.110223e-16
7 2.220446e-16 NaN NaN -4.336809e-19 NaN
8 NaN 0.000000e+00 0.000000e+00 NaN -1.110223e-16
9 0.000000e+00 1.110223e-16 NaN 0.000000e+00 0.000000e+00
The differences are only at machine precision, and may be due to the use of MKL rather than standard blas (I haven't dug any further). I have verified that changing the test from assert_array_equal to assert_allclose allows the test to succeed.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5981/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5981/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5982 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5982/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5982/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5982/events | https://github.com/pandas-dev/pandas/pull/5982 | 25,776,144 | MDExOlB1bGxSZXF1ZXN0MTE2MDI2Mzk= | 5,982 | Modified test_pow function in computation/tests/test_eval.py to use asse... | {
"avatar_url": "https://avatars.githubusercontent.com/u/4128715?v=4",
"events_url": "https://api.github.com/users/drudd/events{/privacy}",
"followers_url": "https://api.github.com/users/drudd/followers",
"following_url": "https://api.github.com/users/drudd/following{/other_user}",
"gists_url": "https://api.github.com/users/drudd/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/drudd",
"id": 4128715,
"login": "drudd",
"node_id": "MDQ6VXNlcjQxMjg3MTU=",
"organizations_url": "https://api.github.com/users/drudd/orgs",
"received_events_url": "https://api.github.com/users/drudd/received_events",
"repos_url": "https://api.github.com/users/drudd/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/drudd/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/drudd/subscriptions",
"type": "User",
"url": "https://api.github.com/users/drudd"
} | [] | 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"
} | 1 | 2014-01-16T23:36:12Z | 2014-07-16T08:47:12Z | 2014-01-17T12:54:59Z | CONTRIBUTOR | null | ...rt_allclose rather than assert_all_equal to avoid machine precision failures in TestEvalNumexprPandas/Numpy. Fixes issue #5981.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5982/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5982/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5982.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5982",
"merged_at": "2014-01-17T12:54:59Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/5982.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5982"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5983 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5983/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5983/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5983/events | https://github.com/pandas-dev/pandas/pull/5983 | 25,779,169 | MDExOlB1bGxSZXF1ZXN0MTE2MDQ1MjQ= | 5,983 | API: Panel.dtypes to use generic method; add tests for Panel4D for same | {
"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": "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 | 2014-01-17T00:42:42Z | 2014-07-16T08:47:14Z | 2014-01-17T13:42:13Z | CONTRIBUTOR | null | DOC: updated api docs for panel/panel4d
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5983/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5983/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5983.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5983",
"merged_at": "2014-01-17T13:42:13Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/5983.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5983"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5984 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5984/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5984/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5984/events | https://github.com/pandas-dev/pandas/pull/5984 | 25,797,806 | MDExOlB1bGxSZXF1ZXN0MTE2MTQ4MjI= | 5,984 | DOC: correction of docstring dtypes/ftypes | {
"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 | 2014-01-17T10:07:45Z | 2014-07-16T08:47:16Z | 2014-01-17T12:56:36Z | MEMBER | null | @jreback
See #5970, you copied the docstring of `get_dtype_counts`. Only thing I was wondering: `columns` is maybe not generic enough?
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5984/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5984/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5984.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5984",
"merged_at": "2014-01-17T12:56:36Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/5984.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5984"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5985 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5985/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5985/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5985/events | https://github.com/pandas-dev/pandas/pull/5985 | 25,807,932 | MDExOlB1bGxSZXF1ZXN0MTE2MjA1MDQ= | 5,985 | DOC: in ReST, a sublabel defines it's parent. latex complains of dupe | {
"avatar_url": "https://avatars.githubusercontent.com/u/10137?v=4",
"events_url": "https://api.github.com/users/ghost/events{/privacy}",
"followers_url": "https://api.github.com/users/ghost/followers",
"following_url": "https://api.github.com/users/ghost/following{/other_user}",
"gists_url": "https://api.github.com/users/ghost/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/ghost",
"id": 10137,
"login": "ghost",
"node_id": "MDQ6VXNlcjEwMTM3",
"organizations_url": "https://api.github.com/users/ghost/orgs",
"received_events_url": "https://api.github.com/users/ghost/received_events",
"repos_url": "https://api.github.com/users/ghost/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/ghost/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/ghost/subscriptions",
"type": "User",
"url": "https://api.github.com/users/ghost"
} | [] | closed | false | null | [] | null | 0 | 2014-01-17T13:37:10Z | 2014-06-22T08:33:03Z | 2014-01-17T13:37:15Z | NONE | null | This fix allows us to bring back the pdf documentation, albeit with some warnings.
I've uploaded the pdf to GH releases, and eventually hope to get it on the website.
Also updated the [release checklist](https://github.com/pydata/pandas/wiki/Release-Checklist) to make pdf publishing a standard part of our release process.
closes #5433
related #3518
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5985/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5985/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5985.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5985",
"merged_at": "2014-01-17T13:37:15Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/5985.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5985"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5986 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5986/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5986/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5986/events | https://github.com/pandas-dev/pandas/issues/5986 | 25,818,782 | MDU6SXNzdWUyNTgxODc4Mg== | 5,986 | BUG: algos with timedelta | {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jreback/followers",
"following_url": "https://api.github.com/users/jreback/following{/other_user}",
"gists_url": "https://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": "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": "5319e7",
"default": false,
"description": "Timedelta data type",
"id": 49597148,
"name": "Timedelta",
"node_id": "MDU6TGFiZWw0OTU5NzE0OA==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Timedelta"
},
{
"color": "eb6420",
"default": false,
"description": "Non-arithmetic algos: value_counts, factorize, sorting, isin, clip, shift, diff",
"id": 57296398,
"name": "Algos",
"node_id": "MDU6TGFiZWw1NzI5NjM5OA==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Algos"
}
] | closed | false | null | [] | {
"closed_at": "2016-03-12T16:19:08Z",
"closed_issues": 469,
"created_at": "2015-07-19T20:18:45Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/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-03-13T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/36",
"id": 1214851,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/36/labels",
"node_id": "MDk6TWlsZXN0b25lMTIxNDg1MQ==",
"number": 36,
"open_issues": 0,
"state": "closed",
"title": "0.18.0",
"updated_at": "2016-12-06T21:34:41Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/36"
} | 1 | 2014-01-17T16:31:02Z | 2016-02-27T16:03:24Z | 2016-02-27T15:22:59Z | CONTRIBUTOR | null | check that these work / fix (prob just need tests and conversion to i8), datetime64
- [x] rank #12465
- [x] unique
- [x] factorize #12465
- [x] quantile
- [x] mode #12465
- [x] value_counts
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5986/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5986/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5987 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5987/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5987/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5987/events | https://github.com/pandas-dev/pandas/issues/5987 | 25,828,530 | MDU6SXNzdWUyNTgyODUzMA== | 5,987 | ENH/API: Change query/eval local variable API | {
"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": "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"
}
] | 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": "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"
} | 10 | 2014-01-17T18:52:50Z | 2014-02-20T14:24:06Z | 2014-02-20T14:24:06Z | MEMBER | null | Currently, with `query` and `eval` you can use local variables a la the `@` symbol. It's a bit confusing since you're not allowed to have a local variable and a column name with the same name, but it will try to pull the local if possible.
Current API:
Fails with a `NameError`:
``` python
a = 1
df = DataFrame({'a': randn(10), 'b': randn(10)})
df.query('a > b')
```
But this works:
``` python
df.query('@a > b')
```
And so does this, which is confusing:
``` python
a = 1
df = DataFrame({'b': randn(10), 'c': randn(10)})
df.query('a < b < c')
```
As suggested by @y-p and @jreback, the following API is less confusing IMO.
From now on, all local variables will need an explicit reference and if there is a column name and a local with the same name then the column will be used. Thus you can always be sure that you're referring to a column, or it doesn't exist, in which case you'll get an error. And if you use `@` then you can be sure that you're referring to local, and likewise get an error if it doesn't exist. As a bonus ( :wolf: in :sheep: 's clothing), this allows you to use both a local _and_ a column name with the same name.
Examples:
``` python
a = 1
df = DataFrame({'a': randn(10), 'b': randn(10)})
# uses the column 'a'
df.query('a > b')
# uses the local
df.query('@a > b')
# fails because I didn't reference the local and there's no 'c' column
c = 1
df.query('a > c')
# local and a column name
df.query('b < @a < a')
```
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5987/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5987/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5988 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5988/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5988/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5988/events | https://github.com/pandas-dev/pandas/issues/5988 | 25,830,682 | MDU6SXNzdWUyNTgzMDY4Mg== | 5,988 | Finance Options Module | {
"avatar_url": "https://avatars.githubusercontent.com/u/6431968?v=4",
"events_url": "https://api.github.com/users/joejohnson111/events{/privacy}",
"followers_url": "https://api.github.com/users/joejohnson111/followers",
"following_url": "https://api.github.com/users/joejohnson111/following{/other_user}",
"gists_url": "https://api.github.com/users/joejohnson111/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/joejohnson111",
"id": 6431968,
"login": "joejohnson111",
"node_id": "MDQ6VXNlcjY0MzE5Njg=",
"organizations_url": "https://api.github.com/users/joejohnson111/orgs",
"received_events_url": "https://api.github.com/users/joejohnson111/received_events",
"repos_url": "https://api.github.com/users/joejohnson111/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/joejohnson111/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/joejohnson111/subscriptions",
"type": "User",
"url": "https://api.github.com/users/joejohnson111"
} | [] | closed | false | null | [] | null | 1 | 2014-01-17T19:27:47Z | 2014-01-17T22:46:43Z | 2014-01-17T22:46:43Z | NONE | null | I've started toying around with this today, its quite interesting and powerful for research. I thought it an interesting and at first thought "relatively easy" (famous last words) to add a column for the forward price of the security. When constructing the VIX index the CBOE has a realtively simple process to extract market participants forward price.
https://www.cboe.com/micro/vix/vixwhite.pdf page 6.
The only input that theoretically would be needed is the risk free rate used for discounting. But they essentially take the strike price for which the (call price - put price is smallest) at each expiration, and discount it back at the risk free rate.
I'm not sure if this is functionality one would want included in the main libraries or if its something that should be left to others, but appending a forward price column(it would be the same for all options for each expiration), one could then make an implied volatility column. Also, having a panel of important expiration dates, one could "realtively" easily interpolate the volatility surface with matplotlib, using the methodology of Gatheral (2006).
Just a discussion to start, having historical data on the volatility surface readily available could yield some interesting research results.
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/5988/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5988/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5989 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5989/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5989/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5989/events | https://github.com/pandas-dev/pandas/pull/5989 | 25,834,672 | MDExOlB1bGxSZXF1ZXN0MTE2MzU5MTU= | 5,989 | Change "methdo" to "method" in asfreq's docstring. | {
"avatar_url": "https://avatars.githubusercontent.com/u/1740780?v=4",
"events_url": "https://api.github.com/users/toc-the-younger/events{/privacy}",
"followers_url": "https://api.github.com/users/toc-the-younger/followers",
"following_url": "https://api.github.com/users/toc-the-younger/following{/other_user}",
"gists_url": "https://api.github.com/users/toc-the-younger/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/toc-the-younger",
"id": 1740780,
"login": "toc-the-younger",
"node_id": "MDQ6VXNlcjE3NDA3ODA=",
"organizations_url": "https://api.github.com/users/toc-the-younger/orgs",
"received_events_url": "https://api.github.com/users/toc-the-younger/received_events",
"repos_url": "https://api.github.com/users/toc-the-younger/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/toc-the-younger/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/toc-the-younger/subscriptions",
"type": "User",
"url": "https://api.github.com/users/toc-the-younger"
} | [] | 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"
} | 1 | 2014-01-17T20:31:23Z | 2014-07-16T08:47:18Z | 2014-01-18T02:53:26Z | CONTRIBUTOR | null | Fixes a quick typo I noticed.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5989/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5989/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5989.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5989",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/5989.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5989"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5990 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5990/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5990/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5990/events | https://github.com/pandas-dev/pandas/issues/5990 | 25,853,378 | MDU6SXNzdWUyNTg1MzM3OA== | 5,990 | ENH: add DataFrame anonymizer | {
"avatar_url": "https://avatars.githubusercontent.com/u/980054?v=4",
"events_url": "https://api.github.com/users/dsm054/events{/privacy}",
"followers_url": "https://api.github.com/users/dsm054/followers",
"following_url": "https://api.github.com/users/dsm054/following{/other_user}",
"gists_url": "https://api.github.com/users/dsm054/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/dsm054",
"id": 980054,
"login": "dsm054",
"node_id": "MDQ6VXNlcjk4MDA1NA==",
"organizations_url": "https://api.github.com/users/dsm054/orgs",
"received_events_url": "https://api.github.com/users/dsm054/received_events",
"repos_url": "https://api.github.com/users/dsm054/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/dsm054/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dsm054/subscriptions",
"type": "User",
"url": "https://api.github.com/users/dsm054"
} | [] | closed | false | null | [] | null | 2 | 2014-01-18T04:11:56Z | 2014-01-23T16:53:30Z | 2014-01-23T16:53:05Z | CONTRIBUTOR | null | Often on SO people looking for help say they can't put their DataFrame somewhere for others to look at because the data's private. In most cases, the data itself isn't relevant to answering the question, and only the structure matters.
It would be straightforward to add a method which replaces string data and index/column names by A,B,C, randomizes numbers and times (with or without preserving the overall ordering), etc. There's a reasonably popular [R question](http://stackoverflow.com/questions/10454973/how-to-create-example-data-set-from-private-data-replacing-variable-names-and-l) asking about the same.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5990/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5990/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5991 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5991/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5991/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5991/events | https://github.com/pandas-dev/pandas/issues/5991 | 25,863,304 | MDU6SXNzdWUyNTg2MzMwNA== | 5,991 | building docs under Python 3 after ipython_directive merge | {
"avatar_url": "https://avatars.githubusercontent.com/u/952406?v=4",
"events_url": "https://api.github.com/users/phaebz/events{/privacy}",
"followers_url": "https://api.github.com/users/phaebz/followers",
"following_url": "https://api.github.com/users/phaebz/following{/other_user}",
"gists_url": "https://api.github.com/users/phaebz/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/phaebz",
"id": 952406,
"login": "phaebz",
"node_id": "MDQ6VXNlcjk1MjQwNg==",
"organizations_url": "https://api.github.com/users/phaebz/orgs",
"received_events_url": "https://api.github.com/users/phaebz/received_events",
"repos_url": "https://api.github.com/users/phaebz/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/phaebz/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/phaebz/subscriptions",
"type": "User",
"url": "https://api.github.com/users/phaebz"
} | [] | closed | false | null | [] | null | 1 | 2014-01-18T16:38:07Z | 2014-01-19T11:27:59Z | 2014-01-19T11:25:08Z | CONTRIBUTOR | null | As requested in [#5530 (comment)] and after the merge of #5925, I am trying to test building the docs on python 3. I get the error:
```
Traceback (most recent call last):
File "/Users/user/.virtualenvs/pandas-dev/lib/python3.3/site-packages/sphinx/cmdline.py", line 245, in main
warningiserror, tags, verbosity, parallel)
File "/Users/user/.virtualenvs/pandas-dev/lib/python3.3/site-packages/sphinx/application.py", line 119, in __init__
self.setup_extension(extension)
File "/Users/user/.virtualenvs/pandas-dev/lib/python3.3/site-packages/sphinx/application.py", line 283, in setup_extension
mod = __import__(extension, None, None, ['setup'])
File "/Users/user/Optional/pandas-phaebz/doc/sphinxext/numpydoc.py", line 40
title_re = re.compile(ur'^\s*[#*=]{4,}\n[a-z0-9 -]+\n[#*=]{4,}\s*',
SyntaxError: invalid syntax
```
I thought about it and talked to @kermit666: where should this be taken care of?
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5991/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5991/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5992 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5992/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5992/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5992/events | https://github.com/pandas-dev/pandas/pull/5992 | 25,866,691 | MDExOlB1bGxSZXF1ZXN0MTE2NTA2NDc= | 5,992 | allow path to be an StringIO object and skip extension check for that case | {
"avatar_url": "https://avatars.githubusercontent.com/u/6439040?v=4",
"events_url": "https://api.github.com/users/fennnec/events{/privacy}",
"followers_url": "https://api.github.com/users/fennnec/followers",
"following_url": "https://api.github.com/users/fennnec/following{/other_user}",
"gists_url": "https://api.github.com/users/fennnec/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/fennnec",
"id": 6439040,
"login": "fennnec",
"node_id": "MDQ6VXNlcjY0MzkwNDA=",
"organizations_url": "https://api.github.com/users/fennnec/orgs",
"received_events_url": "https://api.github.com/users/fennnec/received_events",
"repos_url": "https://api.github.com/users/fennnec/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/fennnec/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/fennnec/subscriptions",
"type": "User",
"url": "https://api.github.com/users/fennnec"
} | [
{
"color": "bfe5bf",
"default": false,
"description": "read_excel, to_excel",
"id": 49254273,
"name": "IO Excel",
"node_id": "MDU6TGFiZWw0OTI1NDI3Mw==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20Excel"
}
] | closed | false | null | [] | {
"closed_at": "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"
} | 22 | 2014-01-18T19:40:50Z | 2014-07-02T07:07:23Z | 2014-04-06T15:17:13Z | NONE | null | this is to allow in-memory creation of excel-files from 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/5992/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5992/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5992.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5992",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/5992.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5992"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5993 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5993/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5993/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5993/events | https://github.com/pandas-dev/pandas/pull/5993 | 25,867,150 | MDExOlB1bGxSZXF1ZXN0MTE2NTA4NDg= | 5,993 | DOC: document read_csv fastpath for iso8601 datetime strings | {
"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": "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 | 2014-01-18T20:04:00Z | 2014-06-12T13:16:50Z | 2014-01-18T20:07:12Z | NONE | null | While investigating an optimization suggested in #5490 , I came
across a fast path in pd.read_csv that I was unaware of for parsing iso8601 datetimes.
It's undocumented as far as I can tell.
RIght the wrong.
```
N=10000
r=pd.date_range("2000-01-01","2013-01-01",freq="H")[:N]
df=pd.DataFrame(range(N),index=r)
df.to_csv("/tmp/1.csv")
def f1(s):
return dt.datetime.strptime(s,"%Y-%m-%d %H:%M:%S")
def f2(s):
return dateutil.parser.parse(s)
%timeit x1=pd.read_csv("/tmp/1.csv",parse_dates=True,index_col=0) # fast-path for iso8601, fallback to dateutil.parser
%timeit x2=pd.read_csv("/tmp/1.csv",parse_dates=True,index_col=0,date_parser=f1)
%timeit x2=pd.read_csv("/tmp/1.csv",parse_dates=True,index_col=0,date_parser=f2)
100 loops, best of 3: 14.1 ms per loop
1 loops, best of 3: 259 ms per loop
1 loops, best of 3: 956 ms per loop
```
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5993/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5993/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5993.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5993",
"merged_at": "2014-01-18T20:07:12Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/5993.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5993"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5994 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5994/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5994/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5994/events | https://github.com/pandas-dev/pandas/issues/5994 | 25,867,783 | MDU6SXNzdWUyNTg2Nzc4Mw== | 5,994 | doc: add new excel tutorial | {
"avatar_url": "https://avatars.githubusercontent.com/u/11860?v=4",
"events_url": "https://api.github.com/users/timmie/events{/privacy}",
"followers_url": "https://api.github.com/users/timmie/followers",
"following_url": "https://api.github.com/users/timmie/following{/other_user}",
"gists_url": "https://api.github.com/users/timmie/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/timmie",
"id": 11860,
"login": "timmie",
"node_id": "MDQ6VXNlcjExODYw",
"organizations_url": "https://api.github.com/users/timmie/orgs",
"received_events_url": "https://api.github.com/users/timmie/received_events",
"repos_url": "https://api.github.com/users/timmie/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/timmie/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/timmie/subscriptions",
"type": "User",
"url": "https://api.github.com/users/timmie"
} | [
{
"color": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
}
] | closed | false | null | [] | {
"closed_at": "2014-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"
} | 2 | 2014-01-18T20:37:06Z | 2014-01-23T15:55:36Z | 2014-01-23T15:41:34Z | CONTRIBUTOR | null | add to
http://pandas.pydata.org/pandas-docs/dev/tutorials.html
the tutorial:
http://pandas-xlsxwriter-charts.readthedocs.org/
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5994/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5994/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5995 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5995/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5995/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5995/events | https://github.com/pandas-dev/pandas/pull/5995 | 25,868,238 | MDExOlB1bGxSZXF1ZXN0MTE2NTEyNTA= | 5,995 | BUG/CLN: clarified timedelta inferences | {
"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": "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"
} | 19 | 2014-01-18T21:00:18Z | 2014-06-16T22:59:26Z | 2014-01-20T23:37:17Z | CONTRIBUTOR | null | closes #5458
closes #5695
closes #5689
cleaned up / clarified timedelta inferences, bottom line is the following works, previously these would
return not-useful object dtypes
```
In [4]: Series([np.timedelta64(1,'s'),timedelta(days=1),pd.NaT])
Out[4]:
0 0 days, 00:00:01
1 1 days, 00:00:00
2 NaT
dtype: timedelta64[ns]
```
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5995/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5995/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5995.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5995",
"merged_at": "2014-01-20T23:37:17Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/5995.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5995"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5996 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5996/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5996/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5996/events | https://github.com/pandas-dev/pandas/pull/5996 | 25,870,225 | MDExOlB1bGxSZXF1ZXN0MTE2NTIxMjQ= | 5,996 | DOC: add guidelines for building the docs | {
"avatar_url": "https://avatars.githubusercontent.com/u/1020496?v=4",
"events_url": "https://api.github.com/users/jorisvandenbossche/events{/privacy}",
"followers_url": "https://api.github.com/users/jorisvandenbossche/followers",
"following_url": "https://api.github.com/users/jorisvandenbossche/following{/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": "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"
} | 13 | 2014-01-18T22:54:08Z | 2014-07-02T10:56:37Z | 2014-01-25T01:09:54Z | MEMBER | null | First draft of some guidelines on contributing to and building the docs (following #5934). Comments are very welcome.
Rendered version can be seen here: https://github.com/jorisvandenbossche/pandas/blob/doc-guide/doc/README.rst
TODO:
- [x] update section on Sphinx 1.2 now 1.2.1 is released
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5996/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5996/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5996.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5996",
"merged_at": "2014-01-25T01:09:54Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/5996.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5996"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5997 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5997/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5997/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5997/events | https://github.com/pandas-dev/pandas/issues/5997 | 25,870,322 | MDU6SXNzdWUyNTg3MDMyMg== | 5,997 | pandas 0.13.0 tests fail against numpy 1.8.x | {
"avatar_url": "https://avatars.githubusercontent.com/u/542663?v=4",
"events_url": "https://api.github.com/users/juliantaylor/events{/privacy}",
"followers_url": "https://api.github.com/users/juliantaylor/followers",
"following_url": "https://api.github.com/users/juliantaylor/following{/other_user}",
"gists_url": "https://api.github.com/users/juliantaylor/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/juliantaylor",
"id": 542663,
"login": "juliantaylor",
"node_id": "MDQ6VXNlcjU0MjY2Mw==",
"organizations_url": "https://api.github.com/users/juliantaylor/orgs",
"received_events_url": "https://api.github.com/users/juliantaylor/received_events",
"repos_url": "https://api.github.com/users/juliantaylor/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/juliantaylor/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/juliantaylor/subscriptions",
"type": "User",
"url": "https://api.github.com/users/juliantaylor"
} | [
{
"color": "C4A000",
"default": false,
"description": "pandas testing functions or related to the test suite",
"id": 127685,
"name": "Testing",
"node_id": "MDU6TGFiZWwxMjc2ODU=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Testing"
}
] | closed | false | null | [] | {
"closed_at": "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"
} | 41 | 2014-01-18T22:59:41Z | 2014-02-04T15:32:27Z | 2014-01-23T20:17:05Z | NONE | null | several test errors of this type when run against the maintenance/1.8.x branch of numpy.
```
ERROR: test_qcut_specify_quantiles (pandas.tools.tests.test_tile.TestCut)
File "hashtable.pyx", line 776, in pandas.hashtable.PyObjectHashTable.unique (pandas/hashtable.c:12071)
TypeError: unhashable type: 'numpy.ndarray'
FAIL: test_series_describe_multikey (pandas.tests.test_groupby.TestGroupBy)
assert a == b, "%s: %r != %r" % (msg.format(a,b), a, b)
AssertionError: attr is not equal [dtype]: dtype('O') != dtype('float64')
```
it seems you have coded a regression of 1.8 into the tests, it is intended to fix this in numpy 1.8.1 but now that pandas relies on it makes the situation a little tricky.
see https://github.com/numpy/numpy/pull/4109
How bad would it be for pandas if we release 1.8.1 with the regression fixed?
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5997/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5997/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/5998 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5998/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5998/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5998/events | https://github.com/pandas-dev/pandas/pull/5998 | 25,871,849 | MDExOlB1bGxSZXF1ZXN0MTE2NTI4Nzc= | 5,998 | BUG: use astype for scipy datetime interpolation | {
"avatar_url": "https://avatars.githubusercontent.com/u/1312546?v=4",
"events_url": "https://api.github.com/users/TomAugspurger/events{/privacy}",
"followers_url": "https://api.github.com/users/TomAugspurger/followers",
"following_url": "https://api.github.com/users/TomAugspurger/following{/other_user}",
"gists_url": "https://api.github.com/users/TomAugspurger/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/TomAugspurger",
"id": 1312546,
"login": "TomAugspurger",
"node_id": "MDQ6VXNlcjEzMTI1NDY=",
"organizations_url": "https://api.github.com/users/TomAugspurger/orgs",
"received_events_url": "https://api.github.com/users/TomAugspurger/received_events",
"repos_url": "https://api.github.com/users/TomAugspurger/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/TomAugspurger/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/TomAugspurger/subscriptions",
"type": "User",
"url": "https://api.github.com/users/TomAugspurger"
} | [] | closed | false | null | [] | {
"closed_at": "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"
} | 4 | 2014-01-19T00:49:53Z | 2014-06-23T03:21:11Z | 2014-01-19T09:43:24Z | CONTRIBUTOR | null | Closes #5975 (again), with the issue raised at https://github.com/pydata/pandas/pull/5977#issuecomment-32691271.
I'm using `astype` instead of `view` now, as Jeff suggested. I also didn't realize that `asi8` was a method on all `Index`es, and not just `DatetimeIndex`es. So instead of checking for that attr, I just check if it's a DatetimeIndex.
@y-p this should fix the doc example. It built for me anyway, but I've had trouble building the docs off my working branch.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5998/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5998/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/5998.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/5998",
"merged_at": "2014-01-19T09:43:24Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/5998.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/5998"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/5999 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/5999/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/5999/comments | https://api.github.com/repos/pandas-dev/pandas/issues/5999/events | https://github.com/pandas-dev/pandas/issues/5999 | 25,874,566 | MDU6SXNzdWUyNTg3NDU2Ng== | 5,999 | s390 test failure: file descriptor cannot be a negative integer | {
"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": "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 | 2014-01-19T04:56:52Z | 2014-01-19T19:41:13Z | 2014-01-19T19:02:13Z | CONTRIBUTOR | null | full log https://buildd.debian.org/status/fetch.php?pkg=pandas&arch=s390x&ver=0.13.0-2&stamp=1390095775&file=log
```
======================================================================
ERROR: test_flush (pandas.io.tests.test_pytables.TestHDFStore)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/«PKGBUILDDIR»/debian/tmp/usr/lib/python2.7/dist-packages/pandas/io/tests/test_pytables.py", line 523, in test_flush
store.flush(fsync=True)
File "/«PKGBUILDDIR»/debian/tmp/usr/lib/python2.7/dist-packages/pandas/io/pytables.py", line 571, in flush
os.fsync(self._handle.fileno())
ValueError: file descriptor cannot be a negative integer (-1)
```
may be due to a recent update to pytables 3.0.0-2
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/5999/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/5999/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/6000 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/6000/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/6000/comments | https://api.github.com/repos/pandas-dev/pandas/issues/6000/events | https://github.com/pandas-dev/pandas/issues/6000 | 25,878,197 | MDU6SXNzdWUyNTg3ODE5Nw== | 6,000 | DOC: reorganisation of the 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"
} | [
{
"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 | {
"avatar_url": "https://avatars.githubusercontent.com/u/10058240?v=4",
"events_url": "https://api.github.com/users/datapythonista/events{/privacy}",
"followers_url": "https://api.github.com/users/datapythonista/followers",
"following_url": "https://api.github.com/users/datapythonista/following{/other_user}",
"gists_url": "https://api.github.com/users/datapythonista/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/datapythonista",
"id": 10058240,
"login": "datapythonista",
"node_id": "MDQ6VXNlcjEwMDU4MjQw",
"organizations_url": "https://api.github.com/users/datapythonista/orgs",
"received_events_url": "https://api.github.com/users/datapythonista/received_events",
"repos_url": "https://api.github.com/users/datapythonista/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/datapythonista/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/datapythonista/subscriptions",
"type": "User",
"url": "https://api.github.com/users/datapythonista"
} | [
{
"avatar_url": "https://avatars.githubusercontent.com/u/10058240?v=4",
"events_url": "https://api.github.com/users/datapythonista/events{/privacy}",
"followers_url": "https://api.github.com/users/datapythonista/followers",
"following_url": "https://api.github.com/users/datapythonista/following{/other_user}",
"gists_url": "https://api.github.com/users/datapythonista/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/datapythonista",
"id": 10058240,
"login": "datapythonista",
"node_id": "MDQ6VXNlcjEwMDU4MjQw",
"organizations_url": "https://api.github.com/users/datapythonista/orgs",
"received_events_url": "https://api.github.com/users/datapythonista/received_events",
"repos_url": "https://api.github.com/users/datapythonista/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/datapythonista/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/datapythonista/subscriptions",
"type": "User",
"url": "https://api.github.com/users/datapythonista"
}
] | {
"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"
} | 7 | 2014-01-19T10:40:13Z | 2021-01-24T01:16:35Z | 2021-01-24T01:16:34Z | MEMBER | null | I think the documentation can use some reorganisation.
The current structure looks like this (updated with status of jan 2017):
```
What’s New
Installation
Contributing to pandas
Frequently Asked Questions (FAQ)
Package overview
10 Minutes to pandas
Tutorials
Cookbook
Intro to Data Structures
Essential Basic Functionality
Working with Text Data
Options and Settings
Indexing and Selecting Data
MultiIndex / Advanced Indexing
Computational tools
Working with missing data
Group By: split-apply-combine
Merge, join, and concatenate
Reshaping and Pivot Tables
Time Series / Date functionality
Time Deltas
Categorical Data
Visualization
Style
IO Tools (Text, CSV, HDF5, ...)
Remote Data Access
Enhancing Performance
Sparse data structures
Caveats and Gotchas
rpy2 / R interface
pandas Ecosystem
Comparison with R / R libraries
Comparison with SQL
Comparison with SAS
API Reference
Internals
Release Notes
```
which is a huge list that is somewhat unclear and difficult to navigate.
It is maybe also an issue that will have to go hand in hand with a better navigation provided in the html theme of the docs.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/6000/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/6000/timeline | null | null | null |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.