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
unknown | updated_at
unknown | closed_at
unknown | 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/1801 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1801/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1801/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1801/events | https://github.com/pandas-dev/pandas/issues/1801 | 6,378,193 | MDU6SXNzdWU2Mzc4MTkz | 1,801 | Confusing formatting after groupby | {
"avatar_url": "https://avatars.githubusercontent.com/u/1327168?v=4",
"events_url": "https://api.github.com/users/gerigk/events{/privacy}",
"followers_url": "https://api.github.com/users/gerigk/followers",
"following_url": "https://api.github.com/users/gerigk/following{/other_user}",
"gists_url": "https://api.github.com/users/gerigk/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/gerigk",
"id": 1327168,
"login": "gerigk",
"node_id": "MDQ6VXNlcjEzMjcxNjg=",
"organizations_url": "https://api.github.com/users/gerigk/orgs",
"received_events_url": "https://api.github.com/users/gerigk/received_events",
"repos_url": "https://api.github.com/users/gerigk/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/gerigk/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/gerigk/subscriptions",
"type": "User",
"url": "https://api.github.com/users/gerigk"
} | [
{
"color": "4E9A06",
"default": false,
"description": null,
"id": 76812,
"name": "Enhancement",
"node_id": "MDU6TGFiZWw3NjgxMg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Enhancement"
},
{
"color": "ededed",
"default": false,
"description": "__repr__ 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": null,
"closed_issues": 278,
"created_at": "2013-01-06T03:02:01Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "Milestone for filing things away that may be reached someday (at which point such issues should be moved to the appropriate release milestone)",
"due_on": "2022-12-31T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/20",
"id": 239227,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/20/labels",
"node_id": "MDk6TWlsZXN0b25lMjM5MjI3",
"number": 20,
"open_issues": 108,
"state": "open",
"title": "Someday",
"updated_at": "2021-08-08T01:48:22Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/20"
} | 5 | "2012-08-22T14:15:27Z" | "2014-05-29T08:18:35Z" | "2014-05-29T08:18:35Z" | NONE | null | ```
>>> import pandas as pd
>>> import numpy as np
>>> df = pd.DataFrame([(3,np.datetime64('2012-07-03')),(3,np.datetime64('2012-07-04'))], columns = ['a', 'date'])
>>> print df
a date
0 3 2012-07-03
1 3 2012-07-04
>>> print df.groupby('a').first()
date
a
3 2012-07-03 00:00:00
```
this looks as if I had a DataFrame with indices 'a' and 3 and a column date with values '' and a datetime.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1801/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1801/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1802 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1802/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1802/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1802/events | https://github.com/pandas-dev/pandas/issues/1802 | 6,379,431 | MDU6SXNzdWU2Mzc5NDMx | 1,802 | DatetimeIndex values returns the wrong values | {
"avatar_url": "https://avatars.githubusercontent.com/u/118600?v=4",
"events_url": "https://api.github.com/users/jacoblsmith/events{/privacy}",
"followers_url": "https://api.github.com/users/jacoblsmith/followers",
"following_url": "https://api.github.com/users/jacoblsmith/following{/other_user}",
"gists_url": "https://api.github.com/users/jacoblsmith/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jacoblsmith",
"id": 118600,
"login": "jacoblsmith",
"node_id": "MDQ6VXNlcjExODYwMA==",
"organizations_url": "https://api.github.com/users/jacoblsmith/orgs",
"received_events_url": "https://api.github.com/users/jacoblsmith/received_events",
"repos_url": "https://api.github.com/users/jacoblsmith/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jacoblsmith/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jacoblsmith/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jacoblsmith"
} | [] | closed | false | null | [] | null | 3 | "2012-08-22T14:59:57Z" | "2012-08-22T21:03:50Z" | "2012-08-22T21:03:50Z" | NONE | null | When I try to use the values method for a DatetimeIndex, I get the wrong values.
import pandas as pd
index = pd.date_range('2000-1-1',periods=24,freq='MS')
print 'Version:', pd.**version**
print '\nIndex:',index
print '\nValues:',index.values
print '\nReal Values:',[ i for i in index]
Version: 0.8.2.dev-c99d9cd
Index: <class 'pandas.tseries.index.DatetimeIndex'>
[2000-01-01 00:00:00, ..., 2001-12-01 00:00:00]
Length: 24, Freq: MS, Timezone: None
Values: [1970-01-11 184:00:00 1970-01-11 160:00:00 1970-01-12 152:00:00
1970-01-12 128:00:00 1970-01-12 80:00:00 1970-01-12 56:00:00
1970-01-12 08:00:00 1970-01-12 240:00:00 1970-01-12 216:00:00
1970-01-12 168:00:00 1970-01-12 144:00:00 1970-01-12 96:00:00
1970-01-12 72:00:00 1970-01-12 48:00:00 1970-01-12 208:00:00
1970-01-12 184:00:00 1970-01-12 136:00:00 1970-01-12 112:00:00
1970-01-12 64:00:00 1970-01-12 40:00:00 1970-01-12 16:00:00
1970-01-12 224:00:00 1970-01-12 200:00:00 1970-01-12 152:00:00]
Real Values: [<Timestamp: 2000-01-01 00:00:00>, <Timestamp: 2000-02-01 00:00:00>, <Timestamp: 2000-03-01 00:00:00>, <Timestamp: 2000-04-01 00:00:00>, <Timestamp: 2000-05-01 00:00:00>, <Timestamp: 2000-06-01 00:00:00>, <Timestamp: 2000-07-01 00:00:00>, <Timestamp: 2000-08-01 00:00:00>, <Timestamp: 2000-09-01 00:00:00>,<Timestamp: 2000-10-01 00:00:00>, <Timestamp: 2000-11-01 00:00:00>, <Timestamp:2000-12-01 00:00:00>, <Timestamp: 2001-01-01 00:00:00>, <Timestamp: 2001-02-01 00:00:00>, <Timestamp: 2001-03-01 00:00:00>, <Timestamp: 2001-04-01 00:00:00>, <Timestamp: 2001-05-01 00:00:00>, <Timestamp: 2001-06-01 00:00:00>, <Timestamp: 2001-07-01 00:00:00>, <Timestamp: 2001-08-01 00:00:00>, <Timestamp: 2001-09-01 00:00:00>, <Timestamp: 2001-10-01 00:00:00>, <Timestamp: 2001-11-01 00:00:00>, <Timestamp: 2001-12-01 00:00:00>]
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1802/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1802/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1803 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1803/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1803/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1803/events | https://github.com/pandas-dev/pandas/issues/1803 | 6,379,768 | MDU6SXNzdWU2Mzc5NzY4 | 1,803 | Can't assign to subsets of MultiIndex columns DataFrames using partial labels | {
"avatar_url": "https://avatars.githubusercontent.com/u/1284886?v=4",
"events_url": "https://api.github.com/users/sadruddin/events{/privacy}",
"followers_url": "https://api.github.com/users/sadruddin/followers",
"following_url": "https://api.github.com/users/sadruddin/following{/other_user}",
"gists_url": "https://api.github.com/users/sadruddin/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/sadruddin",
"id": 1284886,
"login": "sadruddin",
"node_id": "MDQ6VXNlcjEyODQ4ODY=",
"organizations_url": "https://api.github.com/users/sadruddin/orgs",
"received_events_url": "https://api.github.com/users/sadruddin/received_events",
"repos_url": "https://api.github.com/users/sadruddin/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/sadruddin/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/sadruddin/subscriptions",
"type": "User",
"url": "https://api.github.com/users/sadruddin"
} | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "0b02e1",
"default": false,
"description": "Related to indexing on series/frames, not to indexes themselves",
"id": 2822098,
"name": "Indexing",
"node_id": "MDU6TGFiZWwyODIyMDk4",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Indexing"
}
] | closed | false | null | [] | {
"closed_at": "2013-01-18T04:50:20Z",
"closed_issues": 276,
"created_at": "2012-06-27T14:43: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": "",
"due_on": "2012-12-08T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/14",
"id": 137852,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/14/labels",
"node_id": "MDk6TWlsZXN0b25lMTM3ODUy",
"number": 14,
"open_issues": 0,
"state": "closed",
"title": "0.10",
"updated_at": "2013-07-29T03:20:45Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/14"
} | 0 | "2012-08-22T15:12:03Z" | "2012-12-02T02:13:09Z" | "2012-12-02T02:13:09Z" | NONE | null | Assigning a value (scalar or Series) to the subset of a dataframe with MultiIndex columns addressed by a partial label doesn't work.
```
df = pandas.DataFrame(index=[1, 3, 5], columns=pandas.MultiIndex.from_tuples([('A', '1'), ('A', '2'), ('B', '1')]))
df['A'] = 0.0 # Doesn't work
df['A'] = df['B', '1'] # Works, but adds a column instead of updating the two existing ones
df2 = df.T.copy()
df2.ix['A'] = 0.0 # Works
df2.ix['A'] = df2['B', '1'] # Works
```
The same thing in the rows dimension works as expected.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1803/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1803/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1804 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1804/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1804/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1804/events | https://github.com/pandas-dev/pandas/pull/1804 | 6,383,399 | MDExOlB1bGxSZXF1ZXN0MjEyOTA2Nw== | 1,804 | Fix tostring unicode | {
"avatar_url": "https://avatars.githubusercontent.com/u/296164?v=4",
"events_url": "https://api.github.com/users/jseabold/events{/privacy}",
"followers_url": "https://api.github.com/users/jseabold/followers",
"following_url": "https://api.github.com/users/jseabold/following{/other_user}",
"gists_url": "https://api.github.com/users/jseabold/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jseabold",
"id": 296164,
"login": "jseabold",
"node_id": "MDQ6VXNlcjI5NjE2NA==",
"organizations_url": "https://api.github.com/users/jseabold/orgs",
"received_events_url": "https://api.github.com/users/jseabold/received_events",
"repos_url": "https://api.github.com/users/jseabold/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jseabold/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jseabold/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jseabold"
} | [] | closed | false | null | [] | {
"closed_at": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 1 | "2012-08-22T17:24:27Z" | "2014-07-17T13:49:12Z" | "2012-09-09T01:18:30Z" | CONTRIBUTOR | null | I'm not sure if this is perfect (or where else things like this might come up), but this fixes the failing test I added and the rest of the test suite passes. The issue arises when you give a string containing non-ascii characters. You have to decode to unicode (which I force to be utf-8...). I don't know the Python 3 issues, if any (it's in a Python 2 protected block of code). See issue #1620.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1804/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1804/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/1804.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/1804",
"merged_at": "2012-09-09T01:18:30Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/1804.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/1804"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/1805 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1805/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1805/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1805/events | https://github.com/pandas-dev/pandas/issues/1805 | 6,413,714 | MDU6SXNzdWU2NDEzNzE0 | 1,805 | Include .c files in repo. | {
"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": "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": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 7 | "2012-08-23T17:01:24Z" | "2012-09-08T02:29:14Z" | "2012-09-08T02:28:47Z" | CONTRIBUTOR | null | `pip install git+https://github.com/pydata/pandas.git`
does currently not work because the .pyx files are not being cythonized (not sure why). An easy fix is to include .c files in the git repo which should make it easier for people to deploy.
I used a simple try: import cython in setup.py that cythonizes if cython is installed and uses the .c files otherwise:
https://github.com/hddm-devs/hddm/blob/develop/setup.py#L4
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1805/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1805/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1806 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1806/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1806/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1806/events | https://github.com/pandas-dev/pandas/pull/1806 | 6,416,112 | MDExOlB1bGxSZXF1ZXN0MjE0NTU0Mg== | 1,806 | undo dumb setuptools bug clobbering .pyx sources back to .c | {
"avatar_url": "https://avatars.githubusercontent.com/u/151929?v=4",
"events_url": "https://api.github.com/users/minrk/events{/privacy}",
"followers_url": "https://api.github.com/users/minrk/followers",
"following_url": "https://api.github.com/users/minrk/following{/other_user}",
"gists_url": "https://api.github.com/users/minrk/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/minrk",
"id": 151929,
"login": "minrk",
"node_id": "MDQ6VXNlcjE1MTkyOQ==",
"organizations_url": "https://api.github.com/users/minrk/orgs",
"received_events_url": "https://api.github.com/users/minrk/received_events",
"repos_url": "https://api.github.com/users/minrk/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/minrk/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/minrk/subscriptions",
"type": "User",
"url": "https://api.github.com/users/minrk"
} | [] | closed | false | null | [] | {
"closed_at": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 1 | "2012-08-23T18:41:37Z" | "2014-08-16T08:35:40Z" | "2012-09-08T02:29:05Z" | CONTRIBUTOR | null | setuptools (not distribute) will replace '.pyx' extensions with '.c' if _pyrex_ is not importable. This checks if that happened, and reverses it if so.
closes #1805
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1806/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1806/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/1806.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/1806",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/1806.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/1806"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/1807 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1807/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1807/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1807/events | https://github.com/pandas-dev/pandas/issues/1807 | 6,418,582 | MDU6SXNzdWU2NDE4NTgy | 1,807 | Sort broken after unique -> Series with object array | {
"avatar_url": "https://avatars.githubusercontent.com/u/296164?v=4",
"events_url": "https://api.github.com/users/jseabold/events{/privacy}",
"followers_url": "https://api.github.com/users/jseabold/followers",
"following_url": "https://api.github.com/users/jseabold/following{/other_user}",
"gists_url": "https://api.github.com/users/jseabold/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jseabold",
"id": 296164,
"login": "jseabold",
"node_id": "MDQ6VXNlcjI5NjE2NA==",
"organizations_url": "https://api.github.com/users/jseabold/orgs",
"received_events_url": "https://api.github.com/users/jseabold/received_events",
"repos_url": "https://api.github.com/users/jseabold/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jseabold/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jseabold/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jseabold"
} | [
{
"color": "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 | [] | null | 4 | "2012-08-23T20:25:06Z" | "2012-09-04T02:17:27Z" | "2012-09-04T02:16:37Z" | CONTRIBUTOR | null | I have no idea why this fails.
```
pandas.Series(pandas.Series(["a","c","b"]).unique()).sort()
```
but this doesn't
```
pandas.Series(np.array(["a", "c", "b"], dtype=object)).sort()
```
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1807/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1807/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1808 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1808/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1808/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1808/events | https://github.com/pandas-dev/pandas/issues/1808 | 6,450,484 | MDU6SXNzdWU2NDUwNDg0 | 1,808 | Handling of lambda functions in list for resample | {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
} | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
}
] | closed | false | null | [] | {
"closed_at": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 0 | "2012-08-25T11:51:17Z" | "2012-09-09T18:25:19Z" | "2012-09-09T18:25:19Z" | MEMBER | null | DataFrame bad column name reported by user
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1808/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1808/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1809 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1809/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1809/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1809/events | https://github.com/pandas-dev/pandas/issues/1809 | 6,453,816 | MDU6SXNzdWU2NDUzODE2 | 1,809 | groupby().last() drops columns | {
"avatar_url": "https://avatars.githubusercontent.com/u/706653?v=4",
"events_url": "https://api.github.com/users/gtakacs/events{/privacy}",
"followers_url": "https://api.github.com/users/gtakacs/followers",
"following_url": "https://api.github.com/users/gtakacs/following{/other_user}",
"gists_url": "https://api.github.com/users/gtakacs/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/gtakacs",
"id": 706653,
"login": "gtakacs",
"node_id": "MDQ6VXNlcjcwNjY1Mw==",
"organizations_url": "https://api.github.com/users/gtakacs/orgs",
"received_events_url": "https://api.github.com/users/gtakacs/received_events",
"repos_url": "https://api.github.com/users/gtakacs/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/gtakacs/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/gtakacs/subscriptions",
"type": "User",
"url": "https://api.github.com/users/gtakacs"
} | [
{
"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": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 5 | "2012-08-25T19:06:50Z" | "2017-09-07T19:25:59Z" | "2012-09-20T03:12:48Z" | NONE | null | DataFrame.groupby().last() gives incorrect result in the following case (pandas version: 0.8.1):
```
df1 = DataFrame({"A": [1, 1], "B": [1, 1], "C": ["x", "y"]})
print df1.groupby("A").last()
# B
# A
#1 1
```
The integer column B is handled correctly, but the string column C is dropped.
The result is correct if column B is not present:
```
df2 = DataFrame({"A": [1, 1], "C": ["x", "y"]})
print df2.groupby("A").last()
# C
# A
#1 y
```
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1809/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1809/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1810 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1810/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1810/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1810/events | https://github.com/pandas-dev/pandas/issues/1810 | 6,453,879 | MDU6SXNzdWU2NDUzODc5 | 1,810 | Index.asof returns different types | {
"avatar_url": "https://avatars.githubusercontent.com/u/759245?v=4",
"events_url": "https://api.github.com/users/changhiskhan/events{/privacy}",
"followers_url": "https://api.github.com/users/changhiskhan/followers",
"following_url": "https://api.github.com/users/changhiskhan/following{/other_user}",
"gists_url": "https://api.github.com/users/changhiskhan/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/changhiskhan",
"id": 759245,
"login": "changhiskhan",
"node_id": "MDQ6VXNlcjc1OTI0NQ==",
"organizations_url": "https://api.github.com/users/changhiskhan/orgs",
"received_events_url": "https://api.github.com/users/changhiskhan/received_events",
"repos_url": "https://api.github.com/users/changhiskhan/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/changhiskhan/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/changhiskhan/subscriptions",
"type": "User",
"url": "https://api.github.com/users/changhiskhan"
} | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "AFEEEE",
"default": false,
"description": null,
"id": 211840,
"name": "Timeseries",
"node_id": "MDU6TGFiZWwyMTE4NDA=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Timeseries"
},
{
"color": "0b02e1",
"default": false,
"description": "Related to indexing on series/frames, not to indexes themselves",
"id": 2822098,
"name": "Indexing",
"node_id": "MDU6TGFiZWwyODIyMDk4",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Indexing"
}
] | closed | false | null | [] | {
"closed_at": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 1 | "2012-08-25T19:15:35Z" | "2012-09-18T02:46:30Z" | "2012-09-18T02:46:30Z" | CONTRIBUTOR | null | depending on whether the date exists or not:
In [42]: idx.asof(datetime(2008, 5, 2))
Out[42]: datetime.datetime(2008, 5, 2, 0, 0)
In [43]: idx.asof(datetime(2008, 5, 3))
Out[43]: <Timestamp: 2008-05-02 00:00:00>
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1810/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1810/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1811 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1811/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1811/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1811/events | https://github.com/pandas-dev/pandas/issues/1811 | 6,454,994 | MDU6SXNzdWU2NDU0OTk0 | 1,811 | aggregate by time | {
"avatar_url": "https://avatars.githubusercontent.com/u/562438?v=4",
"events_url": "https://api.github.com/users/saroele/events{/privacy}",
"followers_url": "https://api.github.com/users/saroele/followers",
"following_url": "https://api.github.com/users/saroele/following{/other_user}",
"gists_url": "https://api.github.com/users/saroele/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/saroele",
"id": 562438,
"login": "saroele",
"node_id": "MDQ6VXNlcjU2MjQzOA==",
"organizations_url": "https://api.github.com/users/saroele/orgs",
"received_events_url": "https://api.github.com/users/saroele/received_events",
"repos_url": "https://api.github.com/users/saroele/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/saroele/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/saroele/subscriptions",
"type": "User",
"url": "https://api.github.com/users/saroele"
} | [
{
"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": "AFEEEE",
"default": false,
"description": null,
"id": 211840,
"name": "Timeseries",
"node_id": "MDU6TGFiZWwyMTE4NDA=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Timeseries"
}
] | closed | false | null | [] | {
"closed_at": null,
"closed_issues": 278,
"created_at": "2013-01-06T03:02:01Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "Milestone for filing things away that may be reached someday (at which point such issues should be moved to the appropriate release milestone)",
"due_on": "2022-12-31T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/20",
"id": 239227,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/20/labels",
"node_id": "MDk6TWlsZXN0b25lMjM5MjI3",
"number": 20,
"open_issues": 108,
"state": "open",
"title": "Someday",
"updated_at": "2021-08-08T01:48:22Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/20"
} | 1 | "2012-08-25T22:17:03Z" | "2014-05-29T17:38:38Z" | "2014-05-29T17:38:38Z" | NONE | null | I wrote a function to aggregate data by time, for instance to get average profiles over a day or week if you have a yearly timeseries.
It's nothing highly complicated, most of the functionality is already in pandas. But as I could not figure out how to do it with the current API in a single line, I thought this function may be useful to add.
The function and some code to demonstrate it can be found here:
https://www.dropbox.com/s/wffzg11djtrdz23/aggregate_ts.py
Sorry I couldn't do this in the more professional way with a pull request. I hope this helps.
(Wes, you'll remember we discussed this very briefly on Euroscipy)
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1811/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1811/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1812 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1812/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1812/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1812/events | https://github.com/pandas-dev/pandas/issues/1812 | 6,457,466 | MDU6SXNzdWU2NDU3NDY2 | 1,812 | availability of nanosecond periods in DatetimeIndex | {
"avatar_url": "https://avatars.githubusercontent.com/u/563314?v=4",
"events_url": "https://api.github.com/users/wuan/events{/privacy}",
"followers_url": "https://api.github.com/users/wuan/followers",
"following_url": "https://api.github.com/users/wuan/following{/other_user}",
"gists_url": "https://api.github.com/users/wuan/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wuan",
"id": 563314,
"login": "wuan",
"node_id": "MDQ6VXNlcjU2MzMxNA==",
"organizations_url": "https://api.github.com/users/wuan/orgs",
"received_events_url": "https://api.github.com/users/wuan/received_events",
"repos_url": "https://api.github.com/users/wuan/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wuan/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wuan/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wuan"
} | [
{
"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": "AFEEEE",
"default": false,
"description": null,
"id": 211840,
"name": "Timeseries",
"node_id": "MDU6TGFiZWwyMTE4NDA=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Timeseries"
},
{
"color": "0052cc",
"default": false,
"description": "DateOffsets",
"id": 53181044,
"name": "Frequency",
"node_id": "MDU6TGFiZWw1MzE4MTA0NA==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Frequency"
}
] | closed | false | null | [] | {
"closed_at": "2013-12-30T19:53:14Z",
"closed_issues": 1076,
"created_at": "2012-11-15T23:33:37Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "RC1 ANN went out on 2013-12-6: https://groups.google.com/forum/#!topic/pydata/OHutLByJvK0\r\nTwo weeks, clear all reported bugs then call it on 2013-12-20. \r\n(@y-p)\r\n\r\nsince we've had some bugs reported at a high enough rate, extending rc by one\r\nweek until 2013-12-27. \r\n(@y-p)\r\n\r\nBumping to clear debian sparc\r\n2013-12-30. \r\n(@y-p)",
"due_on": "2013-12-30T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/18",
"id": 213925,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18/labels",
"node_id": "MDk6TWlsZXN0b25lMjEzOTI1",
"number": 18,
"open_issues": 0,
"state": "closed",
"title": "0.13",
"updated_at": "2017-07-22T19:00:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18"
} | 2 | "2012-08-26T09:08:20Z" | "2013-09-30T19:43:55Z" | "2013-09-30T19:43:55Z" | CONTRIBUTOR | null | Hi there,
when trying to create a DatetimeIndex for data sampled in the nanosecond range
``` python
pd.DatetimeIndex(start=pd.Timestamp('2012-12-01'), periods=10, freq=pd.offsets.Nano(2800))
```
there appears an error due to an uninitialized timestamp.
Inside the pandas code python datetime objects seem to be used for time representation of "slower" than nanosecond times, whereas the nanosecond period seems to appear as a simple int objects which cannot be handled by the internal arithmetics at the moment.
Is there a plan to switch to nanosecond aware time objects internally? As I would like to use this great library for fast data as well I can also offer to help working on that.
Best regards
Andreas
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1812/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1812/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1813 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1813/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1813/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1813/events | https://github.com/pandas-dev/pandas/issues/1813 | 6,457,993 | MDU6SXNzdWU2NDU3OTkz | 1,813 | Allow duplicate keys in set_index() | {
"avatar_url": "https://avatars.githubusercontent.com/u/2012248?v=4",
"events_url": "https://api.github.com/users/chuongdo/events{/privacy}",
"followers_url": "https://api.github.com/users/chuongdo/followers",
"following_url": "https://api.github.com/users/chuongdo/following{/other_user}",
"gists_url": "https://api.github.com/users/chuongdo/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/chuongdo",
"id": 2012248,
"login": "chuongdo",
"node_id": "MDQ6VXNlcjIwMTIyNDg=",
"organizations_url": "https://api.github.com/users/chuongdo/orgs",
"received_events_url": "https://api.github.com/users/chuongdo/received_events",
"repos_url": "https://api.github.com/users/chuongdo/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/chuongdo/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/chuongdo/subscriptions",
"type": "User",
"url": "https://api.github.com/users/chuongdo"
} | [] | closed | false | null | [] | null | 1 | "2012-08-26T11:08:30Z" | "2012-09-03T23:35:07Z" | "2012-09-03T23:35:07Z" | NONE | null | The set_index() method for a DataFrame checks for indices with duplicate keys, even though Pandas (version 0.7.0) is now supposed to allow duplicate keys. For example:
```
from pandas import *
x = [0, 0]
print DataFrame(dict(a=x, b=x), index=x)
print DataFrame(dict(a=x, b=x), index=x).set_index('a')
```
fails with
```
/usr/lib/pymodules/python2.7/pandas/core/frame.pyc in set_index(self, col_or_cols, drop, inplace, verify_integrity)
1925 if verify_integrity and not index._verify_integrity():
1926 duplicates = index.get_duplicates()
-> 1927 raise Exception('Index has duplicate keys: %s' % duplicates)
1928
1929 # clear up memory usage
Exception: Index has duplicate keys: [0]
```
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1813/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1813/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1814 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1814/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1814/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1814/events | https://github.com/pandas-dev/pandas/issues/1814 | 6,459,430 | MDU6SXNzdWU2NDU5NDMw | 1,814 | bool dataframe: df.shift fill rows with True instead of NaN like series.shift | {
"avatar_url": "https://avatars.githubusercontent.com/u/610115?v=4",
"events_url": "https://api.github.com/users/dalejung/events{/privacy}",
"followers_url": "https://api.github.com/users/dalejung/followers",
"following_url": "https://api.github.com/users/dalejung/following{/other_user}",
"gists_url": "https://api.github.com/users/dalejung/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/dalejung",
"id": 610115,
"login": "dalejung",
"node_id": "MDQ6VXNlcjYxMDExNQ==",
"organizations_url": "https://api.github.com/users/dalejung/orgs",
"received_events_url": "https://api.github.com/users/dalejung/received_events",
"repos_url": "https://api.github.com/users/dalejung/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/dalejung/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dalejung/subscriptions",
"type": "User",
"url": "https://api.github.com/users/dalejung"
} | [
{
"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": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 0 | "2012-08-26T15:27:20Z" | "2012-09-10T20:27:30Z" | "2012-09-10T20:27:30Z" | CONTRIBUTOR | null | ```
import pandas as pd
df = pd.DataFrame({'high':[True, False], 'low':[False, False]})
df.shift(1)
# high low
#0 True True
#1 True False
```
series.shift works as expected.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1814/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1814/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1815 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1815/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1815/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1815/events | https://github.com/pandas-dev/pandas/issues/1815 | 6,465,425 | MDU6SXNzdWU2NDY1NDI1 | 1,815 | concat() drops index when used on series with a PeriodIndex | {
"avatar_url": "https://avatars.githubusercontent.com/u/1887569?v=4",
"events_url": "https://api.github.com/users/jmloser/events{/privacy}",
"followers_url": "https://api.github.com/users/jmloser/followers",
"following_url": "https://api.github.com/users/jmloser/following{/other_user}",
"gists_url": "https://api.github.com/users/jmloser/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jmloser",
"id": 1887569,
"login": "jmloser",
"node_id": "MDQ6VXNlcjE4ODc1Njk=",
"organizations_url": "https://api.github.com/users/jmloser/orgs",
"received_events_url": "https://api.github.com/users/jmloser/received_events",
"repos_url": "https://api.github.com/users/jmloser/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jmloser/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jmloser/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jmloser"
} | [
{
"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": "02d7e1",
"default": false,
"description": "Concat, Merge/Join, Stack/Unstack, Explode",
"id": 13098779,
"name": "Reshaping",
"node_id": "MDU6TGFiZWwxMzA5ODc3OQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Reshaping"
}
] | closed | false | null | [] | {
"closed_at": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 1 | "2012-08-27T02:57:38Z" | "2012-09-10T23:06:39Z" | "2012-09-10T23:06:27Z" | NONE | null | New to this, sorry if I'm just missing something...
``` python
import numpy as np
import pandas as pd
d1 = pd.date_range('12/31/1990', '12/31/1999', freq='A-DEC')
d2 = pd.date_range('12/31/2000', '12/31/2009', freq='A-DEC')
s1 = pd.Series(np.random.randn(10), d1)
s2 = pd.Series(np.random.randn(10), d2)
# works
pd.concat([s1,s2])
s1 = s1.to_period()
s2 = s2.to_period()
# drops index
pd.concat([s1,s2])
# workaround
pd.concat([s1.to_timestamp(), s2.to_timestamp()]).to_period('A-DEC')
```
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1815/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1815/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1816 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1816/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1816/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1816/events | https://github.com/pandas-dev/pandas/issues/1816 | 6,470,470 | MDU6SXNzdWU2NDcwNDcw | 1,816 | read_csv(parse_dates=True) failure | {
"avatar_url": "https://avatars.githubusercontent.com/u/1094464?v=4",
"events_url": "https://api.github.com/users/lodagro/events{/privacy}",
"followers_url": "https://api.github.com/users/lodagro/followers",
"following_url": "https://api.github.com/users/lodagro/following{/other_user}",
"gists_url": "https://api.github.com/users/lodagro/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/lodagro",
"id": 1094464,
"login": "lodagro",
"node_id": "MDQ6VXNlcjEwOTQ0NjQ=",
"organizations_url": "https://api.github.com/users/lodagro/orgs",
"received_events_url": "https://api.github.com/users/lodagro/received_events",
"repos_url": "https://api.github.com/users/lodagro/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/lodagro/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/lodagro/subscriptions",
"type": "User",
"url": "https://api.github.com/users/lodagro"
} | [
{
"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": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 6 | "2012-08-27T10:18:50Z" | "2015-06-22T18:55:08Z" | "2012-09-10T16:19:16Z" | CONTRIBUTOR | null | from [stackoverflow](http://stackoverflow.com/questions/12138126/difference-between-parse-date-0-and-parse-date-true-in-pandas-read-csv)
``` python
import pandas as pd
from StringIO import StringIO
data = "date,c1\n2012-07-31 02:00,1.1\n2012-07-31 02:15,2.2\n2012-07-31 02:30,3.3\n"
df1 = pd.read_csv(StringIO(data),parse_dates=True).set_index(('date'))
df2 = pd.read_csv(StringIO(data),parse_dates=[0] ).set_index(('date'))
print "df1:\n{index}".format(index=df1.index)
print "df2:\n{index}".format(index=df2.index)
```
df1 has a index of 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/1816/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1816/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1817 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1817/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1817/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1817/events | https://github.com/pandas-dev/pandas/issues/1817 | 6,473,041 | MDU6SXNzdWU2NDczMDQx | 1,817 | Can't select columns in dataframe anymore | {
"avatar_url": "https://avatars.githubusercontent.com/u/1536838?v=4",
"events_url": "https://api.github.com/users/dennajort/events{/privacy}",
"followers_url": "https://api.github.com/users/dennajort/followers",
"following_url": "https://api.github.com/users/dennajort/following{/other_user}",
"gists_url": "https://api.github.com/users/dennajort/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/dennajort",
"id": 1536838,
"login": "dennajort",
"node_id": "MDQ6VXNlcjE1MzY4Mzg=",
"organizations_url": "https://api.github.com/users/dennajort/orgs",
"received_events_url": "https://api.github.com/users/dennajort/received_events",
"repos_url": "https://api.github.com/users/dennajort/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/dennajort/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dennajort/subscriptions",
"type": "User",
"url": "https://api.github.com/users/dennajort"
} | [] | closed | false | null | [] | null | 2 | "2012-08-27T13:03:40Z" | "2012-08-28T07:52:03Z" | "2012-08-28T07:52:03Z" | NONE | null | Since I updated my pandas lib, I can't do this anymore
```
db = pandas.HDFStore(path)
df = db.get('x')
df = df[['a', 'b', 'c']]
```
It throw me Exception('Reindexing only valid with uniquely valued Index objects',)
Mrknacky
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1817/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1817/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1818 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1818/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1818/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1818/events | https://github.com/pandas-dev/pandas/issues/1818 | 6,482,198 | MDU6SXNzdWU2NDgyMTk4 | 1,818 | Raise more helpfull exception on s.plot, df.plot ... without numerical data | {
"avatar_url": "https://avatars.githubusercontent.com/u/1094464?v=4",
"events_url": "https://api.github.com/users/lodagro/events{/privacy}",
"followers_url": "https://api.github.com/users/lodagro/followers",
"following_url": "https://api.github.com/users/lodagro/following{/other_user}",
"gists_url": "https://api.github.com/users/lodagro/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/lodagro",
"id": 1094464,
"login": "lodagro",
"node_id": "MDQ6VXNlcjEwOTQ0NjQ=",
"organizations_url": "https://api.github.com/users/lodagro/orgs",
"received_events_url": "https://api.github.com/users/lodagro/received_events",
"repos_url": "https://api.github.com/users/lodagro/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/lodagro/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/lodagro/subscriptions",
"type": "User",
"url": "https://api.github.com/users/lodagro"
} | [
{
"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": "8AE234",
"default": false,
"description": null,
"id": 2413328,
"name": "Visualization",
"node_id": "MDU6TGFiZWwyNDEzMzI4",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Visualization"
}
] | closed | false | null | [] | {
"closed_at": "2013-12-30T19:53:14Z",
"closed_issues": 1076,
"created_at": "2012-11-15T23:33:37Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "RC1 ANN went out on 2013-12-6: https://groups.google.com/forum/#!topic/pydata/OHutLByJvK0\r\nTwo weeks, clear all reported bugs then call it on 2013-12-20. \r\n(@y-p)\r\n\r\nsince we've had some bugs reported at a high enough rate, extending rc by one\r\nweek until 2013-12-27. \r\n(@y-p)\r\n\r\nBumping to clear debian sparc\r\n2013-12-30. \r\n(@y-p)",
"due_on": "2013-12-30T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/18",
"id": 213925,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18/labels",
"node_id": "MDk6TWlsZXN0b25lMjEzOTI1",
"number": 18,
"open_issues": 0,
"state": "closed",
"title": "0.13",
"updated_at": "2017-07-22T19:00:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18"
} | 2 | "2012-08-27T19:24:22Z" | "2013-12-04T00:57:58Z" | "2013-05-21T21:01:11Z" | CONTRIBUTOR | null | ``` python
In [23]: df1 = pandas.DataFrame(list('abcd'))
In [24]: df1.plot()
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
...
AttributeError: 'numpy.ndarray' object has no attribute 'find'
```
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1818/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1818/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1819 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1819/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1819/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1819/events | https://github.com/pandas-dev/pandas/issues/1819 | 6,500,368 | MDU6SXNzdWU2NTAwMzY4 | 1,819 | MySQLdb driver returns tuple instead of list and Pandas isn't happy about it | {
"avatar_url": "https://avatars.githubusercontent.com/u/121151?v=4",
"events_url": "https://api.github.com/users/dandye/events{/privacy}",
"followers_url": "https://api.github.com/users/dandye/followers",
"following_url": "https://api.github.com/users/dandye/following{/other_user}",
"gists_url": "https://api.github.com/users/dandye/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/dandye",
"id": 121151,
"login": "dandye",
"node_id": "MDQ6VXNlcjEyMTE1MQ==",
"organizations_url": "https://api.github.com/users/dandye/orgs",
"received_events_url": "https://api.github.com/users/dandye/received_events",
"repos_url": "https://api.github.com/users/dandye/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/dandye/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dandye/subscriptions",
"type": "User",
"url": "https://api.github.com/users/dandye"
} | [] | closed | false | null | [] | null | 3 | "2012-08-28T14:35:35Z" | "2012-08-29T12:21:05Z" | "2012-08-28T20:13:10Z" | NONE | null | The MySQLdb driver returns rows as tuples instead of lists and Pandas isn't happy about it:
> > > sql.read_frame("select token,status FROM purchases WHERE purchases.created_at > '2012-08-26 00:00:00' ", conn)
> > > Traceback (most recent call last):
> > > File "<stdin>", line 1, in <module>
> > > File "C:\Python27\lib\site-packages\pandas\io\sql.py", line 140, in read_frame
> > > coerce_float=coerce_float)
> > > File "C:\Python27\lib\site-packages\pandas\core\frame.py", line 714, in from_records
> > > coerce_float=coerce_float)
> > > File "C:\Python27\lib\site-packages\pandas\core\frame.py", line 4078, in _to_sdict
> > > return _list_to_sdict(data, columns, coerce_float=coerce_float)
> > > File "C:\Python27\lib\site-packages\pandas\core\frame.py", line 4091, in _list_to_sdict
> > > content = list(lib.to_object_array_tuples(data).T)
> > > File "inference.pyx", line 511, in pandas._tseries.to_object_array_tuples (pandas\src\tseries.c:79688)
> > > TypeError: Argument 'rows' has incorrect type (expected list, got tuple)
I confirmed that Listifying the rows fixes the issue:
```
cursor, conn = connex.get_connex()
cursor.execute("""
SELECT token,status
FROM purchases
WHERE purchases.created_at > '2012-08-26 00:00:00' """)
rows = cursor.fetchall()
lrows = []
for row in rows:
lrows.append(list(row))
colnames = tuple([desc[0] for desc in cursor.description])
df = DataFrame(lrows,columns=colnames) # this works
```
Also, calling the DataFrame constructor with the Tuple rows raises an error that isn't very informative:
`>>> df = DataFrame(rows,columns=colnames)`
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Python27\lib\site-packages\pandas\core\frame.py", line 337, in **init**
raise PandasError('DataFrame constructor not properly called!')
pandas.core.common.PandasError: DataFrame constructor not properly called!
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1819/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1819/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1820 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1820/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1820/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1820/events | https://github.com/pandas-dev/pandas/issues/1820 | 6,503,483 | MDU6SXNzdWU2NTAzNDgz | 1,820 | Unstacking boolean DataFrame fills 'True' for missing values | {
"avatar_url": "https://avatars.githubusercontent.com/u/1953260?v=4",
"events_url": "https://api.github.com/users/warrenwjackson/events{/privacy}",
"followers_url": "https://api.github.com/users/warrenwjackson/followers",
"following_url": "https://api.github.com/users/warrenwjackson/following{/other_user}",
"gists_url": "https://api.github.com/users/warrenwjackson/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/warrenwjackson",
"id": 1953260,
"login": "warrenwjackson",
"node_id": "MDQ6VXNlcjE5NTMyNjA=",
"organizations_url": "https://api.github.com/users/warrenwjackson/orgs",
"received_events_url": "https://api.github.com/users/warrenwjackson/received_events",
"repos_url": "https://api.github.com/users/warrenwjackson/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/warrenwjackson/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/warrenwjackson/subscriptions",
"type": "User",
"url": "https://api.github.com/users/warrenwjackson"
} | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "02d7e1",
"default": false,
"description": "Concat, Merge/Join, Stack/Unstack, Explode",
"id": 13098779,
"name": "Reshaping",
"node_id": "MDU6TGFiZWwxMzA5ODc3OQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Reshaping"
}
] | closed | false | null | [] | {
"closed_at": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 1 | "2012-08-28T16:25:00Z" | "2012-09-10T19:59:55Z" | "2012-09-10T19:59:55Z" | NONE | null | Is this a bug? If this is intentional, it is pretty dangerous to fill missing values with `True`.
```
>>> df = pd.DataFrame([False, False], index=pd.MultiIndex.from_arrays([['a', 'b'], ['c', 'l']]), columns=['col'])
>>> df
col
a c False
b l False
>>> df.unstack()
col
c l
a False True
b True False
```
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1820/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1820/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1821 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1821/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1821/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1821/events | https://github.com/pandas-dev/pandas/issues/1821 | 6,509,487 | MDU6SXNzdWU2NTA5NDg3 | 1,821 | DatetimeIndex, df.ix[date] and df.ix[[date]] failure | {
"avatar_url": "https://avatars.githubusercontent.com/u/1094464?v=4",
"events_url": "https://api.github.com/users/lodagro/events{/privacy}",
"followers_url": "https://api.github.com/users/lodagro/followers",
"following_url": "https://api.github.com/users/lodagro/following{/other_user}",
"gists_url": "https://api.github.com/users/lodagro/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/lodagro",
"id": 1094464,
"login": "lodagro",
"node_id": "MDQ6VXNlcjEwOTQ0NjQ=",
"organizations_url": "https://api.github.com/users/lodagro/orgs",
"received_events_url": "https://api.github.com/users/lodagro/received_events",
"repos_url": "https://api.github.com/users/lodagro/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/lodagro/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/lodagro/subscriptions",
"type": "User",
"url": "https://api.github.com/users/lodagro"
} | [
{
"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 | {
"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"
} | [
{
"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"
}
] | {
"closed_at": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 1 | "2012-08-28T20:28:40Z" | "2012-09-18T21:09:31Z" | "2012-09-18T21:09:23Z" | CONTRIBUTOR | null | from [stackoverflow](http://stackoverflow.com/questions/11991627/selecting-a-subset-of-a-pandas-dataframe-indexed-by-datetimeindex-with-a-list-of)
The original frame can not be shared, but following code reproduces the issue.
``` python
import pandas
import numpy as np
import datetime
# create large list of non periodic datetime
dates = []
sec = datetime.timedelta(seconds=1)
half_sec = sec / 2
d = datetime.datetime(2011, 12, 5, 20, 30)
n = 100000
for i in range(n):
dates.append(d)
dates.append(d + sec)
dates.append(d + sec + half_sec)
dates.append(d + sec + sec + half_sec)
d += 3 * sec
# duplicate some values in the list
duplicate_positions = np.random.randint(0, len(dates) - 1, 20)
for p in duplicate_positions:
dates[p + 1] = dates[p]
print "duplicated values at %s" % str(duplicate_positions)
df = pandas.DataFrame(np.random.randn(len(dates), 4),
index=dates,
columns=list('ABCD'))
pos = n * 3
timestamp = df.index[pos]
print "timestamp = df.index[%d] = %s" % (pos, str(timestamp))
print "timestamp in index? %s" % str(timestamp in df.index)
print "df.ix[timestamp] = \n%s" % str(df.ix[timestamp])
print "df.ix[[timestamp]] = \n%s" % str(df.ix[[timestamp]])
```
running this script outputs:
```
duplicated values at [143779 365504 338898 192427 63827 333772 366805 378282 375136 77760
59843 215934 173395 185449 310734 184004 48594 221298 348967 86615]
timestamp = df.index[300000] = 2011-12-08 11:00:00
timestamp in index? True
df.ix[timestamp] =
A 0.959639
B 0.651874
C 1.059355
D -1.296393
Name: 2011-12-08 11:00:00
df.ix[[timestamp]] =
Empty DataFrame
Columns: array([A, B, C, D], dtype=object)
Index: <class 'pandas.tseries.index.DatetimeIndex'>
Length: 0, Freq: None, Timezone: None
```
for n = 1000000 it gets worse
``` python
duplicated values at [ 686452 3862593 3747433 63099 2422495 2191536 486238 1632442 2373460
3266942 3127937 2538658 1405505 739509 1519644 2817907 1005119 755410
1784244 86211]
timestamp = df.index[3000000] = 2011-12-31 21:30:00
timestamp in index? False
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
...
TypeError: Cannot compare Timestamp with 1326116999500000000
```
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1821/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1821/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1822 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1822/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1822/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1822/events | https://github.com/pandas-dev/pandas/issues/1822 | 6,537,203 | MDU6SXNzdWU2NTM3MjAz | 1,822 | Long variable names table formatting in ols | {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
} | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
}
] | closed | false | null | [] | {
"closed_at": null,
"closed_issues": 278,
"created_at": "2013-01-06T03:02:01Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "Milestone for filing things away that may be reached someday (at which point such issues should be moved to the appropriate release milestone)",
"due_on": "2022-12-31T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/20",
"id": 239227,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/20/labels",
"node_id": "MDk6TWlsZXN0b25lMjM5MjI3",
"number": 20,
"open_issues": 108,
"state": "open",
"title": "Someday",
"updated_at": "2021-08-08T01:48:22Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/20"
} | 2 | "2012-08-29T20:03:30Z" | "2016-02-23T00:57:55Z" | "2016-02-23T00:57:55Z" | MEMBER | null | ```
Running pd.ols from pandas 0.8.1, I get misaligned output when some of my variable names are long. For example:
[...]
-----------------------Summary of Estimated Coefficients------------------------
Variable Coef Std Err t-stat p-value CI 2.5% CI 97.5%
--------------------------------------------------------------------------------
provision_alll_ratio 0.8377 0.0030 281.62 0.0000 0.8319 0.8436
lead_1_provision_alll_ratio 0.0322 0.0033 9.70 0.0000 0.0257 0.0387
lead_2_provision_alll_ratio 0.0332 0.0033 10.02 0.0000 0.0267 0.0397
lead_3_provision_alll_ratio 0.0245 0.0033 7.39 0.0000 0.0180 0.0310
lead_4_provision_alll_ratio 0.0119 0.0030 4.00 0.0001 0.0061 0.0177
--------------------------------------------------------------------------------
intercept -0.0005 0.0000 -28.57 0.0000 -0.0005 -0.0004
---------------------------------End of Summary---------------------------------
Is there a way to make the first output field long enough to fit the longest variable name?
Thanks,
Richard Stanton
```
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1822/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1822/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1823 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1823/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1823/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1823/events | https://github.com/pandas-dev/pandas/issues/1823 | 6,538,933 | MDU6SXNzdWU2NTM4OTMz | 1,823 | Panel truncate failure | {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
} | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
}
] | closed | false | null | [] | {
"closed_at": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 0 | "2012-08-29T21:13:23Z" | "2012-09-09T03:07:58Z" | "2012-09-09T03:07:58Z" | MEMBER | null | user reported this error (may be for all panels)
```
panel.truncate(before=None, after=None,
axis=’items’).fillna(value=0.0) will fail with an AssertionError
The failure path is pretty narrow. If ‘before’ or ‘after’ is
binding, it won’t fail. If the axis is ‘major’ or ‘minor’ it
won’t fail. If fillna method is ‘pad’, it won’t fail. So, it
seems to be just this pretty narrow set of parameter values that
causes a problem (i.e. reindexing the items of a Panel that
results in no change to the Index).
```
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1823/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1823/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1824 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1824/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1824/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1824/events | https://github.com/pandas-dev/pandas/issues/1824 | 6,540,709 | MDU6SXNzdWU2NTQwNzA5 | 1,824 | HDFStore format of very long DataFrames | {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
} | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "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": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 1 | "2012-08-29T22:37:44Z" | "2012-09-09T01:04:55Z" | "2012-09-09T01:04:55Z" | MEMBER | null | http://stackoverflow.com/questions/12053003/pandas-pytables-warnings-and-slow-performance
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1824/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1824/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1825 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1825/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1825/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1825/events | https://github.com/pandas-dev/pandas/issues/1825 | 6,542,007 | MDU6SXNzdWU2NTQyMDA3 | 1,825 | Test datetime64 conversion in from_records error | {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
} | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "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 | {
"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"
} | [
{
"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"
}
] | {
"closed_at": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 0 | "2012-08-30T00:02:04Z" | "2012-09-10T22:36:39Z" | "2012-09-10T22:36:39Z" | MEMBER | null | http://stackoverflow.com/questions/11945897/python-pandas-0-81-dataframe-from-records-convert-django-datetime-to-datetime
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1825/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1825/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1826 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1826/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1826/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1826/events | https://github.com/pandas-dev/pandas/issues/1826 | 6,542,945 | MDU6SXNzdWU2NTQyOTQ1 | 1,826 | Better error message in Panel.__setitem__ for TypeError | {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
} | [
{
"color": "4E9A06",
"default": false,
"description": null,
"id": 76812,
"name": "Enhancement",
"node_id": "MDU6TGFiZWw3NjgxMg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Enhancement"
}
] | closed | false | null | [] | {
"closed_at": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 0 | "2012-08-30T01:14:01Z" | "2012-09-09T03:40:45Z" | "2012-09-09T03:40:45Z" | MEMBER | null | `else` case never handled; can least to unboundlocalerror
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1826/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1826/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1827 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1827/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1827/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1827/events | https://github.com/pandas-dev/pandas/issues/1827 | 6,560,434 | MDU6SXNzdWU2NTYwNDM0 | 1,827 | WEB DOC: 'Not Interpolated' and 'Interpolated' plots on http://pandas.pydata.org/pandas-docs/stable/missing_data.html | {
"avatar_url": "https://avatars.githubusercontent.com/u/297142?v=4",
"events_url": "https://api.github.com/users/timcera/events{/privacy}",
"followers_url": "https://api.github.com/users/timcera/followers",
"following_url": "https://api.github.com/users/timcera/following{/other_user}",
"gists_url": "https://api.github.com/users/timcera/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/timcera",
"id": 297142,
"login": "timcera",
"node_id": "MDQ6VXNlcjI5NzE0Mg==",
"organizations_url": "https://api.github.com/users/timcera/orgs",
"received_events_url": "https://api.github.com/users/timcera/received_events",
"repos_url": "https://api.github.com/users/timcera/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/timcera/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/timcera/subscriptions",
"type": "User",
"url": "https://api.github.com/users/timcera"
} | [
{
"color": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
}
] | closed | false | null | [] | null | 1 | "2012-08-30T18:01:58Z" | "2012-08-30T21:04:44Z" | "2012-08-30T21:04:44Z" | CONTRIBUTOR | null | The 'Not Interpolated' and 'Interpolated' plots on http://pandas.pydata.org/pandas-docs/stable/missing_data.html appear identical. Suspect that the 'Not Interpolated' should have gaps?
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1827/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1827/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1828 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1828/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1828/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1828/events | https://github.com/pandas-dev/pandas/issues/1828 | 6,561,447 | MDU6SXNzdWU2NTYxNDQ3 | 1,828 | to_excel() fails if unicode sheet name is used | {
"avatar_url": "https://avatars.githubusercontent.com/u/25192?v=4",
"events_url": "https://api.github.com/users/lbeltrame/events{/privacy}",
"followers_url": "https://api.github.com/users/lbeltrame/followers",
"following_url": "https://api.github.com/users/lbeltrame/following{/other_user}",
"gists_url": "https://api.github.com/users/lbeltrame/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/lbeltrame",
"id": 25192,
"login": "lbeltrame",
"node_id": "MDQ6VXNlcjI1MTky",
"organizations_url": "https://api.github.com/users/lbeltrame/orgs",
"received_events_url": "https://api.github.com/users/lbeltrame/received_events",
"repos_url": "https://api.github.com/users/lbeltrame/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/lbeltrame/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/lbeltrame/subscriptions",
"type": "User",
"url": "https://api.github.com/users/lbeltrame"
} | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "06909A",
"default": false,
"description": "IO issues that don't fit into a more specific label",
"id": 2301354,
"name": "IO Data",
"node_id": "MDU6TGFiZWwyMzAxMzU0",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20Data"
},
{
"color": "444444",
"default": false,
"description": "Unicode strings",
"id": 36380025,
"name": "Unicode",
"node_id": "MDU6TGFiZWwzNjM4MDAyNQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Unicode"
}
] | closed | false | null | [] | {
"closed_at": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 5 | "2012-08-30T18:44:07Z" | "2016-10-12T23:03:10Z" | "2012-09-13T01:50:47Z" | CONTRIBUTOR | null | Like the subject says, the check in DataFrame.to_excel() checks for an instance of str, rather than basestring, hence unicode names skip the if check and are treated like files, which causes an exception later on in the code. Changing isistance() to check for basestring rather than str fixes the issue.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1828/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1828/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1829 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1829/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1829/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1829/events | https://github.com/pandas-dev/pandas/issues/1829 | 6,563,588 | MDU6SXNzdWU2NTYzNTg4 | 1,829 | Add args/kwds arguments to Series.apply(), like for DataFrame.apply() | {
"avatar_url": "https://avatars.githubusercontent.com/u/1094464?v=4",
"events_url": "https://api.github.com/users/lodagro/events{/privacy}",
"followers_url": "https://api.github.com/users/lodagro/followers",
"following_url": "https://api.github.com/users/lodagro/following{/other_user}",
"gists_url": "https://api.github.com/users/lodagro/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/lodagro",
"id": 1094464,
"login": "lodagro",
"node_id": "MDQ6VXNlcjEwOTQ0NjQ=",
"organizations_url": "https://api.github.com/users/lodagro/orgs",
"received_events_url": "https://api.github.com/users/lodagro/received_events",
"repos_url": "https://api.github.com/users/lodagro/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/lodagro/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/lodagro/subscriptions",
"type": "User",
"url": "https://api.github.com/users/lodagro"
} | [
{
"color": "4E9A06",
"default": false,
"description": null,
"id": 76812,
"name": "Enhancement",
"node_id": "MDU6TGFiZWw3NjgxMg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Enhancement"
}
] | closed | false | null | [] | {
"closed_at": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 0 | "2012-08-30T20:10:48Z" | "2012-09-08T02:48:26Z" | "2012-09-08T02:48:26Z" | 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/1829/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1829/timeline | null | null | null |
|
https://api.github.com/repos/pandas-dev/pandas/issues/1830 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1830/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1830/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1830/events | https://github.com/pandas-dev/pandas/issues/1830 | 6,571,499 | MDU6SXNzdWU2NTcxNDk5 | 1,830 | Period Indexing Bug | {
"avatar_url": "https://avatars.githubusercontent.com/u/759245?v=4",
"events_url": "https://api.github.com/users/changhiskhan/events{/privacy}",
"followers_url": "https://api.github.com/users/changhiskhan/followers",
"following_url": "https://api.github.com/users/changhiskhan/following{/other_user}",
"gists_url": "https://api.github.com/users/changhiskhan/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/changhiskhan",
"id": 759245,
"login": "changhiskhan",
"node_id": "MDQ6VXNlcjc1OTI0NQ==",
"organizations_url": "https://api.github.com/users/changhiskhan/orgs",
"received_events_url": "https://api.github.com/users/changhiskhan/received_events",
"repos_url": "https://api.github.com/users/changhiskhan/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/changhiskhan/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/changhiskhan/subscriptions",
"type": "User",
"url": "https://api.github.com/users/changhiskhan"
} | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "AFEEEE",
"default": false,
"description": null,
"id": 211840,
"name": "Timeseries",
"node_id": "MDU6TGFiZWwyMTE4NDA=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Timeseries"
},
{
"color": "0b02e1",
"default": false,
"description": "Related to indexing on series/frames, not to indexes themselves",
"id": 2822098,
"name": "Indexing",
"node_id": "MDU6TGFiZWwyODIyMDk4",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Indexing"
}
] | closed | false | null | [] | {
"closed_at": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 1 | "2012-08-31T05:32:59Z" | "2012-09-10T12:49:00Z" | "2012-09-10T12:49:00Z" | CONTRIBUTOR | null | From mailing list:
In [82]: df
Out[82]:
data
1971 2
1972 3
1973 4
In [83]: df.ix[Period(1971)]
Out[83]:
data 3
Name: 1972
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1830/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1830/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1831 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1831/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1831/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1831/events | https://github.com/pandas-dev/pandas/issues/1831 | 6,582,357 | MDU6SXNzdWU2NTgyMzU3 | 1,831 | set_index drops data in the presence of duplicates when inplace=True and verify_integrity=True | {
"avatar_url": "https://avatars.githubusercontent.com/u/652285?v=4",
"events_url": "https://api.github.com/users/snth/events{/privacy}",
"followers_url": "https://api.github.com/users/snth/followers",
"following_url": "https://api.github.com/users/snth/following{/other_user}",
"gists_url": "https://api.github.com/users/snth/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/snth",
"id": 652285,
"login": "snth",
"node_id": "MDQ6VXNlcjY1MjI4NQ==",
"organizations_url": "https://api.github.com/users/snth/orgs",
"received_events_url": "https://api.github.com/users/snth/received_events",
"repos_url": "https://api.github.com/users/snth/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/snth/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/snth/subscriptions",
"type": "User",
"url": "https://api.github.com/users/snth"
} | [
{
"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": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 0 | "2012-08-31T15:52:45Z" | "2012-09-10T17:48:43Z" | "2012-09-10T17:48:43Z" | CONTRIBUTOR | null | When calling set_index on an index with duplicates, the verify_integrity=True option correctly identifies the duplicates but this check appears to take place after the original columns have already been dropped when inplace=True is also passed. This results in data being lost.
I believe it would be better if the original DataFrame object was only modified in the case that the set_index operation is successful.
Code to reproduce the problem:
``` python
In [189]: df = DataFrame({'one':[1, 1, 2], 'two':[1,2,3]})
In [190]: df
Out[190]:
one two
0 1 1
1 1 2
2 2 3
In [191]: df.set_index(['one'], inplace=True, verify_integrity=True)
---------------------------------------------------------------------------
Exception Traceback (most recent call last)
/mnt/hgfs/fastdata/<ipython-input-191-e1c0e8c92f6c> in <module>()
----> 1 df.set_index(['one'], inplace=True, verify_integrity=True)
/home/tobias/code/envs/mac/local/lib/python2.7/site-packages/pandas/core/frame.pyc in set_index(self, keys, drop, append, inplace, verify_integrity)
2328 if verify_integrity and not index.is_unique:
2329 duplicates = index.get_duplicates()
-> 2330 raise Exception('Index has duplicate keys: %s' % duplicates)
2331
2332 # clear up memory usage
Exception: Index has duplicate keys: [1]
In [192]: df
Out[192]:
two
0 1
1 2
2 3
In [202]: print sys.version
2.7.3 (default, Aug 1 2012, 05:14:39)
[GCC 4.6.3]
In [203]: print pd.version.version
0.8.1
In [204]:
```
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1831/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1831/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1832 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1832/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1832/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1832/events | https://github.com/pandas-dev/pandas/pull/1832 | 6,603,563 | MDExOlB1bGxSZXF1ZXN0MjIyNzEwNA== | 1,832 | print exception when importing pandas.lib | {
"avatar_url": "https://avatars.githubusercontent.com/u/2163686?v=4",
"events_url": "https://api.github.com/users/gideonite/events{/privacy}",
"followers_url": "https://api.github.com/users/gideonite/followers",
"following_url": "https://api.github.com/users/gideonite/following{/other_user}",
"gists_url": "https://api.github.com/users/gideonite/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/gideonite",
"id": 2163686,
"login": "gideonite",
"node_id": "MDQ6VXNlcjIxNjM2ODY=",
"organizations_url": "https://api.github.com/users/gideonite/orgs",
"received_events_url": "https://api.github.com/users/gideonite/received_events",
"repos_url": "https://api.github.com/users/gideonite/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/gideonite/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/gideonite/subscriptions",
"type": "User",
"url": "https://api.github.com/users/gideonite"
} | [] | closed | false | null | [] | {
"closed_at": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 1 | "2012-09-02T16:03:16Z" | "2014-07-22T20:27:46Z" | "2012-09-08T02:42:04Z" | NONE | null | I was trying to install pandas and kept getting the error:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/Library/Python/2.7/site-packages/pandas/**init**.py", line 16, in <module>
raise ImportError('C extensions not built: if you installed already '
ImportError: C extensions not built: if you installed already verify that you are not importing from the source directory
I couldn't figure out what was happening until I made this change and saw from the printed out exception that I didn't have the dateutils package 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/1832/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1832/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/1832.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/1832",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/1832.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/1832"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/1833 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1833/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1833/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1833/events | https://github.com/pandas-dev/pandas/issues/1833 | 6,613,588 | MDU6SXNzdWU2NjEzNTg4 | 1,833 | Bug in DataFrame.duplicated() when dealing with datetime64 | {
"avatar_url": "https://avatars.githubusercontent.com/u/652285?v=4",
"events_url": "https://api.github.com/users/snth/events{/privacy}",
"followers_url": "https://api.github.com/users/snth/followers",
"following_url": "https://api.github.com/users/snth/following{/other_user}",
"gists_url": "https://api.github.com/users/snth/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/snth",
"id": 652285,
"login": "snth",
"node_id": "MDQ6VXNlcjY1MjI4NQ==",
"organizations_url": "https://api.github.com/users/snth/orgs",
"received_events_url": "https://api.github.com/users/snth/received_events",
"repos_url": "https://api.github.com/users/snth/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/snth/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/snth/subscriptions",
"type": "User",
"url": "https://api.github.com/users/snth"
} | [
{
"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": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 1 | "2012-09-03T11:07:26Z" | "2013-12-04T00:47:26Z" | "2012-09-09T01:33:37Z" | CONTRIBUTOR | null | The following looks like a bug to me as DataFrame.duplicated() gives different results on what should be identical inputs. To me it looks like the problem is with the datetime64 values because if you look at the output of `dates.values` it's clear that the last 4 values are duplicates.
Please see the code below that reproduces the problem:
``` python
In [701]: dates = date_range('2010-07-01', end='2010-08-05')
In [702]: tst = DataFrame({'symbol': 'AAA', 'date': dates})
In [703]: tst.tail()
Out[703]:
date symbol
31 2010-08-01 00:00:00 AAA
32 2010-08-02 00:00:00 AAA
33 2010-08-03 00:00:00 AAA
34 2010-08-04 00:00:00 AAA
35 2010-08-05 00:00:00 AAA
In [704]: tst.duplicated().tail()
Out[704]:
31 False
32 False
33 False
34 False
35 False
In [705]: tst.duplicated(['date', 'symbol']).tail()
Out[705]:
31 False
32 True
33 True
34 True
35 True
In [706]: dates.values
Out[706]:
array([1970-01-15 40:00:00, 1970-01-15 64:00:00, 1970-01-15 88:00:00,
1970-01-15 112:00:00, 1970-01-15 136:00:00, 1970-01-15 160:00:00,
1970-01-15 184:00:00, 1970-01-15 208:00:00, 1970-01-15 232:00:00,
1970-01-15 00:00:00, 1970-01-15 24:00:00, 1970-01-15 48:00:00,
1970-01-15 72:00:00, 1970-01-15 96:00:00, 1970-01-15 120:00:00,
1970-01-15 144:00:00, 1970-01-15 168:00:00, 1970-01-15 192:00:00,
1970-01-15 216:00:00, 1970-01-15 240:00:00, 1970-01-15 08:00:00,
1970-01-15 32:00:00, 1970-01-15 56:00:00, 1970-01-15 80:00:00,
1970-01-15 104:00:00, 1970-01-15 128:00:00, 1970-01-15 152:00:00,
1970-01-15 176:00:00, 1970-01-15 200:00:00, 1970-01-15 224:00:00,
1970-01-15 248:00:00, 1970-01-15 16:00:00, 1970-01-15 40:00:00,
1970-01-15 64:00:00, 1970-01-15 88:00:00, 1970-01-15 112:00:00], dtype=datetime64[ns])
In [707]: dates
Out[707]:
<class 'pandas.tseries.index.DatetimeIndex'>
[2010-07-01 00:00:00, ..., 2010-08-05 00:00:00]
Length: 36, Freq: D, Timezone: None
In [708]: dates.dtype
Out[708]: dtype('datetime64[ns]')
In [709]: dates.values.dtype
Out[709]: dtype('datetime64[ns]')
In [710]: sys.version
Out[710]: '2.7.3 (default, Aug 1 2012, 05:14:39) \n[GCC 4.6.3]'
In [711]: np.version.version
Out[711]: '1.6.1'
In [713]: pd.version.version
Out[713]: '0.8.1'
In [714]:
```
I remember reading somewhere that there are problems with datetime64 in numpy 1.6 but I don't understand what coercions are taking place behind the scenes. Also, if someone could please explain to me why the dates in `dates.values` above are wrong and how to avoid this, I would appreciate it.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1833/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1833/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1834 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1834/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1834/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1834/events | https://github.com/pandas-dev/pandas/pull/1834 | 6,621,037 | MDExOlB1bGxSZXF1ZXN0MjIzMzkyMg== | 1,834 | fixed row/col orientation for 2D arrays | {
"avatar_url": "https://avatars.githubusercontent.com/u/1867189?v=4",
"events_url": "https://api.github.com/users/John-Colvin/events{/privacy}",
"followers_url": "https://api.github.com/users/John-Colvin/followers",
"following_url": "https://api.github.com/users/John-Colvin/following{/other_user}",
"gists_url": "https://api.github.com/users/John-Colvin/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/John-Colvin",
"id": 1867189,
"login": "John-Colvin",
"node_id": "MDQ6VXNlcjE4NjcxODk=",
"organizations_url": "https://api.github.com/users/John-Colvin/orgs",
"received_events_url": "https://api.github.com/users/John-Colvin/received_events",
"repos_url": "https://api.github.com/users/John-Colvin/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/John-Colvin/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/John-Colvin/subscriptions",
"type": "User",
"url": "https://api.github.com/users/John-Colvin"
} | [] | closed | false | null | [] | {
"closed_at": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 5 | "2012-09-03T18:55:21Z" | "2014-06-13T02:22:47Z" | "2012-09-09T01:03:04Z" | CONTRIBUTOR | null | Pytables uses the opposite convention to pandas for row/col. Using the numpy transpose .T corrects for this without copying the data and keeping the orientation of 1D arrays intact.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1834/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1834/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/1834.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/1834",
"merged_at": "2012-09-09T01:03:04Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/1834.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/1834"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/1835 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1835/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1835/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1835/events | https://github.com/pandas-dev/pandas/issues/1835 | 6,621,496 | MDU6SXNzdWU2NjIxNDk2 | 1,835 | read_csv fails when both converts and index_col are used on the same column | {
"avatar_url": "https://avatars.githubusercontent.com/u/1094464?v=4",
"events_url": "https://api.github.com/users/lodagro/events{/privacy}",
"followers_url": "https://api.github.com/users/lodagro/followers",
"following_url": "https://api.github.com/users/lodagro/following{/other_user}",
"gists_url": "https://api.github.com/users/lodagro/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/lodagro",
"id": 1094464,
"login": "lodagro",
"node_id": "MDQ6VXNlcjEwOTQ0NjQ=",
"organizations_url": "https://api.github.com/users/lodagro/orgs",
"received_events_url": "https://api.github.com/users/lodagro/received_events",
"repos_url": "https://api.github.com/users/lodagro/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/lodagro/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/lodagro/subscriptions",
"type": "User",
"url": "https://api.github.com/users/lodagro"
} | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "06909A",
"default": false,
"description": "IO issues that don't fit into a more specific label",
"id": 2301354,
"name": "IO Data",
"node_id": "MDU6TGFiZWwyMzAxMzU0",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20Data"
}
] | closed | false | null | [] | {
"closed_at": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 1 | "2012-09-03T19:39:24Z" | "2016-10-12T23:03:10Z" | "2012-09-10T22:00:10Z" | CONTRIBUTOR | null | ``` python
In [473]: d = """\
A;B
1;2
3;4
"""
In [474]: pandas.read_csv(StringIO(d), sep=';', converters={'A': lambda x: x}, index_col='A')
---------------------------------------------------------------------------
KeyError Traceback (most recent call last)
<ipython-input-474-6bc08702ea91> in <module>()
...
KeyError: 'A'
In [475]: pandas.read_csv(StringIO(d), sep=';', converters={'A': lambda x: x}).set_index('A')
Out[475]:
B
A
1 2
3 4
```
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1835/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1835/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1836 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1836/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1836/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1836/events | https://github.com/pandas-dev/pandas/issues/1836 | 6,628,710 | MDU6SXNzdWU2NjI4NzEw | 1,836 | Define column-wise na/default value for merge operations. | {
"avatar_url": "https://avatars.githubusercontent.com/u/1327168?v=4",
"events_url": "https://api.github.com/users/gerigk/events{/privacy}",
"followers_url": "https://api.github.com/users/gerigk/followers",
"following_url": "https://api.github.com/users/gerigk/following{/other_user}",
"gists_url": "https://api.github.com/users/gerigk/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/gerigk",
"id": 1327168,
"login": "gerigk",
"node_id": "MDQ6VXNlcjEzMjcxNjg=",
"organizations_url": "https://api.github.com/users/gerigk/orgs",
"received_events_url": "https://api.github.com/users/gerigk/received_events",
"repos_url": "https://api.github.com/users/gerigk/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/gerigk/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/gerigk/subscriptions",
"type": "User",
"url": "https://api.github.com/users/gerigk"
} | [
{
"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": "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": 278,
"created_at": "2013-01-06T03:02:01Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "Milestone for filing things away that may be reached someday (at which point such issues should be moved to the appropriate release milestone)",
"due_on": "2022-12-31T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/20",
"id": 239227,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/20/labels",
"node_id": "MDk6TWlsZXN0b25lMjM5MjI3",
"number": 20,
"open_issues": 108,
"state": "open",
"title": "Someday",
"updated_at": "2021-08-08T01:48:22Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/20"
} | 2 | "2012-09-04T08:21:41Z" | "2016-12-28T11:24:36Z" | "2016-12-28T11:24:36Z" | NONE | null | I find myself often using fillna on a lot of columns after a merge operation and having to cast columns back to their original dtype.
Pseudo code now
data_types = df.dtypes
df_new = merge(df, df_other)
for col in former_int64_columns:
df_new[col] = df_new[col].fillna(0).astype(np.int64)
in some cases I may want a different default value, also for other column types than int64.
An idea would be something like a keyword argument "column_default_values = { 'a': 0, 'b': -1, ...}".
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1836/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1836/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1837 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1837/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1837/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1837/events | https://github.com/pandas-dev/pandas/pull/1837 | 6,634,913 | MDExOlB1bGxSZXF1ZXN0MjIzOTUzNw== | 1,837 | Tiny str() fix, pandas/stats/ols.py | {
"avatar_url": "https://avatars.githubusercontent.com/u/1769273?v=4",
"events_url": "https://api.github.com/users/lenolib/events{/privacy}",
"followers_url": "https://api.github.com/users/lenolib/followers",
"following_url": "https://api.github.com/users/lenolib/following{/other_user}",
"gists_url": "https://api.github.com/users/lenolib/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/lenolib",
"id": 1769273,
"login": "lenolib",
"node_id": "MDQ6VXNlcjE3NjkyNzM=",
"organizations_url": "https://api.github.com/users/lenolib/orgs",
"received_events_url": "https://api.github.com/users/lenolib/received_events",
"repos_url": "https://api.github.com/users/lenolib/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/lenolib/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/lenolib/subscriptions",
"type": "User",
"url": "https://api.github.com/users/lenolib"
} | [] | closed | false | null | [] | {
"closed_at": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 1 | "2012-09-04T13:43:34Z" | "2014-06-14T08:07:32Z" | "2012-09-08T02:40:35Z" | CONTRIBUTOR | null | Fix for unexpected behaviour (TypeError: not all arguments converted during string formatting) if c is a tuple, as it can be when having collapsed the multiindex columns like df_with_tuple_columns = df_with_multiindex.columns.tolist()
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1837/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1837/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/1837.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/1837",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/1837.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/1837"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/1838 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1838/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1838/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1838/events | https://github.com/pandas-dev/pandas/issues/1838 | 6,636,196 | MDU6SXNzdWU2NjM2MTk2 | 1,838 | Adding an offset to a timezone-aware DatetimeIndex shifts the times | {
"avatar_url": "https://avatars.githubusercontent.com/u/1173125?v=4",
"events_url": "https://api.github.com/users/ijmcf/events{/privacy}",
"followers_url": "https://api.github.com/users/ijmcf/followers",
"following_url": "https://api.github.com/users/ijmcf/following{/other_user}",
"gists_url": "https://api.github.com/users/ijmcf/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/ijmcf",
"id": 1173125,
"login": "ijmcf",
"node_id": "MDQ6VXNlcjExNzMxMjU=",
"organizations_url": "https://api.github.com/users/ijmcf/orgs",
"received_events_url": "https://api.github.com/users/ijmcf/received_events",
"repos_url": "https://api.github.com/users/ijmcf/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/ijmcf/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/ijmcf/subscriptions",
"type": "User",
"url": "https://api.github.com/users/ijmcf"
} | [
{
"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": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 0 | "2012-09-04T14:34:49Z" | "2016-10-12T23:03:10Z" | "2012-09-19T02:18:53Z" | NONE | null | For example:
> > > dr = pandas.date_range('03/06/2012 00:00', periods=25, freq='W-FRI', tz='US/Eastern')
> > > <class 'pandas.tseries.index.DatetimeIndex'>
> > > [2012-03-09 00:00:00, ..., 2012-08-24 00:00:00]
> > > Length: 25, Freq: W-FRI, Timezone: US/Eastern
> > >
> > > dr + pandas.datetools.BDay()
> > > <class 'pandas.tseries.index.DatetimeIndex'>
> > > [2012-03-12 05:00:00, ..., 2012-08-27 04:00:00]
> > > Length: 25, Freq: None, Timezone: US/Eastern
Contrast with a timezone-naive DatetimeIndex:
> > > dr = pandas.date_range('03/06/2012 00:00', periods=25, freq='W-FRI')
> > > <class 'pandas.tseries.index.DatetimeIndex'>
> > > [2012-03-09 00:00:00, ..., 2012-08-24 00:00:00]
> > > Length: 25, Freq: W-FRI, Timezone: None
> > >
> > > dr + pandas.datetools.BDay()
> > > <class 'pandas.tseries.index.DatetimeIndex'>
> > > [2012-03-12 00:00:00, ..., 2012-08-27 00:00:00]
> > > Length: 25, Freq: W-MON, Timezone: None
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1838/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1838/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1839 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1839/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1839/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1839/events | https://github.com/pandas-dev/pandas/issues/1839 | 6,636,306 | MDU6SXNzdWU2NjM2MzA2 | 1,839 | Weekly anchored frequency offsets don't behave as expected | {
"avatar_url": "https://avatars.githubusercontent.com/u/1173125?v=4",
"events_url": "https://api.github.com/users/ijmcf/events{/privacy}",
"followers_url": "https://api.github.com/users/ijmcf/followers",
"following_url": "https://api.github.com/users/ijmcf/following{/other_user}",
"gists_url": "https://api.github.com/users/ijmcf/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/ijmcf",
"id": 1173125,
"login": "ijmcf",
"node_id": "MDQ6VXNlcjExNzMxMjU=",
"organizations_url": "https://api.github.com/users/ijmcf/orgs",
"received_events_url": "https://api.github.com/users/ijmcf/received_events",
"repos_url": "https://api.github.com/users/ijmcf/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/ijmcf/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/ijmcf/subscriptions",
"type": "User",
"url": "https://api.github.com/users/ijmcf"
} | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
}
] | closed | false | null | [] | {
"closed_at": "2013-01-18T04:50:20Z",
"closed_issues": 276,
"created_at": "2012-06-27T14:43: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": "",
"due_on": "2012-12-08T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/14",
"id": 137852,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/14/labels",
"node_id": "MDk6TWlsZXN0b25lMTM3ODUy",
"number": 14,
"open_issues": 0,
"state": "closed",
"title": "0.10",
"updated_at": "2013-07-29T03:20:45Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/14"
} | 4 | "2012-09-04T14:38:57Z" | "2016-10-12T23:03:10Z" | "2012-11-28T18:39:21Z" | NONE | null | For example:
> > > period_index = pandas.period_range('2012/6/3', periods=10, freq='W-FRI')
> > > <class 'pandas.tseries.period.PeriodIndex'>
> > > freq: W-FRI
> > > [02-Jun-2012/08-Jun-2012, ..., 04-Aug-2012/10-Aug-2012]
> > > length: 10
Although the frequency is "W-FRI", the start dates listed (02-Jun-2012, ..., 04-Aug-2012) are Saturdays.
Converting the frequency of the PeriodIndex to daily using "start", you get Saturdays:
> > > period_index.asfreq(freq='D', how='start')
> > > <class 'pandas.tseries.period.PeriodIndex'>
> > > freq: D
> > > [02-Jun-2012, ..., 04-Aug-2012]
> > > length: 10
And if you convert the PeriodIndex to a DatetimeIndex using to_timestamp(), you get a frequency that is explicitly "W-SAT":
> > > period_index.to_timestamp(freq='D', how='s')
> > > <class 'pandas.tseries.index.DatetimeIndex'>
> > > [2012-06-02 00:00:00, ..., 2012-08-04 00:00:00]
> > > Length: 10, Freq: W-SAT, Timezone: None
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1839/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1839/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1840 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1840/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1840/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1840/events | https://github.com/pandas-dev/pandas/issues/1840 | 6,642,447 | MDU6SXNzdWU2NjQyNDQ3 | 1,840 | pandas.rolling_std() gives nans where it probably shouldn't | {
"avatar_url": "https://avatars.githubusercontent.com/u/27430?v=4",
"events_url": "https://api.github.com/users/erg/events{/privacy}",
"followers_url": "https://api.github.com/users/erg/followers",
"following_url": "https://api.github.com/users/erg/following{/other_user}",
"gists_url": "https://api.github.com/users/erg/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/erg",
"id": 27430,
"login": "erg",
"node_id": "MDQ6VXNlcjI3NDMw",
"organizations_url": "https://api.github.com/users/erg/orgs",
"received_events_url": "https://api.github.com/users/erg/received_events",
"repos_url": "https://api.github.com/users/erg/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/erg/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/erg/subscriptions",
"type": "User",
"url": "https://api.github.com/users/erg"
} | [
{
"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": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 4 | "2012-09-04T18:35:53Z" | "2012-09-07T18:47:49Z" | "2012-09-07T18:47:41Z" | CONTRIBUTOR | null | The output differs from bottleneck, which also gives nans, but fewer.
The Factor version never outputs nans and otherwise matches the pandas version.
https://gist.github.com/3624548
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1840/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1840/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1841 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1841/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1841/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1841/events | https://github.com/pandas-dev/pandas/issues/1841 | 6,647,058 | MDU6SXNzdWU2NjQ3MDU4 | 1,841 | ewma docs don't explain time_rule | {
"avatar_url": "https://avatars.githubusercontent.com/u/27430?v=4",
"events_url": "https://api.github.com/users/erg/events{/privacy}",
"followers_url": "https://api.github.com/users/erg/followers",
"following_url": "https://api.github.com/users/erg/following{/other_user}",
"gists_url": "https://api.github.com/users/erg/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/erg",
"id": 27430,
"login": "erg",
"node_id": "MDQ6VXNlcjI3NDMw",
"organizations_url": "https://api.github.com/users/erg/orgs",
"received_events_url": "https://api.github.com/users/erg/received_events",
"repos_url": "https://api.github.com/users/erg/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/erg/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/erg/subscriptions",
"type": "User",
"url": "https://api.github.com/users/erg"
} | [
{
"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": "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": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 0 | "2012-09-04T21:42:29Z" | "2012-09-08T02:36:27Z" | "2012-09-08T02:36:27Z" | CONTRIBUTOR | null | Not much else to say--should add an explanation in `_ewm_doc`.
```
def ewma(arg, com=None, span=None, min_periods=0, freq=None, time_rule=None,
```
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1841/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1841/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1842 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1842/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1842/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1842/events | https://github.com/pandas-dev/pandas/issues/1842 | 6,654,868 | MDU6SXNzdWU2NjU0ODY4 | 1,842 | df.plot(x=..., y=...) fails for mixed-integer column names | {
"avatar_url": "https://avatars.githubusercontent.com/u/1094464?v=4",
"events_url": "https://api.github.com/users/lodagro/events{/privacy}",
"followers_url": "https://api.github.com/users/lodagro/followers",
"following_url": "https://api.github.com/users/lodagro/following{/other_user}",
"gists_url": "https://api.github.com/users/lodagro/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/lodagro",
"id": 1094464,
"login": "lodagro",
"node_id": "MDQ6VXNlcjEwOTQ0NjQ=",
"organizations_url": "https://api.github.com/users/lodagro/orgs",
"received_events_url": "https://api.github.com/users/lodagro/received_events",
"repos_url": "https://api.github.com/users/lodagro/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/lodagro/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/lodagro/subscriptions",
"type": "User",
"url": "https://api.github.com/users/lodagro"
} | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "8AE234",
"default": false,
"description": null,
"id": 2413328,
"name": "Visualization",
"node_id": "MDU6TGFiZWwyNDEzMzI4",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Visualization"
}
] | closed | false | {
"avatar_url": "https://avatars.githubusercontent.com/u/1094464?v=4",
"events_url": "https://api.github.com/users/lodagro/events{/privacy}",
"followers_url": "https://api.github.com/users/lodagro/followers",
"following_url": "https://api.github.com/users/lodagro/following{/other_user}",
"gists_url": "https://api.github.com/users/lodagro/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/lodagro",
"id": 1094464,
"login": "lodagro",
"node_id": "MDQ6VXNlcjEwOTQ0NjQ=",
"organizations_url": "https://api.github.com/users/lodagro/orgs",
"received_events_url": "https://api.github.com/users/lodagro/received_events",
"repos_url": "https://api.github.com/users/lodagro/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/lodagro/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/lodagro/subscriptions",
"type": "User",
"url": "https://api.github.com/users/lodagro"
} | [
{
"avatar_url": "https://avatars.githubusercontent.com/u/1094464?v=4",
"events_url": "https://api.github.com/users/lodagro/events{/privacy}",
"followers_url": "https://api.github.com/users/lodagro/followers",
"following_url": "https://api.github.com/users/lodagro/following{/other_user}",
"gists_url": "https://api.github.com/users/lodagro/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/lodagro",
"id": 1094464,
"login": "lodagro",
"node_id": "MDQ6VXNlcjEwOTQ0NjQ=",
"organizations_url": "https://api.github.com/users/lodagro/orgs",
"received_events_url": "https://api.github.com/users/lodagro/received_events",
"repos_url": "https://api.github.com/users/lodagro/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/lodagro/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/lodagro/subscriptions",
"type": "User",
"url": "https://api.github.com/users/lodagro"
}
] | {
"closed_at": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 6 | "2012-09-05T08:00:07Z" | "2012-09-10T19:52:55Z" | "2012-09-10T19:52:55Z" | CONTRIBUTOR | null | ``` python
In [187]: df = pandas.DataFrame(np.random.randn(100,3),columns=['A', 'B', 0])
In [188]: df.head()
Out[188]:
A B 0
0 0.699932 -1.090587 1.014325
1 -0.148856 -0.994177 -1.107741
2 1.384710 0.107488 1.108757
3 -0.795969 -1.297598 -0.268348
4 -0.247695 -0.627048 0.010415
In [189]: df.plot(x='A', y=0)
---------------------------------------------------------------------------
KeyError Traceback (most recent call last)
...
KeyError: 'no item named A'
In [190]:
```
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1842/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1842/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1843 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1843/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1843/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1843/events | https://github.com/pandas-dev/pandas/issues/1843 | 6,655,302 | MDU6SXNzdWU2NjU1MzAy | 1,843 | ExcelFile(...).parse(skiprows=...) fails for rows at the end of the sheet | {
"avatar_url": "https://avatars.githubusercontent.com/u/1094464?v=4",
"events_url": "https://api.github.com/users/lodagro/events{/privacy}",
"followers_url": "https://api.github.com/users/lodagro/followers",
"following_url": "https://api.github.com/users/lodagro/following{/other_user}",
"gists_url": "https://api.github.com/users/lodagro/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/lodagro",
"id": 1094464,
"login": "lodagro",
"node_id": "MDQ6VXNlcjEwOTQ0NjQ=",
"organizations_url": "https://api.github.com/users/lodagro/orgs",
"received_events_url": "https://api.github.com/users/lodagro/received_events",
"repos_url": "https://api.github.com/users/lodagro/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/lodagro/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/lodagro/subscriptions",
"type": "User",
"url": "https://api.github.com/users/lodagro"
} | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "06909A",
"default": false,
"description": "IO issues that don't fit into a more specific label",
"id": 2301354,
"name": "IO Data",
"node_id": "MDU6TGFiZWwyMzAxMzU0",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20Data"
}
] | closed | false | null | [] | {
"closed_at": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 1 | "2012-09-05T08:30:11Z" | "2012-09-25T18:40:55Z" | "2012-09-18T15:10:45Z" | CONTRIBUTOR | null | from [mailinglist](https://groups.google.com/forum/?fromgroups=#!searchin/pydata/richard$20stanton/pydata/z1BNtywmc80/qzgG2pUrsk8J) (tried it myself on master also)
I've been using the ExcelFile function to read in a dataset that has some lines of text above and below the numbers I'm interested in.
The option skiprows=[0,1,3,4,5,6,7] works fine to ignore the text above the data (apart from line 2, which contains the labels).
However, if I add values 151, 152, etc., to try to ignore the text lines after the end of the data, this seems to have no effect. Is this behavior deliberate?*
I can get rid of those extra lines at the end by using dropna(), but this seems to have the effect of making the first series of type object rather than float, which is (a little) inconvenient.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1843/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1843/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1844 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1844/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1844/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1844/events | https://github.com/pandas-dev/pandas/issues/1844 | 6,666,726 | MDU6SXNzdWU2NjY2NzI2 | 1,844 | API design discussion | {
"avatar_url": "https://avatars.githubusercontent.com/u/1404757?v=4",
"events_url": "https://api.github.com/users/halleygithub/events{/privacy}",
"followers_url": "https://api.github.com/users/halleygithub/followers",
"following_url": "https://api.github.com/users/halleygithub/following{/other_user}",
"gists_url": "https://api.github.com/users/halleygithub/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/halleygithub",
"id": 1404757,
"login": "halleygithub",
"node_id": "MDQ6VXNlcjE0MDQ3NTc=",
"organizations_url": "https://api.github.com/users/halleygithub/orgs",
"received_events_url": "https://api.github.com/users/halleygithub/received_events",
"repos_url": "https://api.github.com/users/halleygithub/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/halleygithub/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/halleygithub/subscriptions",
"type": "User",
"url": "https://api.github.com/users/halleygithub"
} | [] | 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"
} | 5 | "2012-09-05T16:51:32Z" | "2015-01-17T18:00:08Z" | "2015-01-17T18:00:08Z" | NONE | null | kk=DataFrame({'a':[1,0,3,5],'b':[2,4,6,8]})
kk['c']=kk.b/kk.a
> > > kk
> > > a b c
> > > 0 1 2 2
> > > 1 0 4 0
> > > 2 3 6 2
> > > 3 5 8 1
Two issues:
(1) I don't think kk[1,'c']=0 is a suitable answer
(2) I don't think kk[3,'c']=1 is a suitable answer, it should be 1.6
while kk['c']=1.0*kk.b/kk.a give an OK answer
> > > kk
> > > a b c
> > > 0 1 2 2.0
> > > 1 0 4 NaN
> > > 2 3 6 2.0
> > > 3 5 8 1.6
So pls treat 'int/int' to 'float/float', for current 'int/int' treatment will cause difficult checking error
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1844/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1844/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1845 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1845/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1845/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1845/events | https://github.com/pandas-dev/pandas/pull/1845 | 6,680,383 | MDExOlB1bGxSZXF1ZXN0MjI2MDkxNQ== | 1,845 | Update pandas/__init__.py | {
"avatar_url": "https://avatars.githubusercontent.com/u/97742?v=4",
"events_url": "https://api.github.com/users/codeape2/events{/privacy}",
"followers_url": "https://api.github.com/users/codeape2/followers",
"following_url": "https://api.github.com/users/codeape2/following{/other_user}",
"gists_url": "https://api.github.com/users/codeape2/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/codeape2",
"id": 97742,
"login": "codeape2",
"node_id": "MDQ6VXNlcjk3NzQy",
"organizations_url": "https://api.github.com/users/codeape2/orgs",
"received_events_url": "https://api.github.com/users/codeape2/received_events",
"repos_url": "https://api.github.com/users/codeape2/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/codeape2/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/codeape2/subscriptions",
"type": "User",
"url": "https://api.github.com/users/codeape2"
} | [] | closed | false | null | [] | {
"closed_at": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 4 | "2012-09-06T06:17:59Z" | "2014-06-14T01:51:07Z" | "2012-09-08T02:20:08Z" | NONE | null | Removed try/except around import pandas.lib
The try/except hid a dateutil import error.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1845/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1845/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/1845.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/1845",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/1845.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/1845"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/1846 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1846/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1846/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1846/events | https://github.com/pandas-dev/pandas/issues/1846 | 6,680,389 | MDU6SXNzdWU2NjgwMzg5 | 1,846 | A bug of Pandas DataFrame.plot or xticks | {
"avatar_url": "https://avatars.githubusercontent.com/u/1404757?v=4",
"events_url": "https://api.github.com/users/halleygithub/events{/privacy}",
"followers_url": "https://api.github.com/users/halleygithub/followers",
"following_url": "https://api.github.com/users/halleygithub/following{/other_user}",
"gists_url": "https://api.github.com/users/halleygithub/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/halleygithub",
"id": 1404757,
"login": "halleygithub",
"node_id": "MDQ6VXNlcjE0MDQ3NTc=",
"organizations_url": "https://api.github.com/users/halleygithub/orgs",
"received_events_url": "https://api.github.com/users/halleygithub/received_events",
"repos_url": "https://api.github.com/users/halleygithub/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/halleygithub/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/halleygithub/subscriptions",
"type": "User",
"url": "https://api.github.com/users/halleygithub"
} | [] | closed | false | null | [] | null | 4 | "2012-09-06T06:18:48Z" | "2017-08-02T10:44:23Z" | "2012-09-06T06:58:53Z" | NONE | null | I am using Pandas to develop a financial report analysis tool . And I find a bug related to xticks setting.
In general, I define a multilevel dataframe 'df' , draw a bar plot, and try to reset the default xtick value, and find the xtick mismatch with the bar, the position shift to left side .
Pls check the attach the code.
from FinReporter_Engine_v1 import *
df = Get_Ratio('600809',["mg_r","ttl3_exp_r","net_pft_r"],sta_date="20110101",end_date="20201231")
print df
''' df is the multileve indexed dataframe '''
'''
mg_r ttl3_exp_r net_pft_r
STK_ID RPT_Date
600809 20110331 0.757328 0.232423 0.270287
20110630 0.756847 0.228334 0.227518
20110930 0.761260 0.244068 0.198542
20111231 0.759992 0.274064 0.173913
20120331 0.769676 0.240521 0.222462
'''
DataFrame.plot(df,kind="bar",stacked=False, use_index=False)
''' reset the xtick for I hate default ugly multilevel index lable '''
plt.xticks(range(len(df)),df.index.get_level_values("RPT_Date"))
plt.show()
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1846/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1846/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1847 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1847/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1847/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1847/events | https://github.com/pandas-dev/pandas/issues/1847 | 6,687,053 | MDU6SXNzdWU2Njg3MDUz | 1,847 | DatetimeIndex gives strange answer when trying to find intervals | {
"avatar_url": "https://avatars.githubusercontent.com/u/297142?v=4",
"events_url": "https://api.github.com/users/timcera/events{/privacy}",
"followers_url": "https://api.github.com/users/timcera/followers",
"following_url": "https://api.github.com/users/timcera/following{/other_user}",
"gists_url": "https://api.github.com/users/timcera/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/timcera",
"id": 297142,
"login": "timcera",
"node_id": "MDQ6VXNlcjI5NzE0Mg==",
"organizations_url": "https://api.github.com/users/timcera/orgs",
"received_events_url": "https://api.github.com/users/timcera/received_events",
"repos_url": "https://api.github.com/users/timcera/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/timcera/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/timcera/subscriptions",
"type": "User",
"url": "https://api.github.com/users/timcera"
} | [
{
"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": "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-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 | "2012-09-06T12:55:36Z" | "2014-02-18T22:19:10Z" | "2014-02-18T22:19:10Z" | CONTRIBUTOR | null | The following is strange to me:
```
>>> import datetime
>>> import pandas
>>> dates = [datetime.datetime(2012, 5, 1), datetime.datetime(2012, 5, 2), datetime.datetime(2012, 5, 3)]
>>> index = pandas.DatetimeIndex(dates)
>>> index[1:] - index[:-1]
<class 'pandas.tseries.index.DatetimeIndex'>
[2012-05-03 00:00:00]
Length: 1, Freq: None, Timezone: None
```
I would expect something that would represents the 2 intervals. I thought at first a PeriodIndex, but that will not work in this case. Probably though should return a DateOffset? Maybe?
Note if using the datetime representation from above:
```
>>> import numpy as np
>>> npdates = np.array(dates)
>>> npdates[1:] - npdates[:-1]
array([1 day, 0:00:00, 1 day, 0:00:00], dtype=object)
```
Kindest regards,
Tim
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1847/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1847/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1848 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1848/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1848/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1848/events | https://github.com/pandas-dev/pandas/issues/1848 | 6,689,788 | MDU6SXNzdWU2Njg5Nzg4 | 1,848 | lib.infer_dtype_list(MultiIndex) crashes python | {
"avatar_url": "https://avatars.githubusercontent.com/u/1867189?v=4",
"events_url": "https://api.github.com/users/John-Colvin/events{/privacy}",
"followers_url": "https://api.github.com/users/John-Colvin/followers",
"following_url": "https://api.github.com/users/John-Colvin/following{/other_user}",
"gists_url": "https://api.github.com/users/John-Colvin/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/John-Colvin",
"id": 1867189,
"login": "John-Colvin",
"node_id": "MDQ6VXNlcjE4NjcxODk=",
"organizations_url": "https://api.github.com/users/John-Colvin/orgs",
"received_events_url": "https://api.github.com/users/John-Colvin/received_events",
"repos_url": "https://api.github.com/users/John-Colvin/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/John-Colvin/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/John-Colvin/subscriptions",
"type": "User",
"url": "https://api.github.com/users/John-Colvin"
} | [
{
"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": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 1 | "2012-09-06T14:47:53Z" | "2014-03-05T15:18:23Z" | "2012-09-09T03:17:31Z" | CONTRIBUTOR | null | If lib.infer_dtype_list is called with a MultiIndex, it crashes python (on OS X 10.7 at least)
This crash occurs when writing a dataframe with a multiindex to a pytables table (_write_table)
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1848/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1848/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1849 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1849/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1849/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1849/events | https://github.com/pandas-dev/pandas/issues/1849 | 6,699,133 | MDU6SXNzdWU2Njk5MTMz | 1,849 | merge or join fails if the left input dataframe contains a column of float32 | {
"avatar_url": "https://avatars.githubusercontent.com/u/361132?v=4",
"events_url": "https://api.github.com/users/aheilbut/events{/privacy}",
"followers_url": "https://api.github.com/users/aheilbut/followers",
"following_url": "https://api.github.com/users/aheilbut/following{/other_user}",
"gists_url": "https://api.github.com/users/aheilbut/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/aheilbut",
"id": 361132,
"login": "aheilbut",
"node_id": "MDQ6VXNlcjM2MTEzMg==",
"organizations_url": "https://api.github.com/users/aheilbut/orgs",
"received_events_url": "https://api.github.com/users/aheilbut/received_events",
"repos_url": "https://api.github.com/users/aheilbut/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/aheilbut/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/aheilbut/subscriptions",
"type": "User",
"url": "https://api.github.com/users/aheilbut"
} | [
{
"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": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 1 | "2012-09-06T20:47:11Z" | "2016-10-12T23:03:11Z" | "2012-09-10T22:22:29Z" | NONE | null | A merge or join involving a left DataFrame that has single precision floats will fail. Seems to be OK if the right dataframe has float32; these get cast to float64 (which they probably shouldn't be)
``` python
import numpy as np
import pandas
a = np.random.randint(0, 5, 100)
df = pandas.DataFrame({'a': a})
s = pandas.DataFrame( pandas.Series(np.random.random(5).astype('f'), name='md') )
df.merge(s, left_on='a', right_index=True) # this is OK
df['b'] = np.random.randint(0, 5, 100)
df.merge(s, left_on='a', right_index=True) # this is OK
df['c'] = np.random.random(100).astype('Float64')
df.merge(s, left_on='a', right_index=True) # this is OK
df['d'] = np.random.random(100).astype('Float32')
print df.dtypes
df.merge(s, left_on='a', right_index=True) # this fails
```
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1849/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1849/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1850 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1850/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1850/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1850/events | https://github.com/pandas-dev/pandas/issues/1850 | 6,702,258 | MDU6SXNzdWU2NzAyMjU4 | 1,850 | pandas.rolling_apply: "Out of bounds on buffer access" | {
"avatar_url": "https://avatars.githubusercontent.com/u/24195?v=4",
"events_url": "https://api.github.com/users/mrjbq7/events{/privacy}",
"followers_url": "https://api.github.com/users/mrjbq7/followers",
"following_url": "https://api.github.com/users/mrjbq7/following{/other_user}",
"gists_url": "https://api.github.com/users/mrjbq7/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/mrjbq7",
"id": 24195,
"login": "mrjbq7",
"node_id": "MDQ6VXNlcjI0MTk1",
"organizations_url": "https://api.github.com/users/mrjbq7/orgs",
"received_events_url": "https://api.github.com/users/mrjbq7/received_events",
"repos_url": "https://api.github.com/users/mrjbq7/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/mrjbq7/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/mrjbq7/subscriptions",
"type": "User",
"url": "https://api.github.com/users/mrjbq7"
} | [
{
"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": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 1 | "2012-09-06T23:02:13Z" | "2012-09-08T02:34:55Z" | "2012-09-08T02:34:47Z" | NONE | null | Looks like `pandas.rolling_apply` doesn't like a window larger than the length of the array:
```
In [3]: import pandas
In [4]: import numpy as np
In [5]: a = np.array(range(4))
In [6]: pandas.rolling_sum(a, 10)
Out[6]: array([ nan, nan, nan, nan])
In [7]: pandas.rolling_apply(a, 10, np.sum)
---------------------------------------------------------------------------
IndexError Traceback (most recent call last)
<ipython-input-7-1ff0414da8bd> in <module>()
----> 1 pandas.rolling_apply(a, 10, np.sum)
/Library/Python/2.7/site-packages/pandas-0.8.1-py2.7-macosx-10.8-intel.egg/pandas/stats/moments.pyc in rolling_apply(arg, window, func, min_periods, freq, time_rule)
465 return lib.roll_generic(arg, window, minp, func)
466 return _rolling_moment(arg, window, call_cython, min_periods,
--> 467 freq=freq, time_rule=time_rule)
/Library/Python/2.7/site-packages/pandas-0.8.1-py2.7-macosx-10.8-intel.egg/pandas/stats/moments.pyc in _rolling_moment(arg, window, func, minp, axis, freq, time_rule, **kwargs)
227 return_hook, values = _process_data_structure(arg)
228 # actually calculate the moment. Faster way to do this?
--> 229 result = np.apply_along_axis(calc, axis, values)
230
231 return return_hook(result)
/Library/Python/2.7/site-packages/numpy-1.6.2-py2.7-macosx-10.8-intel.egg/numpy/lib/shape_base.pyc in apply_along_axis(func1d, axis, arr, *args)
78 outshape = asarray(arr.shape).take(indlist)
79 i.put(indlist, ind)
---> 80 res = func1d(arr[tuple(i.tolist())],*args)
81 # if res is a number, then we have a smaller output array
82 if isscalar(res):
/Library/Python/2.7/site-packages/pandas-0.8.1-py2.7-macosx-10.8-intel.egg/pandas/stats/moments.pyc in <lambda>(x)
224 """
225 arg = _conv_timerule(arg, freq, time_rule)
--> 226 calc = lambda x: func(x, window, minp=minp, **kwargs)
227 return_hook, values = _process_data_structure(arg)
228 # actually calculate the moment. Faster way to do this?
/Library/Python/2.7/site-packages/pandas-0.8.1-py2.7-macosx-10.8-intel.egg/pandas/stats/moments.pyc in call_cython(arg, window, minp)
463 def call_cython(arg, window, minp):
464 minp = _use_window(minp, window)
--> 465 return lib.roll_generic(arg, window, minp, func)
466 return _rolling_moment(arg, window, call_cython, min_periods,
467 freq=freq, time_rule=time_rule)
/Library/Python/2.7/site-packages/pandas-0.8.1-py2.7-macosx-10.8-intel.egg/pandas/lib.so in pandas.lib.roll_generic (pandas/src/tseries.c:74581)()
IndexError: Out of bounds on buffer access (axis 0)
```
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1850/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1850/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1851 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1851/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1851/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1851/events | https://github.com/pandas-dev/pandas/issues/1851 | 6,712,776 | MDU6SXNzdWU2NzEyNzc2 | 1,851 | python-dateutils < 2 requirement for python 2. Is it necessary? | {
"avatar_url": "https://avatars.githubusercontent.com/u/97742?v=4",
"events_url": "https://api.github.com/users/codeape2/events{/privacy}",
"followers_url": "https://api.github.com/users/codeape2/followers",
"following_url": "https://api.github.com/users/codeape2/following{/other_user}",
"gists_url": "https://api.github.com/users/codeape2/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/codeape2",
"id": 97742,
"login": "codeape2",
"node_id": "MDQ6VXNlcjk3NzQy",
"organizations_url": "https://api.github.com/users/codeape2/orgs",
"received_events_url": "https://api.github.com/users/codeape2/received_events",
"repos_url": "https://api.github.com/users/codeape2/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/codeape2/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/codeape2/subscriptions",
"type": "User",
"url": "https://api.github.com/users/codeape2"
} | [
{
"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": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 1 | "2012-09-07T12:24:09Z" | "2012-09-08T02:13:31Z" | "2012-09-08T02:13:31Z" | NONE | null | The most recent version (2.1) supports both 2.x and 3.x.
Pandas works for me using version 2.1:
```
(VENV)[~/ng]
$ nosetests pandas
...
...
----------------------------------------------------------------------
Ran 2228 tests in 112.553s
OK (SKIP=45)
(VENV)[~/ng]
$ python -c "import dateutil; print dateutil.__version__"
2.1
```
I suggest change setup.py.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1851/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1851/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1852 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1852/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1852/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1852/events | https://github.com/pandas-dev/pandas/issues/1852 | 6,713,640 | MDU6SXNzdWU2NzEzNjQw | 1,852 | Test long string formatting in to_string and to_html | {
"avatar_url": "https://avatars.githubusercontent.com/u/2299446?v=4",
"events_url": "https://api.github.com/users/httassadar/events{/privacy}",
"followers_url": "https://api.github.com/users/httassadar/followers",
"following_url": "https://api.github.com/users/httassadar/following{/other_user}",
"gists_url": "https://api.github.com/users/httassadar/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/httassadar",
"id": 2299446,
"login": "httassadar",
"node_id": "MDQ6VXNlcjIyOTk0NDY=",
"organizations_url": "https://api.github.com/users/httassadar/orgs",
"received_events_url": "https://api.github.com/users/httassadar/received_events",
"repos_url": "https://api.github.com/users/httassadar/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/httassadar/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/httassadar/subscriptions",
"type": "User",
"url": "https://api.github.com/users/httassadar"
} | [
{
"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": "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"
},
{
"color": "006b75",
"default": false,
"description": "read_html, to_html, Styler.apply, Styler.applymap",
"id": 57395487,
"name": "IO HTML",
"node_id": "MDU6TGFiZWw1NzM5NTQ4Nw==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20HTML"
}
] | closed | false | null | [] | {
"closed_at": null,
"closed_issues": 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"
} | 12 | "2012-09-07T13:11:08Z" | "2018-07-06T22:02:41Z" | "2018-07-06T22:02:05Z" | NONE | null | Start with a data frame -- large-ish number of rows
```
df = DataFrame({'a':['a1']*100+['a2']*100, 'b':['b']*200})
dfg = df.groupby(['a'])
dfg.aggregate(len) ## this gives right answer, every entry is of length 100
dfg.aggregate(lambda x: ', '.join(x.values)) ## this is wrong, the output string is somehow truncated?
```
It works fine if the string is not very long, eg start with
df = DataFrame({'a':['a1']_10+['a2']_10, 'b':['b']*20)
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1852/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1852/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1853 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1853/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1853/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1853/events | https://github.com/pandas-dev/pandas/issues/1853 | 6,714,268 | MDU6SXNzdWU2NzE0MjY4 | 1,853 | Add ability to estimate full covariance matrices a la ewmcov/rolling_cov | {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
} | [
{
"color": "4E9A06",
"default": false,
"description": null,
"id": 76812,
"name": "Enhancement",
"node_id": "MDU6TGFiZWw3NjgxMg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Enhancement"
}
] | closed | false | null | [] | {
"closed_at": "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"
} | 1 | "2012-09-07T13:41:04Z" | "2014-03-28T14:47:49Z" | "2014-03-28T14:47:49Z" | MEMBER | null | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1853/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1853/timeline | null | null | null |
|
https://api.github.com/repos/pandas-dev/pandas/issues/1854 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1854/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1854/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1854/events | https://github.com/pandas-dev/pandas/issues/1854 | 6,714,509 | MDU6SXNzdWU2NzE0NTA5 | 1,854 | indicate __repr__ truncation by ... | {
"avatar_url": "https://avatars.githubusercontent.com/u/1094464?v=4",
"events_url": "https://api.github.com/users/lodagro/events{/privacy}",
"followers_url": "https://api.github.com/users/lodagro/followers",
"following_url": "https://api.github.com/users/lodagro/following{/other_user}",
"gists_url": "https://api.github.com/users/lodagro/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/lodagro",
"id": 1094464,
"login": "lodagro",
"node_id": "MDQ6VXNlcjEwOTQ0NjQ=",
"organizations_url": "https://api.github.com/users/lodagro/orgs",
"received_events_url": "https://api.github.com/users/lodagro/received_events",
"repos_url": "https://api.github.com/users/lodagro/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/lodagro/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/lodagro/subscriptions",
"type": "User",
"url": "https://api.github.com/users/lodagro"
} | [
{
"color": "4E9A06",
"default": false,
"description": null,
"id": 76812,
"name": "Enhancement",
"node_id": "MDU6TGFiZWw3NjgxMg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Enhancement"
},
{
"color": "ededed",
"default": false,
"description": "__repr__ 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": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 0 | "2012-09-07T13:53:20Z" | "2012-09-15T17:20:59Z" | "2012-09-15T17:20:41Z" | CONTRIBUTOR | null | When a column is wider than 50 chars (controllable by `pandas.setprintoptions(max_colwidth=...)`) it is truncated in the `__repr__`, indicate this by adding `...` at the end of the truncated strings.
see also #1852
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1854/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1854/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1855 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1855/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1855/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1855/events | https://github.com/pandas-dev/pandas/issues/1855 | 6,723,376 | MDU6SXNzdWU2NzIzMzc2 | 1,855 | Problems converting a large file to a panel using read_csv | {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
} | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "06909A",
"default": false,
"description": "IO issues that don't fit into a more specific label",
"id": 2301354,
"name": "IO Data",
"node_id": "MDU6TGFiZWwyMzAxMzU0",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20Data"
},
{
"color": "5319e7",
"default": false,
"description": "read_csv, to_csv",
"id": 47229171,
"name": "IO CSV",
"node_id": "MDU6TGFiZWw0NzIyOTE3MQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20CSV"
}
] | closed | false | null | [] | {
"closed_at": "2013-12-30T19:53:14Z",
"closed_issues": 1076,
"created_at": "2012-11-15T23:33:37Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "RC1 ANN went out on 2013-12-6: https://groups.google.com/forum/#!topic/pydata/OHutLByJvK0\r\nTwo weeks, clear all reported bugs then call it on 2013-12-20. \r\n(@y-p)\r\n\r\nsince we've had some bugs reported at a high enough rate, extending rc by one\r\nweek until 2013-12-27. \r\n(@y-p)\r\n\r\nBumping to clear debian sparc\r\n2013-12-30. \r\n(@y-p)",
"due_on": "2013-12-30T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/18",
"id": 213925,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18/labels",
"node_id": "MDk6TWlsZXN0b25lMjEzOTI1",
"number": 18,
"open_issues": 0,
"state": "closed",
"title": "0.13",
"updated_at": "2017-07-22T19:00:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18"
} | 1 | "2012-09-07T20:19:52Z" | "2013-09-21T13:51:39Z" | "2013-09-21T13:51:39Z" | MEMBER | null | Bug?
x-reference from SO
http://stackoverflow.com/questions/12085393/problems-converting-a-large-file-to-a-panel-using-read-csv-into-python-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/1855/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1855/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1856 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1856/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1856/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1856/events | https://github.com/pandas-dev/pandas/issues/1856 | 6,723,552 | MDU6SXNzdWU2NzIzNTUy | 1,856 | Enable DataFrame to accept scalar constructor values like Series | {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
} | [
{
"color": "4E9A06",
"default": false,
"description": null,
"id": 76812,
"name": "Enhancement",
"node_id": "MDU6TGFiZWw3NjgxMg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Enhancement"
}
] | closed | false | null | [] | {
"closed_at": "2013-01-18T04:50:20Z",
"closed_issues": 276,
"created_at": "2012-06-27T14:43: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": "",
"due_on": "2012-12-08T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/14",
"id": 137852,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/14/labels",
"node_id": "MDk6TWlsZXN0b25lMTM3ODUy",
"number": 14,
"open_issues": 0,
"state": "closed",
"title": "0.10",
"updated_at": "2013-07-29T03:20:45Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/14"
} | 1 | "2012-09-07T20:27:49Z" | "2012-11-19T01:43:20Z" | "2012-11-19T01:43:20Z" | MEMBER | null | e.g.
```
df = DataFrame(val,index=[1,2,3],columns=['a','b','c'])
```
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1856/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1856/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1857 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1857/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1857/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1857/events | https://github.com/pandas-dev/pandas/issues/1857 | 6,723,984 | MDU6SXNzdWU2NzIzOTg0 | 1,857 | Period.start_time returns the same value as Period.end_time | {
"avatar_url": "https://avatars.githubusercontent.com/u/409098?v=4",
"events_url": "https://api.github.com/users/mlew/events{/privacy}",
"followers_url": "https://api.github.com/users/mlew/followers",
"following_url": "https://api.github.com/users/mlew/following{/other_user}",
"gists_url": "https://api.github.com/users/mlew/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/mlew",
"id": 409098,
"login": "mlew",
"node_id": "MDQ6VXNlcjQwOTA5OA==",
"organizations_url": "https://api.github.com/users/mlew/orgs",
"received_events_url": "https://api.github.com/users/mlew/received_events",
"repos_url": "https://api.github.com/users/mlew/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/mlew/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/mlew/subscriptions",
"type": "User",
"url": "https://api.github.com/users/mlew"
} | [
{
"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": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 0 | "2012-09-07T20:46:20Z" | "2016-10-12T23:03:11Z" | "2012-09-10T21:57:01Z" | NONE | null | If you create a Period object with a non-Day frequency, the start_time property incorrectly returns the end_time value.
ex:
``` python
In [1]: from pandas import *
In [2]: w = period_range('2012-8-20', '2012-9-10', freq='W-MON')
In [3]: w[0]
Out[3]: Period('14-Aug-2012/20-Aug-2012', 'W-MON')
In [4]: w[0].start_time
Out[4]: <Timestamp: 2012-08-20 00:00:00>
In [5]: w[0].end_time
Out[5]: <Timestamp: 2012-08-20 00:00:00>
In [6]: w[0].freq
Out[6]: 'W-MON'
```
The expected behavior would return a `<Timestamp: 2012-08-14 00:00:00>` object for the Period.start_time property.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1857/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1857/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1858 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1858/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1858/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1858/events | https://github.com/pandas-dev/pandas/issues/1858 | 6,725,279 | MDU6SXNzdWU2NzI1Mjc5 | 1,858 | Explicit column dtype specification in read_* functions | {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
} | [
{
"color": "4E9A06",
"default": false,
"description": null,
"id": 76812,
"name": "Enhancement",
"node_id": "MDU6TGFiZWw3NjgxMg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Enhancement"
},
{
"color": "C4A000",
"default": false,
"description": "pandas testing functions or related to the test suite",
"id": 127685,
"name": "Testing",
"node_id": "MDU6TGFiZWwxMjc2ODU=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Testing"
},
{
"color": "06909A",
"default": false,
"description": "IO issues that don't fit into a more specific label",
"id": 2301354,
"name": "IO Data",
"node_id": "MDU6TGFiZWwyMzAxMzU0",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20Data"
}
] | closed | false | null | [] | {
"closed_at": "2013-01-18T04:50:20Z",
"closed_issues": 276,
"created_at": "2012-06-27T14:43: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": "",
"due_on": "2012-12-08T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/14",
"id": 137852,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/14/labels",
"node_id": "MDk6TWlsZXN0b25lMTM3ODUy",
"number": 14,
"open_issues": 0,
"state": "closed",
"title": "0.10",
"updated_at": "2013-07-29T03:20:45Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/14"
} | 2 | "2012-09-07T21:53:23Z" | "2012-11-28T00:26:47Z" | "2012-11-28T00:26:47Z" | MEMBER | null | e.g. columns with values like `01001` are getting converted to int
example from mailing list:
```
df = read_csv('test_data.csv')
df.head()
oid did mode ox oy dx dy
0 1001 1001 01 272311.659358 176751.822655 272675 176375
1 1001 1001 01 272311.659358 176751.822655 272375 176375
2 1001 1001 01 272311.659358 176751.822655 272125 176675
3 1001 1001 06 272311.659358 176751.822655 272675 177125
4 1001 1001 06 272311.659358 176751.822655 272675 176375
df.oid = df.oid.apply(lambda x: str(x).zfill(5))
df.head()
oid did mode ox oy dx dy
0 01001 1001 01 272311.659358 176751.822655 272675 176375
1 01001 1001 01 272311.659358 176751.822655 272375 176375
2 01001 1001 01 272311.659358 176751.822655 272125 176675
3 01001 1001 06 272311.659358 176751.822655 272675 177125
4 01001 1001 06 272311.659358 176751.822655 272675 176375
```
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1858/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1858/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1859 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1859/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1859/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1859/events | https://github.com/pandas-dev/pandas/issues/1859 | 6,725,882 | MDU6SXNzdWU2NzI1ODgy | 1,859 | Series.str.split doesn't work with no arguments | {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
} | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
}
] | closed | false | null | [] | {
"closed_at": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 0 | "2012-09-07T22:23:57Z" | "2012-09-08T02:02:01Z" | "2012-09-08T02:02:01Z" | MEMBER | null | Inconsistent with builtin string 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/1859/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1859/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1860 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1860/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1860/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1860/events | https://github.com/pandas-dev/pandas/pull/1860 | 6,727,621 | MDExOlB1bGxSZXF1ZXN0MjI4NDA4Ng== | 1,860 | FDPanel, a 4 dimensional pandas container | {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jreback/followers",
"following_url": "https://api.github.com/users/jreback/following{/other_user}",
"gists_url": "https://api.github.com/users/jreback/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jreback",
"id": 953992,
"login": "jreback",
"node_id": "MDQ6VXNlcjk1Mzk5Mg==",
"organizations_url": "https://api.github.com/users/jreback/orgs",
"received_events_url": "https://api.github.com/users/jreback/received_events",
"repos_url": "https://api.github.com/users/jreback/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jreback/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jreback/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jreback"
} | [] | closed | false | null | [] | {
"closed_at": "2013-01-18T04:50:20Z",
"closed_issues": 276,
"created_at": "2012-06-27T14:43: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": "",
"due_on": "2012-12-08T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/14",
"id": 137852,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/14/labels",
"node_id": "MDk6TWlsZXN0b25lMTM3ODUy",
"number": 14,
"open_issues": 0,
"state": "closed",
"title": "0.10",
"updated_at": "2013-07-29T03:20:45Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/14"
} | 3 | "2012-09-08T00:29:40Z" | "2014-07-07T00:24:37Z" | "2012-09-18T17:41:34Z" | CONTRIBUTOR | null | a FDPanel is like a Panel object, but provides 4 dimensions: labels, items, major_axis, minor_axis
instead of using a dict of Panels to hold data, the FDPanel provides a convenient represenation in pandas space
with named dimensions to allow easy axis swapping and slicing
see examples/4D Example 2.pdf for creation and usage
## motivation
io/pytables currently provides a nice representation of a table to store a Panel object directly (assume item x major (dates) x minor)
FDPanel allows many named tables to represent a collection of these tables in a single hdf5 file
## testing
tests/test_fdpanel.py provides a similar methodology to test_panel.py
FDPanel is completely self contained (in core/fdpanel.py), with the exception of a single change that was needed in core/indexing.py (regarding multi indexing)
all tests that are not skipped pass (some were skipped due to deprecation of some panel like terms that are somewhat confusing in a 4D representation, e.g. minor_xs,major_xs); arithmetic operations not really tested much - almost always reduce the dimensionaliity (to panel/frame/series) before these types of operations
some code in panel.py could be changed to avoid some method duplication in fdpanel.py (e.g. _prep_ndarray, hard coding of some axes)
this was based originally on 0.7.3 (but currently working on 0.9.dev)
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1860/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1860/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/1860.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/1860",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/1860.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/1860"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/1861 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1861/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1861/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1861/events | https://github.com/pandas-dev/pandas/issues/1861 | 6,731,102 | MDU6SXNzdWU2NzMxMTAy | 1,861 | deprecated from pandas.stats import misc fails in 0.8.1 | {
"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"
}
] | closed | false | null | [] | {
"closed_at": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 0 | "2012-09-08T13:04:34Z" | "2012-09-09T01:22:33Z" | "2012-09-09T01:22:33Z" | CONTRIBUTOR | null | I believe this is a deprecated import (I used it to access bucket_series)
exists currently in master 0.9.dev as well
Python 2.7.3 (default, Jun 21 2012, 07:50:29)
> > > import pandas
> > > print pandas.**version**
> > > 0.8.1
> > > from pandas.stats import misc
> > > Traceback (most recent call last):
> > > File "<stdin>", line 1, in <module>
> > > File "/usr/local/lib/python2.7/site-packages/pandas-0.8.1-py2.7-linux-x86_64.egg/pandas/stats/misc.py", line 7, in <module>
> > > from pandas.tools.tile import quantileTS
> > > ImportError: cannot import name quantileTS
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1861/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1861/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1862 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1862/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1862/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1862/events | https://github.com/pandas-dev/pandas/pull/1862 | 6,733,666 | MDExOlB1bGxSZXF1ZXN0MjI4NTgxMA== | 1,862 | Pytables support for FDPanel | {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jreback/followers",
"following_url": "https://api.github.com/users/jreback/following{/other_user}",
"gists_url": "https://api.github.com/users/jreback/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jreback",
"id": 953992,
"login": "jreback",
"node_id": "MDQ6VXNlcjk1Mzk5Mg==",
"organizations_url": "https://api.github.com/users/jreback/orgs",
"received_events_url": "https://api.github.com/users/jreback/received_events",
"repos_url": "https://api.github.com/users/jreback/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jreback/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jreback/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jreback"
} | [] | closed | false | null | [] | {
"closed_at": "2013-12-30T19:53:14Z",
"closed_issues": 1076,
"created_at": "2012-11-15T23:33:37Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "RC1 ANN went out on 2013-12-6: https://groups.google.com/forum/#!topic/pydata/OHutLByJvK0\r\nTwo weeks, clear all reported bugs then call it on 2013-12-20. \r\n(@y-p)\r\n\r\nsince we've had some bugs reported at a high enough rate, extending rc by one\r\nweek until 2013-12-27. \r\n(@y-p)\r\n\r\nBumping to clear debian sparc\r\n2013-12-30. \r\n(@y-p)",
"due_on": "2013-12-30T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/18",
"id": 213925,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18/labels",
"node_id": "MDk6TWlsZXN0b25lMjEzOTI1",
"number": 18,
"open_issues": 0,
"state": "closed",
"title": "0.13",
"updated_at": "2017-07-22T19:00:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18"
} | 1 | "2012-09-08T17:10:15Z" | "2014-06-19T10:31:27Z" | "2012-11-24T01:47:03Z" | CONTRIBUTOR | null | add pytables branch to support FDPanel
this is on top of my previous fdpanel branch
supporting put/append/select of FDPanel to hdf5 tables (and makes selection a bit more generic, as store.select() now works).
FYI - the included FDPanel definitions (eg fdpanel.py) are v1 - so merge FDPanel (v2) first
Then cherry pick this merge (eg only need pytables.py and tests and included examples)
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1862/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1862/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/1862.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/1862",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/1862.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/1862"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/1863 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1863/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1863/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1863/events | https://github.com/pandas-dev/pandas/issues/1863 | 6,738,456 | MDU6SXNzdWU2NzM4NDU2 | 1,863 | OLS issues interacting with MultiIndex | {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
} | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "207de5",
"default": false,
"description": null,
"id": 71268330,
"name": "MultiIndex",
"node_id": "MDU6TGFiZWw3MTI2ODMzMA==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/MultiIndex"
}
] | closed | false | null | [] | {
"closed_at": "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"
} | 1 | "2012-09-08T22:47:44Z" | "2015-01-26T00:34:27Z" | "2015-01-26T00:34:27Z" | MEMBER | null | x-linking:
http://stackoverflow.com/questions/11586068/collapse-a-pandas-multiindex-or-run-ols-regression-on-a-multiindexed-dataframe
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1863/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1863/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1864 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1864/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1864/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1864/events | https://github.com/pandas-dev/pandas/issues/1864 | 6,738,545 | MDU6SXNzdWU2NzM4NTQ1 | 1,864 | API for rearranging data within a hierarchical level | {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
} | [
{
"color": "4E9A06",
"default": false,
"description": null,
"id": 76812,
"name": "Enhancement",
"node_id": "MDU6TGFiZWw3NjgxMg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Enhancement"
}
] | closed | false | null | [] | {
"closed_at": null,
"closed_issues": 278,
"created_at": "2013-01-06T03:02:01Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "Milestone for filing things away that may be reached someday (at which point such issues should be moved to the appropriate release milestone)",
"due_on": "2022-12-31T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/20",
"id": 239227,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/20/labels",
"node_id": "MDk6TWlsZXN0b25lMjM5MjI3",
"number": 20,
"open_issues": 108,
"state": "open",
"title": "Someday",
"updated_at": "2021-08-08T01:48:22Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/20"
} | 5 | "2012-09-08T22:58:45Z" | "2014-04-17T19:10:36Z" | "2014-04-17T19:10:36Z" | MEMBER | null | x-reference for someday
http://stackoverflow.com/questions/11194610/how-can-i-reorder-multi-indexed-dataframe-columns-at-a-specific-level
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1864/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1864/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1865 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1865/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1865/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1865/events | https://github.com/pandas-dev/pandas/issues/1865 | 6,738,602 | MDU6SXNzdWU2NzM4NjAy | 1,865 | Add pivot (reshape) option to handle duplicate keys (e.g. take first or last obs) | {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
} | [
{
"color": "4E9A06",
"default": false,
"description": null,
"id": 76812,
"name": "Enhancement",
"node_id": "MDU6TGFiZWw3NjgxMg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Enhancement"
}
] | closed | false | null | [] | {
"closed_at": 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 | "2012-09-08T23:11:02Z" | "2017-01-05T18:14:01Z" | "2017-01-05T18:14:01Z" | MEMBER | null | http://stackoverflow.com/questions/11232275/pandas-pivot-warning-about-repeated-entries-on-index
| {
"+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/1865/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1865/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1866 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1866/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1866/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1866/events | https://github.com/pandas-dev/pandas/issues/1866 | 6,739,082 | MDU6SXNzdWU2NzM5MDgy | 1,866 | Doc build bug | {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
} | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "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": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 0 | "2012-09-09T00:40:21Z" | "2012-09-10T02:39:13Z" | "2012-09-10T02:39:13Z" | MEMBER | null | @changhiskhan there's some bug showing up in the docs but not in the main test suite. Can you have a look?
```
building [html]: targets for 22 source files that are out of date
updating environment: 218 added, 0 changed, 0 removed
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-767-cc6f0e841b62> in <module>()
1 df = read_csv('tmp.csv', header=None, parse_dates=date_spec,
----> 2 date_parser=conv.parse_date_time)
/home/wesm/code/pandas/pandas/io/parsers.pyc in read_csv(filepath_or_buffer, sep, dialect, header, index_col, names, skiprows, na_values, keep_default_na, thousands, comment, parse_dates, keep_date_col, dayfirst, date_parser, nrows, iterator, chunksize, skip_footer, converters, verbose, delimiter, encoding, squeeze)
239 kwds['delimiter'] = sep
240
--> 241 return _read(TextParser, filepath_or_buffer, kwds)
242
243 @Appender(_read_table_doc)
/home/wesm/code/pandas/pandas/io/parsers.pyc in _read(cls, filepath_or_buffer, kwds)
192 return parser
193
--> 194 return parser.get_chunk()
195
196 @Appender(_read_csv_doc)
/home/wesm/code/pandas/pandas/io/parsers.pyc in get_chunk(self, rows)
812 columns = list(self.columns)
813 if self.parse_dates is not None:
--> 814 data, columns = self._process_date_conversion(data)
815
816 df = DataFrame(data=data, columns=columns, index=index)
/home/wesm/code/pandas/pandas/io/parsers.pyc in _process_date_conversion(self, data_dict)
989
990 _, col, old_names = _try_convert_dates(
--> 991 self._conv_date, colspec, data_dict, self.orig_columns)
992
993 new_data[new_name] = col
/home/wesm/code/pandas/pandas/io/parsers.pyc in _try_convert_dates(parser, colspec, data_dict, columns)
1120 to_parse = [data_dict[c] for c in colspec if c in data_dict]
1121 try:
-> 1122 new_col = parser(*to_parse)
1123 except DateConversionError:
1124 new_col = parser(_concat_date_cols(to_parse))
/home/wesm/code/pandas/pandas/io/parsers.pyc in _conv_date(self, *date_cols)
951 return lib.try_parse_dates(_concat_date_cols(date_cols),
952 parser=self.date_parser,
--> 953 dayfirst=self.dayfirst)
954
955 def _process_date_conversion(self, data_dict):
/home/wesm/code/pandas/pandas/lib.so in pandas.lib.try_parse_dates (pandas/src/tseries.c:98928)()
/home/wesm/code/pandas/pandas/lib.so in pandas.lib.try_parse_dates (pandas/src/tseries.c:98870)()
TypeError: parse_date_time() takes exactly 2 arguments (1 given)
reading sources... [100%] whatsnew
/home/wesm/code/pandas/doc/source/faq.rst:74: ERROR: Unknown interpreted text role "issue".
source/v0.8.0.txt:151: WARNING: Inline literal start-st
```
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1866/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1866/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1867 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1867/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1867/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1867/events | https://github.com/pandas-dev/pandas/pull/1867 | 6,739,132 | MDExOlB1bGxSZXF1ZXN0MjI4NjY4Nw== | 1,867 | Add expanding moment functions to docs. | {
"avatar_url": "https://avatars.githubusercontent.com/u/440095?v=4",
"events_url": "https://api.github.com/users/qwhelan/events{/privacy}",
"followers_url": "https://api.github.com/users/qwhelan/followers",
"following_url": "https://api.github.com/users/qwhelan/following{/other_user}",
"gists_url": "https://api.github.com/users/qwhelan/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/qwhelan",
"id": 440095,
"login": "qwhelan",
"node_id": "MDQ6VXNlcjQ0MDA5NQ==",
"organizations_url": "https://api.github.com/users/qwhelan/orgs",
"received_events_url": "https://api.github.com/users/qwhelan/received_events",
"repos_url": "https://api.github.com/users/qwhelan/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/qwhelan/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/qwhelan/subscriptions",
"type": "User",
"url": "https://api.github.com/users/qwhelan"
} | [] | closed | false | null | [] | {
"closed_at": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 1 | "2012-09-09T00:50:48Z" | "2014-06-16T20:12:53Z" | "2012-09-09T01:07:37Z" | CONTRIBUTOR | null | Per @wesm's request on #1785. I wasn't able to get the latex to build, but I believe that was due to a bug that's since been 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/1867/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1867/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/1867.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/1867",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/1867.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/1867"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/1868 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1868/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1868/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1868/events | https://github.com/pandas-dev/pandas/issues/1868 | 6,739,675 | MDU6SXNzdWU2NzM5Njc1 | 1,868 | Use on_demand option in xlrd if available | {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
} | [
{
"color": "4E9A06",
"default": false,
"description": null,
"id": 76812,
"name": "Enhancement",
"node_id": "MDU6TGFiZWw3NjgxMg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Enhancement"
},
{
"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"
} | 1 | "2012-09-09T02:39:50Z" | "2014-03-11T01:35:23Z" | "2014-03-11T01:35:23Z" | MEMBER | null | xref: http://stackoverflow.com/questions/12250024/how-to-obtain-sheet-names-from-xls-files-without-loading-the-whole-file-in-pytho
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1868/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1868/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1869 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1869/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1869/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1869/events | https://github.com/pandas-dev/pandas/issues/1869 | 6,739,680 | MDU6SXNzdWU2NzM5Njgw | 1,869 | Add POSIX timestamp conversion function | {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
} | [
{
"color": "4E9A06",
"default": false,
"description": null,
"id": 76812,
"name": "Enhancement",
"node_id": "MDU6TGFiZWw3NjgxMg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Enhancement"
},
{
"color": "AFEEEE",
"default": false,
"description": null,
"id": 211840,
"name": "Timeseries",
"node_id": "MDU6TGFiZWwyMTE4NDA=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Timeseries"
}
] | closed | false | null | [] | {
"closed_at": "2013-12-30T19:53:14Z",
"closed_issues": 1076,
"created_at": "2012-11-15T23:33:37Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "RC1 ANN went out on 2013-12-6: https://groups.google.com/forum/#!topic/pydata/OHutLByJvK0\r\nTwo weeks, clear all reported bugs then call it on 2013-12-20. \r\n(@y-p)\r\n\r\nsince we've had some bugs reported at a high enough rate, extending rc by one\r\nweek until 2013-12-27. \r\n(@y-p)\r\n\r\nBumping to clear debian sparc\r\n2013-12-30. \r\n(@y-p)",
"due_on": "2013-12-30T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/18",
"id": 213925,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18/labels",
"node_id": "MDk6TWlsZXN0b25lMjEzOTI1",
"number": 18,
"open_issues": 0,
"state": "closed",
"title": "0.13",
"updated_at": "2017-07-22T19:00:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18"
} | 1 | "2012-09-09T02:40:30Z" | "2013-09-20T16:51:47Z" | "2013-09-20T16:51:47Z" | MEMBER | null | http://stackoverflow.com/questions/12251483/idiomatic-way-to-parse-posix-timestamps-in-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/1869/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1869/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1870 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1870/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1870/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1870/events | https://github.com/pandas-dev/pandas/issues/1870 | 6,739,731 | MDU6SXNzdWU2NzM5NzMx | 1,870 | ordered_merge improvements | {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
} | [
{
"color": "4E9A06",
"default": false,
"description": null,
"id": 76812,
"name": "Enhancement",
"node_id": "MDU6TGFiZWw3NjgxMg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Enhancement"
},
{
"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": "2016-10-03T08:52:13Z",
"closed_issues": 733,
"created_at": "2016-03-11T21:24:45Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jreback/followers",
"following_url": "https://api.github.com/users/jreback/following{/other_user}",
"gists_url": "https://api.github.com/users/jreback/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jreback",
"id": 953992,
"login": "jreback",
"node_id": "MDQ6VXNlcjk1Mzk5Mg==",
"organizations_url": "https://api.github.com/users/jreback/orgs",
"received_events_url": "https://api.github.com/users/jreback/received_events",
"repos_url": "https://api.github.com/users/jreback/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jreback/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jreback/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jreback"
},
"description": "",
"due_on": "2016-09-30T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/40",
"id": 1639795,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/40/labels",
"node_id": "MDk6TWlsZXN0b25lMTYzOTc5NQ==",
"number": 40,
"open_issues": 0,
"state": "closed",
"title": "0.19.0",
"updated_at": "2017-11-06T02:01:14Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/40"
} | 6 | "2012-09-09T02:54:08Z" | "2016-06-17T00:09:32Z" | "2016-06-17T00:09:32Z" | MEMBER | null | http://stackoverflow.com/questions/12322289/kdb-like-asof-join-for-timeseries-data-in-pandas/12336039#12336039
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1870/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1870/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1871 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1871/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1871/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1871/events | https://github.com/pandas-dev/pandas/issues/1871 | 6,749,022 | MDU6SXNzdWU2NzQ5MDIy | 1,871 | Improve between_time to be able to select time ranges that cross midnight | {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
} | [
{
"color": "4E9A06",
"default": false,
"description": null,
"id": 76812,
"name": "Enhancement",
"node_id": "MDU6TGFiZWw3NjgxMg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Enhancement"
},
{
"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": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 0 | "2012-09-09T19:23:39Z" | "2012-09-24T21:46:18Z" | "2012-09-24T21:46:18Z" | MEMBER | null | inspired by: http://stackoverflow.com/questions/12041519/how-to-get-the-mean-of-a-specific-span-of-time
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1871/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1871/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1872 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1872/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1872/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1872/events | https://github.com/pandas-dev/pandas/issues/1872 | 6,749,451 | MDU6SXNzdWU2NzQ5NDUx | 1,872 | pandas <-> R binary interface | {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
} | [
{
"color": "4E9A06",
"default": false,
"description": null,
"id": 76812,
"name": "Enhancement",
"node_id": "MDU6TGFiZWw3NjgxMg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Enhancement"
},
{
"color": "06909A",
"default": false,
"description": "IO issues that don't fit into a more specific label",
"id": 2301354,
"name": "IO Data",
"node_id": "MDU6TGFiZWwyMzAxMzU0",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20Data"
}
] | closed | false | null | [] | {
"closed_at": 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"
} | 1 | "2012-09-09T20:15:54Z" | "2016-07-24T03:43:39Z" | "2016-07-24T03:43:39Z" | MEMBER | null | http://stackoverflow.com/questions/12278347/how-can-i-efficiently-save-a-python-pandas-dataframe-in-hdf5-and-open-it-as-a-da
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1872/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1872/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1873 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1873/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1873/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1873/events | https://github.com/pandas-dev/pandas/issues/1873 | 6,749,911 | MDU6SXNzdWU2NzQ5OTEx | 1,873 | Add inplace option to sortlevel / sort functions on DataFrame | {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
} | [
{
"color": "4E9A06",
"default": false,
"description": null,
"id": 76812,
"name": "Enhancement",
"node_id": "MDU6TGFiZWw3NjgxMg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Enhancement"
}
] | closed | false | null | [] | {
"closed_at": "2013-01-18T04:50:20Z",
"closed_issues": 276,
"created_at": "2012-06-27T14:43: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": "",
"due_on": "2012-12-08T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/14",
"id": 137852,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/14/labels",
"node_id": "MDk6TWlsZXN0b25lMTM3ODUy",
"number": 14,
"open_issues": 0,
"state": "closed",
"title": "0.10",
"updated_at": "2013-07-29T03:20:45Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/14"
} | 1 | "2012-09-09T21:09:22Z" | "2012-11-19T00:36:52Z" | "2012-11-19T00:36:52Z" | MEMBER | null | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1873/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1873/timeline | null | null | null |
|
https://api.github.com/repos/pandas-dev/pandas/issues/1874 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1874/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1874/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1874/events | https://github.com/pandas-dev/pandas/issues/1874 | 6,749,932 | MDU6SXNzdWU2NzQ5OTMy | 1,874 | Improve memory usage for large heterogeneous DataFrame in sortlevel | {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
} | [
{
"color": "4E9A06",
"default": false,
"description": null,
"id": 76812,
"name": "Enhancement",
"node_id": "MDU6TGFiZWw3NjgxMg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Enhancement"
},
{
"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": 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"
} | 1 | "2012-09-09T21:12:18Z" | "2018-07-06T21:58:09Z" | "2018-07-06T21:58:05Z" | MEMBER | null | http://stackoverflow.com/questions/11987270/getting-memoryerror-from-dataframe-sortlevel-in-pandas/12343023#12343023
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1874/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1874/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1875 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1875/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1875/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1875/events | https://github.com/pandas-dev/pandas/pull/1875 | 6,750,405 | MDExOlB1bGxSZXF1ZXN0MjI4ODc4OA== | 1,875 | BUG: converters and index_col on same column | {
"avatar_url": "https://avatars.githubusercontent.com/u/759245?v=4",
"events_url": "https://api.github.com/users/changhiskhan/events{/privacy}",
"followers_url": "https://api.github.com/users/changhiskhan/followers",
"following_url": "https://api.github.com/users/changhiskhan/following{/other_user}",
"gists_url": "https://api.github.com/users/changhiskhan/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/changhiskhan",
"id": 759245,
"login": "changhiskhan",
"node_id": "MDQ6VXNlcjc1OTI0NQ==",
"organizations_url": "https://api.github.com/users/changhiskhan/orgs",
"received_events_url": "https://api.github.com/users/changhiskhan/received_events",
"repos_url": "https://api.github.com/users/changhiskhan/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/changhiskhan/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/changhiskhan/subscriptions",
"type": "User",
"url": "https://api.github.com/users/changhiskhan"
} | [] | closed | false | null | [] | {
"closed_at": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 0 | "2012-09-09T22:05:26Z" | "2014-07-09T16:39:27Z" | "2012-09-10T21:59:46Z" | CONTRIBUTOR | null | Also minor refactor of parsers
At some point we need to get rid of all the methods with side effects so the logic is clear.
#1835
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1875/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1875/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/1875.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/1875",
"merged_at": "2012-09-10T21:59:46Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/1875.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/1875"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/1876 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1876/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1876/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1876/events | https://github.com/pandas-dev/pandas/issues/1876 | 6,751,521 | MDU6SXNzdWU2NzUxNTIx | 1,876 | Could the html documentation be provided for download | {
"avatar_url": "https://avatars.githubusercontent.com/u/406907?v=4",
"events_url": "https://api.github.com/users/leoliu/events{/privacy}",
"followers_url": "https://api.github.com/users/leoliu/followers",
"following_url": "https://api.github.com/users/leoliu/following{/other_user}",
"gists_url": "https://api.github.com/users/leoliu/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/leoliu",
"id": 406907,
"login": "leoliu",
"node_id": "MDQ6VXNlcjQwNjkwNw==",
"organizations_url": "https://api.github.com/users/leoliu/orgs",
"received_events_url": "https://api.github.com/users/leoliu/received_events",
"repos_url": "https://api.github.com/users/leoliu/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/leoliu/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/leoliu/subscriptions",
"type": "User",
"url": "https://api.github.com/users/leoliu"
} | [
{
"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": "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": 278,
"created_at": "2013-01-06T03:02:01Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "Milestone for filing things away that may be reached someday (at which point such issues should be moved to the appropriate release milestone)",
"due_on": "2022-12-31T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/20",
"id": 239227,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/20/labels",
"node_id": "MDk6TWlsZXN0b25lMjM5MjI3",
"number": 20,
"open_issues": 108,
"state": "open",
"title": "Someday",
"updated_at": "2021-08-08T01:48:22Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/20"
} | 5 | "2012-09-10T00:50:23Z" | "2016-10-12T23:03:11Z" | "2014-01-20T23:59:21Z" | NONE | null | I like html documentation for offline browsing. I wonder if pandas could do the same as django or the official python documentation to provide a html tarball for download. Thank you.
BTW, I have tried building the pandas html documentation from a git checkout and didn't 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/1876/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1876/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1877 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1877/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1877/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1877/events | https://github.com/pandas-dev/pandas/issues/1877 | 6,751,545 | MDU6SXNzdWU2NzUxNTQ1 | 1,877 | Expected behavior for asi8 property? | {
"avatar_url": "https://avatars.githubusercontent.com/u/112979?v=4",
"events_url": "https://api.github.com/users/szs8/events{/privacy}",
"followers_url": "https://api.github.com/users/szs8/followers",
"following_url": "https://api.github.com/users/szs8/following{/other_user}",
"gists_url": "https://api.github.com/users/szs8/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/szs8",
"id": 112979,
"login": "szs8",
"node_id": "MDQ6VXNlcjExMjk3OQ==",
"organizations_url": "https://api.github.com/users/szs8/orgs",
"received_events_url": "https://api.github.com/users/szs8/received_events",
"repos_url": "https://api.github.com/users/szs8/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/szs8/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/szs8/subscriptions",
"type": "User",
"url": "https://api.github.com/users/szs8"
} | [] | closed | false | null | [] | null | 2 | "2012-09-10T00:54:25Z" | "2012-09-13T02:07:44Z" | "2012-09-11T02:41:48Z" | NONE | null | Does asi8 always return int64 timestamps in UTC?
I have 2 dataframes : df with index in UTC and df2 with index in US/Eastern. The timezones are correctly interpreted but when I convert them to int64, I was a little surprised to find that both are identical. Is that intentional? Thanks.
In [137]: df.index
Out[137]:
<class 'pandas.tseries.index.DatetimeIndex'>
[2010-09-01 14:30:00.228000, ..., 2010-09-01 18:14:59.909000]
Length: 20604, Freq: None, Timezone: UTC
In [138]: df2.index
Out[138]:
<class 'pandas.tseries.index.DatetimeIndex'>
[2010-09-01 10:30:00.228000, ..., 2010-09-01 14:14:59.909000]
Length: 20604, Freq: None, Timezone: US/Eastern
In [139]: df.index.asi8 == df2.index.asi8
Out[139]: array([ True, True, True, ..., True, True, True], dtype=bool)
In [140]: np.all(df.index.asi8 == df2.index.asi8)
Out[140]: 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/1877/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1877/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1878 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1878/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1878/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1878/events | https://github.com/pandas-dev/pandas/issues/1878 | 6,751,942 | MDU6SXNzdWU2NzUxOTQy | 1,878 | Apply Across Non-Unique Indices. | {
"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"
}
] | closed | false | null | [] | {
"closed_at": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 0 | "2012-09-10T01:52:52Z" | "2016-10-12T23:03:11Z" | "2012-09-18T20:21:41Z" | CONTRIBUTOR | null | Applying a function across a data-frame does not seem to work for non-unique indices.
```
df = pandas.DataFrame([[1,1,1], [2,2,2], [3,3,3]], index=['a','a','c'])
df.apply(lambda s: s[0], axis=1)
a 2
a 2
c 3
```
It seems to be just returning the value for the first instance of the index.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1878/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1878/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1879 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1879/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1879/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1879/events | https://github.com/pandas-dev/pandas/pull/1879 | 6,752,096 | MDExOlB1bGxSZXF1ZXN0MjI4OTM1Mg== | 1,879 | BUG: start_time on Period fix | {
"avatar_url": "https://avatars.githubusercontent.com/u/759245?v=4",
"events_url": "https://api.github.com/users/changhiskhan/events{/privacy}",
"followers_url": "https://api.github.com/users/changhiskhan/followers",
"following_url": "https://api.github.com/users/changhiskhan/following{/other_user}",
"gists_url": "https://api.github.com/users/changhiskhan/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/changhiskhan",
"id": 759245,
"login": "changhiskhan",
"node_id": "MDQ6VXNlcjc1OTI0NQ==",
"organizations_url": "https://api.github.com/users/changhiskhan/orgs",
"received_events_url": "https://api.github.com/users/changhiskhan/received_events",
"repos_url": "https://api.github.com/users/changhiskhan/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/changhiskhan/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/changhiskhan/subscriptions",
"type": "User",
"url": "https://api.github.com/users/changhiskhan"
} | [] | closed | false | null | [] | {
"closed_at": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 0 | "2012-09-10T02:08:28Z" | "2013-12-04T00:43:04Z" | "2012-09-10T21:57:09Z" | CONTRIBUTOR | null | For A-W frequencies, get the starting DAY
For H-S frequencies, get the starting SEC
For B, D, and S, start == end
#1857
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1879/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1879/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/1879.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/1879",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/1879.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/1879"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/1880 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1880/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1880/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1880/events | https://github.com/pandas-dev/pandas/issues/1880 | 6,760,636 | MDU6SXNzdWU2NzYwNjM2 | 1,880 | gcc crashed when building pandas | {
"avatar_url": "https://avatars.githubusercontent.com/u/97742?v=4",
"events_url": "https://api.github.com/users/codeape2/events{/privacy}",
"followers_url": "https://api.github.com/users/codeape2/followers",
"following_url": "https://api.github.com/users/codeape2/following{/other_user}",
"gists_url": "https://api.github.com/users/codeape2/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/codeape2",
"id": 97742,
"login": "codeape2",
"node_id": "MDQ6VXNlcjk3NzQy",
"organizations_url": "https://api.github.com/users/codeape2/orgs",
"received_events_url": "https://api.github.com/users/codeape2/received_events",
"repos_url": "https://api.github.com/users/codeape2/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/codeape2/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/codeape2/subscriptions",
"type": "User",
"url": "https://api.github.com/users/codeape2"
} | [
{
"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-01-18T04:50:20Z",
"closed_issues": 276,
"created_at": "2012-06-27T14:43: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": "",
"due_on": "2012-12-08T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/14",
"id": 137852,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/14/labels",
"node_id": "MDk6TWlsZXN0b25lMTM3ODUy",
"number": 14,
"open_issues": 0,
"state": "closed",
"title": "0.10",
"updated_at": "2013-07-29T03:20:45Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/14"
} | 24 | "2012-09-10T12:38:54Z" | "2015-12-19T11:03:26Z" | "2012-09-11T05:29:26Z" | NONE | null | I experienced a gcc crash when building the latest pandas.
This was on Ubuntu 12.04 gcc version 4.6, Cython 0.17.
On Ubuntu 11.10 gcc version 4.6.1, Cython 0.14 I did not have the issue.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1880/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1880/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1881 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1881/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1881/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1881/events | https://github.com/pandas-dev/pandas/issues/1881 | 6,761,793 | MDU6SXNzdWU2NzYxNzkz | 1,881 | Backwards incompatibility in io/pytables with existing data prior to 0.8 causes data corruption | {
"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": "06909A",
"default": false,
"description": "IO issues that don't fit into a more specific label",
"id": 2301354,
"name": "IO Data",
"node_id": "MDU6TGFiZWwyMzAxMzU0",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20Data"
}
] | closed | false | null | [] | {
"closed_at": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 1 | "2012-09-10T13:27:05Z" | "2012-09-17T18:03:53Z" | "2012-09-17T18:03:39Z" | CONTRIBUTOR | null | trying to append to a table that was created before 0.8 (e.g. before the kind of datetime64 existed) causes corrupted data (essentially the index is converted to datetime64, but since its in nanoseconds, existing datetimes are not evaluated correctly). easiest to convert existing data (read in and just write it out), so this patch is simply an exception which is raised if incompatble kinds are detected.
```
---
pandas/io/pytables.py | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/pandas/io/pytables.py b/pandas/io/pytables.py
index 0f386c7..e3b84fb 100755
--- a/pandas/io/pytables.py
+++ b/pandas/io/pytables.py
@@ -825,6 +825,12 @@ class HDFStore(object):
# the table must already exist
table = getattr(group, 'table', None)
+ # check for backwards incompatibility
+ if append:
+ existing_kind = table._v_attrs.index_kind
+ if existing_kind != index_kind:
+ raise Exception("incompatible kind in index [%s - %s]" % (existing_kind,index_kind))
+
# add kinds
table._v_attrs.index_kind = index_kind
table._v_attrs.columns_kind = cols_kind
--
1.7.2.5
```
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1881/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1881/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1882 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1882/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1882/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1882/events | https://github.com/pandas-dev/pandas/pull/1882 | 6,765,864 | MDExOlB1bGxSZXF1ZXN0MjI5NTEyNA== | 1,882 | BUG: mixed float64 float32 merge failure | {
"avatar_url": "https://avatars.githubusercontent.com/u/759245?v=4",
"events_url": "https://api.github.com/users/changhiskhan/events{/privacy}",
"followers_url": "https://api.github.com/users/changhiskhan/followers",
"following_url": "https://api.github.com/users/changhiskhan/following{/other_user}",
"gists_url": "https://api.github.com/users/changhiskhan/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/changhiskhan",
"id": 759245,
"login": "changhiskhan",
"node_id": "MDQ6VXNlcjc1OTI0NQ==",
"organizations_url": "https://api.github.com/users/changhiskhan/orgs",
"received_events_url": "https://api.github.com/users/changhiskhan/received_events",
"repos_url": "https://api.github.com/users/changhiskhan/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/changhiskhan/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/changhiskhan/subscriptions",
"type": "User",
"url": "https://api.github.com/users/changhiskhan"
} | [] | closed | false | null | [] | {
"closed_at": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 1 | "2012-09-10T16:15:45Z" | "2013-12-04T00:43:03Z" | "2012-09-10T21:53:14Z" | CONTRIBUTOR | null | Now maps FloatBlock type to list of blocks in each join unit.
Also checks for out type in merge blocks, otherwise if float32 block appears first then merge fails
#1849
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1882/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1882/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/1882.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/1882",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/1882.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/1882"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/1883 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1883/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1883/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1883/events | https://github.com/pandas-dev/pandas/issues/1883 | 6,766,350 | MDU6SXNzdWU2NzY2MzUw | 1,883 | Series or DataFrame asof() fails when the index is a PeriodIndex and the value is a datetime or Timestamp | {
"avatar_url": "https://avatars.githubusercontent.com/u/1173125?v=4",
"events_url": "https://api.github.com/users/ijmcf/events{/privacy}",
"followers_url": "https://api.github.com/users/ijmcf/followers",
"following_url": "https://api.github.com/users/ijmcf/following{/other_user}",
"gists_url": "https://api.github.com/users/ijmcf/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/ijmcf",
"id": 1173125,
"login": "ijmcf",
"node_id": "MDQ6VXNlcjExNzMxMjU=",
"organizations_url": "https://api.github.com/users/ijmcf/orgs",
"received_events_url": "https://api.github.com/users/ijmcf/received_events",
"repos_url": "https://api.github.com/users/ijmcf/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/ijmcf/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/ijmcf/subscriptions",
"type": "User",
"url": "https://api.github.com/users/ijmcf"
} | [
{
"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": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 2 | "2012-09-10T16:33:44Z" | "2016-10-12T23:03:11Z" | "2012-09-17T19:16:30Z" | NONE | null | For example:
> > > pi = pandas.period_range('2012/09/10', periods=10, freq='D')
> > > s = pandas.TimeSeries(data=range(len(pi)), index=pi)
> > > dt = pandas.Timestamp('2012/09/13')
> > >
> > > s[dt]
> > > 3
> >
> > s.asof(dt)
> > TypeError: Cannot compare Timestamp with 25-May-2012
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1883/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1883/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1884 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1884/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1884/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1884/events | https://github.com/pandas-dev/pandas/issues/1884 | 6,769,949 | MDU6SXNzdWU2NzY5OTQ5 | 1,884 | pandas.rolling_std() first value is nan | {
"avatar_url": "https://avatars.githubusercontent.com/u/27430?v=4",
"events_url": "https://api.github.com/users/erg/events{/privacy}",
"followers_url": "https://api.github.com/users/erg/followers",
"following_url": "https://api.github.com/users/erg/following{/other_user}",
"gists_url": "https://api.github.com/users/erg/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/erg",
"id": 27430,
"login": "erg",
"node_id": "MDQ6VXNlcjI3NDMw",
"organizations_url": "https://api.github.com/users/erg/orgs",
"received_events_url": "https://api.github.com/users/erg/received_events",
"repos_url": "https://api.github.com/users/erg/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/erg/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/erg/subscriptions",
"type": "User",
"url": "https://api.github.com/users/erg"
} | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "4E9A06",
"default": false,
"description": null,
"id": 76812,
"name": "Enhancement",
"node_id": "MDU6TGFiZWw3NjgxMg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Enhancement"
}
] | closed | false | null | [] | {
"closed_at": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 5 | "2012-09-10T18:34:27Z" | "2012-09-13T01:23:16Z" | "2012-09-13T01:22:46Z" | CONTRIBUTOR | null | The window is 3, but we want a std at `min_periods=1`. The one-period standard deviation is trivially 0.
```
In [28]: pandas.rolling_std(np.array([1,2,3,4,5], dtype='double'), 3, min_periods=1)
Out[28]: array([ nan, 0.70710678, 1. , 1. , 1. ])
```
The pathological case:
```
In [29]: pandas.rolling_std(np.array([1,2,3,4,5], dtype='double'), 1, min_periods=1)
Out[29]: array([ nan, nan, nan, nan, nan])
```
Maybe it's because pandas is taking the unbiased std for `N-1` where `N = 1`, so it's dividing by zero?
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1884/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1884/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1885 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1885/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1885/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1885/events | https://github.com/pandas-dev/pandas/issues/1885 | 6,772,425 | MDU6SXNzdWU2NzcyNDI1 | 1,885 | df.set_index() fails for MultiIndex columns | {
"avatar_url": "https://avatars.githubusercontent.com/u/1094464?v=4",
"events_url": "https://api.github.com/users/lodagro/events{/privacy}",
"followers_url": "https://api.github.com/users/lodagro/followers",
"following_url": "https://api.github.com/users/lodagro/following{/other_user}",
"gists_url": "https://api.github.com/users/lodagro/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/lodagro",
"id": 1094464,
"login": "lodagro",
"node_id": "MDQ6VXNlcjEwOTQ0NjQ=",
"organizations_url": "https://api.github.com/users/lodagro/orgs",
"received_events_url": "https://api.github.com/users/lodagro/received_events",
"repos_url": "https://api.github.com/users/lodagro/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/lodagro/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/lodagro/subscriptions",
"type": "User",
"url": "https://api.github.com/users/lodagro"
} | [
{
"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": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 1 | "2012-09-10T19:43:48Z" | "2012-09-20T16:49:01Z" | "2012-09-18T02:17:42Z" | CONTRIBUTOR | null | ``` python
In [20]: columns = pandas.MultiIndex.from_tuples([('foo', 1), ('foo', 2), ('bar', 1)])
In [21]: df = pandas.DataFrame(np.random.randint(0, 10, (3,3)), columns=columns)
In [22]: df
Out[22]:
foo bar
1 2 1
0 0 5 0
1 5 6 6
2 5 1 6
In [23]: df.set_index(df.columns[0])
---------------------------------------------------------------------------
KeyError Traceback (most recent call last)
```
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1885/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1885/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1886 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1886/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1886/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1886/events | https://github.com/pandas-dev/pandas/issues/1886 | 6,773,580 | MDU6SXNzdWU2NzczNTgw | 1,886 | pytables - optimized delete operation on a table | {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jreback/followers",
"following_url": "https://api.github.com/users/jreback/following{/other_user}",
"gists_url": "https://api.github.com/users/jreback/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jreback",
"id": 953992,
"login": "jreback",
"node_id": "MDQ6VXNlcjk1Mzk5Mg==",
"organizations_url": "https://api.github.com/users/jreback/orgs",
"received_events_url": "https://api.github.com/users/jreback/received_events",
"repos_url": "https://api.github.com/users/jreback/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jreback/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jreback/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jreback"
} | [] | closed | false | null | [] | null | 1 | "2012-09-10T20:27:32Z" | "2012-09-10T21:00:09Z" | "2012-09-10T20:59:39Z" | CONTRIBUTOR | null | following code allows consecutive delete operations to use native tables methods and
consequently is much more effecient that individual row deletes. existing tests still pass.
#### replace HDFStore._delete_from_table with the following
```
def _delete_from_table(self, group, where = None):
table = getattr(group, 'table')
# create the selection
s = hdf.Selection(table,where,table._v_attrs.index_kind)
s.select_coords()
# delete the rows in reverse order
l = list(s.values)
ln = len(l)
if ln:
# if we can do a consecutive removal - do it!
if l[0]+ln-1 == l[-1]:
table.removeRows(start = l[0], stop = l[-1]+1)
# one by one
else:
l.reverse()
for c in l:
table.removeRows(c)
self.handle.flush()
return ln
```
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1886/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1886/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1887 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1887/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1887/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1887/events | https://github.com/pandas-dev/pandas/issues/1887 | 6,773,972 | MDU6SXNzdWU2NzczOTcy | 1,887 | Series repr issue (numpy.int64) | {
"avatar_url": "https://avatars.githubusercontent.com/u/1094464?v=4",
"events_url": "https://api.github.com/users/lodagro/events{/privacy}",
"followers_url": "https://api.github.com/users/lodagro/followers",
"following_url": "https://api.github.com/users/lodagro/following{/other_user}",
"gists_url": "https://api.github.com/users/lodagro/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/lodagro",
"id": 1094464,
"login": "lodagro",
"node_id": "MDQ6VXNlcjEwOTQ0NjQ=",
"organizations_url": "https://api.github.com/users/lodagro/orgs",
"received_events_url": "https://api.github.com/users/lodagro/received_events",
"repos_url": "https://api.github.com/users/lodagro/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/lodagro/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/lodagro/subscriptions",
"type": "User",
"url": "https://api.github.com/users/lodagro"
} | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "ededed",
"default": false,
"description": "__repr__ of pandas 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": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 1 | "2012-09-10T20:42:21Z" | "2012-09-10T22:09:42Z" | "2012-09-10T22:09:37Z" | CONTRIBUTOR | null | ``` python
In [18]: df = pandas.DataFrame(np.random.randn(4,4))
In [19]: s = df.ix[3]
In [20]: type(s.name)
Out[20]: numpy.int64
In [21]: s
Out[21]: ---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
...
TypeError: 'numpy.int64' object is not iterable
```
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1887/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1887/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1888 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1888/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1888/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1888/events | https://github.com/pandas-dev/pandas/issues/1888 | 6,774,916 | MDU6SXNzdWU2Nzc0OTE2 | 1,888 | panel ix change in 0.8? | {
"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"
}
] | closed | false | null | [] | {
"closed_at": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 1 | "2012-09-10T21:22:38Z" | "2012-09-17T20:23:33Z" | "2012-09-17T20:23:06Z" | CONTRIBUTOR | null | seems p.ix[:,[-1],:] throws an exception (from take)
p.ix[:,-1:,:] is the workaround
maybe add to the docs?
ipython session follows:
9/10/12 panel test ix change
```
1/2
In [7]:
In [2]:
Out[2]: <class 'pandas.core.panel.Panel'>
Dimensions: 2 (items) x 8 (major) x 4 (minor)
Items: Item1 to Item2
Major axis: 2000-01-01 00:00:00 to 2000-01-08 00:00:00
Minor axis: A to D
In [6]:
\---------------------------------------------------------------------------
Exception Traceback (most recent call last)
/mnt/home/jreback/<ipython-input-6-1531bef93beb> in <module>()
1 # this worked prior to 0.8
----> 2 p.ix[:,[-1],:]
/usr/local/lib/python2.7/site-packages/pandas-0.8.1-py2.7-linuxx86_
64.egg/pandas/core/indexing.pyc in __getitem__(self, key)
31 pass
32
---> 33 return self._getitem_tuple(key)
34 else:
35 return self._getitem_axis(key, axis=0)
/usr/local/lib/python2.7/site-packages/pandas-0.8.1-py2.7-linuxx86_
64.egg/pandas/core/indexing.pyc in _getitem_tuple(self, tup)
137 continue
138
--> 139 retval = retval.ix._getitem_axis(key, axis=i)
140
141 return retval
/usr/local/lib/python2.7/site-packages/pandas-0.8.1-py2.7-linuxx86_
64.egg/pandas/core/indexing.pyc in _getitem_axis(self, key, axis)
247 raise ValueError('Cannot index with multidimensional key')
248
--> 249 return self._getitem_iterable(key, axis=axis)
250 elif axis == 0:
251 is_int_index = _is_integer_index(labels)
/usr/local/lib/python2.7/site-packages/pandas-0.8.1-py2.7-linuxx86_
64.egg/pandas/core/indexing.pyc in _getitem_iterable(self, key, axis)
295
296 if _is_integer_dtype(keyarr) and not _is_integer_index(labels):
--> 297 return self.obj.take(keyarr, axis=axis)
298
299 # this is not the most robust, but...
/usr/local/lib/python2.7/site-packages/pandas-0.8.1-py2.7-linuxx86_
64.egg/pandas/core/generic.pyc in take(self, indices, axis)
857 new_data = self._data.reindex_axis(new_items, axis=0)
858 else:
import pandas
index = pandas.date_range('1/1/2000', periods=8,)
p = pandas.Panel(np.random.randn(2, len(index), 4), items=['Item1', 'Item2'], major_axis
p
\# this worked prior to 0.8
p.ix[:,[-1],:]
9/10/12 panel test ix change
2/2
--> 859 new_data = self._data.take(indices, axis=axis)
860 return self._constructor(new_data)
861
/usr/local/lib/python2.7/site-packages/pandas-0.8.1-py2.7-linuxx86_
64.egg/pandas/core/internals.pyc in take(self, indexer, axis)
1075 n = len(self.axes[axis])
1076 if ((indexer == -1) | (indexer >= n)).any():
-> 1077 raise Exception('Indices must be nonzero and less than '
1078 'the axis length')
1079
Exception: Indices must be nonzero and less than the axis length
In [5]:
Out[5]: <class 'pandas.core.panel.Panel'>
Dimensions: 2 (items) x 1 (major) x 4 (minor)
Items: Item1 to Item2
Major axis: 2000-01-08 00:00:00 to 2000-01-08 00:00:00
Minor axis: A to D
In [ ]:
\# this works ok
p.ix[:,-1:,:]
```
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1888/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1888/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1889 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1889/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1889/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1889/events | https://github.com/pandas-dev/pandas/issues/1889 | 6,779,178 | MDU6SXNzdWU2Nzc5MTc4 | 1,889 | Add a DataFrame.show() method pls! | {
"avatar_url": "https://avatars.githubusercontent.com/u/1404757?v=4",
"events_url": "https://api.github.com/users/halleygithub/events{/privacy}",
"followers_url": "https://api.github.com/users/halleygithub/followers",
"following_url": "https://api.github.com/users/halleygithub/following{/other_user}",
"gists_url": "https://api.github.com/users/halleygithub/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/halleygithub",
"id": 1404757,
"login": "halleygithub",
"node_id": "MDQ6VXNlcjE0MDQ3NTc=",
"organizations_url": "https://api.github.com/users/halleygithub/orgs",
"received_events_url": "https://api.github.com/users/halleygithub/received_events",
"repos_url": "https://api.github.com/users/halleygithub/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/halleygithub/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/halleygithub/subscriptions",
"type": "User",
"url": "https://api.github.com/users/halleygithub"
} | [
{
"color": "4E9A06",
"default": false,
"description": null,
"id": 76812,
"name": "Enhancement",
"node_id": "MDU6TGFiZWw3NjgxMg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Enhancement"
},
{
"color": "ededed",
"default": false,
"description": "__repr__ 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": 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"
} | 14 | "2012-09-11T01:38:17Z" | "2016-04-09T23:09:19Z" | "2016-04-09T23:09:18Z" | NONE | null | 'print df' will give something like below if the dataframe 'df' is big to fit into the screen :
<class 'pandas.core.frame.DataFrame'>
MultiIndex: 41955 entries, (u'000002', u'20061231') to (u'603366', u'20120630')
Columns: 147 entries, STK_ID to EPS
dtypes: float64(135), object(12)
But most of the time, I want to have a glimpse of the data , which help to know what happened to the dataframe.
Can Pandas developers add a 'show()' method to DataFrame object to display part of the data inside ? Namely, show the four corner (up_left, up_right, down_left, down_right) data, and use '...' to represent the omitted part ?
somewhat like :
```
STK_ID RPT_Date STK_Name .. OprCF_PS EPS
```
STK_ID RPT_Date
000002 20061231 000002 20061231 万科A .. -0.692 0.526
20070331 000002 20070331 万科A .. -0.741 0.140
20070630 000002 20070630 万科A .. -0.454 0.254
............... ............. ............... ........... ... .......... .....
20071231 000002 20071231 万科A .. -1.519 0.705
20080331 000002 20080331 万科A .. -0.207 0.105
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1889/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1889/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1890 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1890/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1890/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1890/events | https://github.com/pandas-dev/pandas/issues/1890 | 6,788,535 | MDU6SXNzdWU2Nzg4NTM1 | 1,890 | `TimeSeries.plot` ignores `color` kwarg | {
"avatar_url": "https://avatars.githubusercontent.com/u/358378?v=4",
"events_url": "https://api.github.com/users/andreas-h/events{/privacy}",
"followers_url": "https://api.github.com/users/andreas-h/followers",
"following_url": "https://api.github.com/users/andreas-h/following{/other_user}",
"gists_url": "https://api.github.com/users/andreas-h/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/andreas-h",
"id": 358378,
"login": "andreas-h",
"node_id": "MDQ6VXNlcjM1ODM3OA==",
"organizations_url": "https://api.github.com/users/andreas-h/orgs",
"received_events_url": "https://api.github.com/users/andreas-h/received_events",
"repos_url": "https://api.github.com/users/andreas-h/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/andreas-h/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/andreas-h/subscriptions",
"type": "User",
"url": "https://api.github.com/users/andreas-h"
} | [
{
"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": "2012-11-18T18:54:52Z",
"closed_issues": 130,
"created_at": "2012-10-11T19:38:39Z",
"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": "",
"due_on": "2012-10-27T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/17",
"id": 194158,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/17/labels",
"node_id": "MDk6TWlsZXN0b25lMTk0MTU4",
"number": 17,
"open_issues": 0,
"state": "closed",
"title": "0.9.1",
"updated_at": "2012-11-19T16:07:57Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/17"
} | 6 | "2012-09-11T11:49:09Z" | "2012-10-31T20:21:18Z" | "2012-10-31T20:21:18Z" | CONTRIBUTOR | null | I know this looks like a duplicate of #1636, but even with pandas 0.8.1, I don't get the expected plotting behaviour:
```
In [1]: from numpy import arange
In [2]: import matplotlib.pyplot as plt
In [3]: import pandas
In [4]: pandas.__version__
Out[4]: '0.8.1'
In [5]: plt.figure()
Out[5]: <matplotlib.figure.Figure at 0x33afd50>
In [6]: plt.plot(arange(12), arange(12), color='green') # this line is green
Out[6]: [<matplotlib.lines.Line2D at 0x337c150>]
In [7]: pandas.Series(arange(12) + 1).plot(color='green') # this line is blue
Out[7]: <matplotlib.axes.AxesSubplot at 0x33c80d0>
```
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1890/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1890/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1891 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1891/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1891/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1891/events | https://github.com/pandas-dev/pandas/issues/1891 | 6,790,367 | MDU6SXNzdWU2NzkwMzY3 | 1,891 | read_csv utf-8 edge case with U+2028 (line separator) | {
"avatar_url": "https://avatars.githubusercontent.com/u/19950?v=4",
"events_url": "https://api.github.com/users/ariddell/events{/privacy}",
"followers_url": "https://api.github.com/users/ariddell/followers",
"following_url": "https://api.github.com/users/ariddell/following{/other_user}",
"gists_url": "https://api.github.com/users/ariddell/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/ariddell",
"id": 19950,
"login": "ariddell",
"node_id": "MDQ6VXNlcjE5OTUw",
"organizations_url": "https://api.github.com/users/ariddell/orgs",
"received_events_url": "https://api.github.com/users/ariddell/received_events",
"repos_url": "https://api.github.com/users/ariddell/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/ariddell/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/ariddell/subscriptions",
"type": "User",
"url": "https://api.github.com/users/ariddell"
} | [] | closed | false | null | [] | {
"closed_at": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 2 | "2012-09-11T13:17:59Z" | "2012-09-13T02:30:43Z" | "2012-09-13T02:30:11Z" | NONE | null | I'm using Python 2.7 but this may be an issue for Python 3 as well.
```
In [6]: pd.io.parsers.read_csv('pandasproblem.csv',encoding="utf-8").shape
Out[6]: (2, 2)
In [7]: pd.io.parsers.read_csv('pandasproblem.csv').shape
Out[7]: (1, 2)
```
Note the different shape.
Contents of pandasproblem.csv:
```
Id,StringCol
7117434,Is it possible to modify drop plot code so that the output graph is displayed in iphone simulator, Is it possible to modify drop plot code so that the output graph is
displayed in iphone simulator.Now we are adding the CSV file externally. I want to Call the File through the code..
```
So I guess the line separator U+2028 (between "is" and "displayed") gets interpreted as '\n' which it surely should not be interpreted as.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1891/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1891/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1892 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1892/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1892/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1892/events | https://github.com/pandas-dev/pandas/issues/1892 | 6,794,437 | MDU6SXNzdWU2Nzk0NDM3 | 1,892 | limit keyword for interpolate | {
"avatar_url": "https://avatars.githubusercontent.com/u/759245?v=4",
"events_url": "https://api.github.com/users/changhiskhan/events{/privacy}",
"followers_url": "https://api.github.com/users/changhiskhan/followers",
"following_url": "https://api.github.com/users/changhiskhan/following{/other_user}",
"gists_url": "https://api.github.com/users/changhiskhan/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/changhiskhan",
"id": 759245,
"login": "changhiskhan",
"node_id": "MDQ6VXNlcjc1OTI0NQ==",
"organizations_url": "https://api.github.com/users/changhiskhan/orgs",
"received_events_url": "https://api.github.com/users/changhiskhan/received_events",
"repos_url": "https://api.github.com/users/changhiskhan/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/changhiskhan/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/changhiskhan/subscriptions",
"type": "User",
"url": "https://api.github.com/users/changhiskhan"
} | [
{
"color": "4E9A06",
"default": false,
"description": null,
"id": 76812,
"name": "Enhancement",
"node_id": "MDU6TGFiZWw3NjgxMg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Enhancement"
},
{
"color": "d7e102",
"default": false,
"description": "np.nan, pd.NaT, pd.NA, dropna, isnull, interpolate",
"id": 2822342,
"name": "Missing-data",
"node_id": "MDU6TGFiZWwyODIyMzQy",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Missing-data"
},
{
"color": "006b75",
"default": false,
"description": "Arithmetic, Comparison, and Logical operations",
"id": 47223669,
"name": "Numeric Operations",
"node_id": "MDU6TGFiZWw0NzIyMzY2OQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Numeric%20Operations"
}
] | closed | false | null | [] | {
"closed_at": "2013-12-30T19:53:14Z",
"closed_issues": 1076,
"created_at": "2012-11-15T23:33:37Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"following_url": "https://api.github.com/users/wesm/following{/other_user}",
"gists_url": "https://api.github.com/users/wesm/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/wesm",
"id": 329591,
"login": "wesm",
"node_id": "MDQ6VXNlcjMyOTU5MQ==",
"organizations_url": "https://api.github.com/users/wesm/orgs",
"received_events_url": "https://api.github.com/users/wesm/received_events",
"repos_url": "https://api.github.com/users/wesm/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/wesm/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wesm/subscriptions",
"type": "User",
"url": "https://api.github.com/users/wesm"
},
"description": "RC1 ANN went out on 2013-12-6: https://groups.google.com/forum/#!topic/pydata/OHutLByJvK0\r\nTwo weeks, clear all reported bugs then call it on 2013-12-20. \r\n(@y-p)\r\n\r\nsince we've had some bugs reported at a high enough rate, extending rc by one\r\nweek until 2013-12-27. \r\n(@y-p)\r\n\r\nBumping to clear debian sparc\r\n2013-12-30. \r\n(@y-p)",
"due_on": "2013-12-30T08:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/18",
"id": 213925,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18/labels",
"node_id": "MDk6TWlsZXN0b25lMjEzOTI1",
"number": 18,
"open_issues": 0,
"state": "closed",
"title": "0.13",
"updated_at": "2017-07-22T19:00:05Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/18"
} | 5 | "2012-09-11T16:35:02Z" | "2017-05-23T11:10:34Z" | "2013-10-09T20:30:41Z" | CONTRIBUTOR | null | need to also define whether limit is relative to most recent non-na or immediate next non-na
based on SO discussion in http://stackoverflow.com/questions/12372899/bug-in-pandas-series-dataframe-fillna-limit
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1892/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1892/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1893 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1893/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1893/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1893/events | https://github.com/pandas-dev/pandas/issues/1893 | 6,794,481 | MDU6SXNzdWU2Nzk0NDgx | 1,893 | Inplace returns self? | {
"avatar_url": "https://avatars.githubusercontent.com/u/296164?v=4",
"events_url": "https://api.github.com/users/jseabold/events{/privacy}",
"followers_url": "https://api.github.com/users/jseabold/followers",
"following_url": "https://api.github.com/users/jseabold/following{/other_user}",
"gists_url": "https://api.github.com/users/jseabold/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jseabold",
"id": 296164,
"login": "jseabold",
"node_id": "MDQ6VXNlcjI5NjE2NA==",
"organizations_url": "https://api.github.com/users/jseabold/orgs",
"received_events_url": "https://api.github.com/users/jseabold/received_events",
"repos_url": "https://api.github.com/users/jseabold/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jseabold/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jseabold/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jseabold"
} | [
{
"color": "4E9A06",
"default": false,
"description": null,
"id": 76812,
"name": "Enhancement",
"node_id": "MDU6TGFiZWw3NjgxMg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Enhancement"
}
] | closed | false | null | [] | {
"closed_at": "2013-05-10T10:57:28Z",
"closed_issues": 340,
"created_at": "2013-01-18T03:58:28Z",
"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": "",
"due_on": "2013-04-26T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/21",
"id": 246733,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/21/labels",
"node_id": "MDk6TWlsZXN0b25lMjQ2NzMz",
"number": 21,
"open_issues": 0,
"state": "closed",
"title": "0.11",
"updated_at": "2013-11-24T16:49:49Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/21"
} | 52 | "2012-09-11T16:36:54Z" | "2013-03-31T20:37:46Z" | "2013-03-31T20:37:46Z" | CONTRIBUTOR | null | Is there any reason that whenever I'm doing inplace=True I always get self returned? Obviously not a huge deal, but this is kind of wart-y IMO. I wouldn't expect inplace to return anything.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1893/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1893/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1894 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1894/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1894/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1894/events | https://github.com/pandas-dev/pandas/issues/1894 | 6,794,953 | MDU6SXNzdWU2Nzk0OTUz | 1,894 | Sort by column but keep index | {
"avatar_url": "https://avatars.githubusercontent.com/u/296164?v=4",
"events_url": "https://api.github.com/users/jseabold/events{/privacy}",
"followers_url": "https://api.github.com/users/jseabold/followers",
"following_url": "https://api.github.com/users/jseabold/following{/other_user}",
"gists_url": "https://api.github.com/users/jseabold/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/jseabold",
"id": 296164,
"login": "jseabold",
"node_id": "MDQ6VXNlcjI5NjE2NA==",
"organizations_url": "https://api.github.com/users/jseabold/orgs",
"received_events_url": "https://api.github.com/users/jseabold/received_events",
"repos_url": "https://api.github.com/users/jseabold/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/jseabold/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jseabold/subscriptions",
"type": "User",
"url": "https://api.github.com/users/jseabold"
} | [
{
"color": "DDDDDD",
"default": false,
"description": "Long-Term Enhancement Discussions",
"id": 157369,
"name": "Ideas",
"node_id": "MDU6TGFiZWwxNTczNjk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Ideas"
}
] | closed | false | null | [] | null | 1 | "2012-09-11T16:53:24Z" | "2012-09-26T14:06:22Z" | "2012-09-26T14:06:22Z" | CONTRIBUTOR | null | I find myself using DataFrames a lot for obvious reasons but not using the indexing magics all the time. I can get by fine with an integer index a la numpy. This leads to situations where I have to do things like this quite often
``` python
df = df.drop(drop_idx)
df.index = pandas.Index(range(len(df)))
```
or
``` python
df.sort(columns='col1', inplace=True)
df.index = pandas.Index(range(len(df)))
```
Might be nice to have some sort of keyword in these situations to either reset the index or keep the index unless there's a better way. I always read the docs for reset_index too to see that I'm not missing this functionality there. Don't have time to look into this now but just thought I'd float the idea.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1894/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1894/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1895 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1895/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1895/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1895/events | https://github.com/pandas-dev/pandas/issues/1895 | 6,795,089 | MDU6SXNzdWU2Nzk1MDg5 | 1,895 | DatetimeIndex min failure | {
"avatar_url": "https://avatars.githubusercontent.com/u/759245?v=4",
"events_url": "https://api.github.com/users/changhiskhan/events{/privacy}",
"followers_url": "https://api.github.com/users/changhiskhan/followers",
"following_url": "https://api.github.com/users/changhiskhan/following{/other_user}",
"gists_url": "https://api.github.com/users/changhiskhan/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/changhiskhan",
"id": 759245,
"login": "changhiskhan",
"node_id": "MDQ6VXNlcjc1OTI0NQ==",
"organizations_url": "https://api.github.com/users/changhiskhan/orgs",
"received_events_url": "https://api.github.com/users/changhiskhan/received_events",
"repos_url": "https://api.github.com/users/changhiskhan/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/changhiskhan/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/changhiskhan/subscriptions",
"type": "User",
"url": "https://api.github.com/users/changhiskhan"
} | [
{
"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 | {
"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"
} | [
{
"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"
}
] | {
"closed_at": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 0 | "2012-09-11T16:57:31Z" | "2012-09-13T02:12:23Z" | "2012-09-13T02:12:23Z" | CONTRIBUTOR | null | ```
In [14]: rng = pd.date_range('2012-8-1', freq='T', periods=100)
In [15]: m = rng.min()
In [16]: m
Out[16]: ---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
...
c:\code\pandas\pandas\tseries\index.py in __repr__(self)
472
473 summary = str(self.__class__)
--> 474 if len(self) == 1:
475 first = _format_datetime64(values[0], tz=self.tz)
476 summary += '\n[%s]' % first
TypeError: len() of unsized object
In [17]: type(m)
Out[17]: pandas.tseries.index.DatetimeIndex
In [20]: rng.asobject.min()
Out[20]: Index(<Timestamp: 2012-08-01 00:00:00>, 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/1895/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1895/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1896 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1896/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1896/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1896/events | https://github.com/pandas-dev/pandas/issues/1896 | 6,795,666 | MDU6SXNzdWU2Nzk1NjY2 | 1,896 | Mixed type DataFrame.diff converts to object | {
"avatar_url": "https://avatars.githubusercontent.com/u/759245?v=4",
"events_url": "https://api.github.com/users/changhiskhan/events{/privacy}",
"followers_url": "https://api.github.com/users/changhiskhan/followers",
"following_url": "https://api.github.com/users/changhiskhan/following{/other_user}",
"gists_url": "https://api.github.com/users/changhiskhan/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/changhiskhan",
"id": 759245,
"login": "changhiskhan",
"node_id": "MDQ6VXNlcjc1OTI0NQ==",
"organizations_url": "https://api.github.com/users/changhiskhan/orgs",
"received_events_url": "https://api.github.com/users/changhiskhan/received_events",
"repos_url": "https://api.github.com/users/changhiskhan/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/changhiskhan/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/changhiskhan/subscriptions",
"type": "User",
"url": "https://api.github.com/users/changhiskhan"
} | [
{
"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": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 0 | "2012-09-11T17:17:03Z" | "2012-09-13T01:47:19Z" | "2012-09-13T01:47:19Z" | CONTRIBUTOR | null | ```
In [68]: df = DataFrame(np.random.randn(5, 3))
In [69]: df
Out[69]:
0 1 2
0 -1.102224 0.395433 -0.112327
1 -0.025758 2.810779 -0.823856
2 1.100939 0.741825 1.016203
3 0.452166 -1.914473 1.439475
4 0.030840 -0.690666 -0.346612
In [70]: df.diff().dtypes
Out[70]:
0 float64
1 float64
2 float64
In [71]: df['A'] = np.array([1, 2, 3, 4, 5], dtype=object)
In [72]: df.dtypes
Out[72]:
0 float64
1 float64
2 float64
A object
In [73]: df.diff().dtypes
Out[73]:
0 object
1 object
2 object
A 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/1896/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1896/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1897 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1897/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1897/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1897/events | https://github.com/pandas-dev/pandas/issues/1897 | 6,799,268 | MDU6SXNzdWU2Nzk5MjY4 | 1,897 | pandas.rolling_min/max fail if window size is larger than input array | {
"avatar_url": "https://avatars.githubusercontent.com/u/27430?v=4",
"events_url": "https://api.github.com/users/erg/events{/privacy}",
"followers_url": "https://api.github.com/users/erg/followers",
"following_url": "https://api.github.com/users/erg/following{/other_user}",
"gists_url": "https://api.github.com/users/erg/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/erg",
"id": 27430,
"login": "erg",
"node_id": "MDQ6VXNlcjI3NDMw",
"organizations_url": "https://api.github.com/users/erg/orgs",
"received_events_url": "https://api.github.com/users/erg/received_events",
"repos_url": "https://api.github.com/users/erg/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/erg/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/erg/subscriptions",
"type": "User",
"url": "https://api.github.com/users/erg"
} | [
{
"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": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 0 | "2012-09-11T19:23:24Z" | "2012-09-12T14:53:40Z" | "2012-09-12T14:53:40Z" | CONTRIBUTOR | null | This is a regression since July 12.
```
import pandas
import numpy as np
pandas.rolling_max(np.arange(3), 100, min_periods=1)
pandas.rolling_min(np.arange(3), 100, min_periods=1)
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
<ipython-input-4-782732058ee9> in <module>()
----> 1 pandas.rolling_max(np.arange(3), 100, min_periods=1)
/Library/Python/2.7/site-packages/pandas-0.9.0.dev_1e1c922-py2.7-macosx-10.8-intel.egg/pandas/stats/moments.pyc in f(arg, window, min_periods, freq, time_rule, **kwargs)
436 return func(arg, window, minp, **kwds)
437 return _rolling_moment(arg, window, call_cython, min_periods,
--> 438 freq=freq, time_rule=time_rule, **kwargs)
439
440 return f
/Library/Python/2.7/site-packages/pandas-0.9.0.dev_1e1c922-py2.7-macosx-10.8-intel.egg/pandas/stats/moments.pyc in _rolling_moment(arg, window, func, minp, axis, freq, time_rule, **kwargs)
252 return_hook, values = _process_data_structure(arg)
253 # actually calculate the moment. Faster way to do this?
--> 254 result = np.apply_along_axis(calc, axis, values)
255
256 return return_hook(result)
/Library/Python/2.7/site-packages/numpy-1.6.2-py2.7-macosx-10.8-intel.egg/numpy/lib/shape_base.pyc in apply_along_axis(func1d, axis, arr, *args)
78 outshape = asarray(arr.shape).take(indlist)
79 i.put(indlist, ind)
---> 80 res = func1d(arr[tuple(i.tolist())],*args)
81 # if res is a number, then we have a smaller output array
82 if isscalar(res):
/Library/Python/2.7/site-packages/pandas-0.9.0.dev_1e1c922-py2.7-macosx-10.8-intel.egg/pandas/stats/moments.pyc in <lambda>(x)
249 """
250 arg = _conv_timerule(arg, freq, time_rule)
--> 251 calc = lambda x: func(x, window, minp=minp, **kwargs)
252 return_hook, values = _process_data_structure(arg)
253 # actually calculate the moment. Faster way to do this?
/Library/Python/2.7/site-packages/pandas-0.9.0.dev_1e1c922-py2.7-macosx-10.8-intel.egg/pandas/stats/moments.pyc in call_cython(arg, window, minp, **kwds)
434 def call_cython(arg, window, minp, **kwds):
435 minp = check_minp(minp, window)
--> 436 return func(arg, window, minp, **kwds)
437 return _rolling_moment(arg, window, call_cython, min_periods,
438 freq=freq, time_rule=time_rule, **kwargs)
/Library/Python/2.7/site-packages/pandas-0.9.0.dev_1e1c922-py2.7-macosx-10.8-intel.egg/pandas/lib.so in pandas.lib.roll_max2 (pandas/src/tseries.c:78735)()
ValueError: Invalid window size 100 for len 3 array
```
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1897/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1897/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1898 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1898/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1898/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1898/events | https://github.com/pandas-dev/pandas/issues/1898 | 6,801,252 | MDU6SXNzdWU2ODAxMjUy | 1,898 | algorithms.unique kills python interpreter | {
"avatar_url": "https://avatars.githubusercontent.com/u/759245?v=4",
"events_url": "https://api.github.com/users/changhiskhan/events{/privacy}",
"followers_url": "https://api.github.com/users/changhiskhan/followers",
"following_url": "https://api.github.com/users/changhiskhan/following{/other_user}",
"gists_url": "https://api.github.com/users/changhiskhan/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/changhiskhan",
"id": 759245,
"login": "changhiskhan",
"node_id": "MDQ6VXNlcjc1OTI0NQ==",
"organizations_url": "https://api.github.com/users/changhiskhan/orgs",
"received_events_url": "https://api.github.com/users/changhiskhan/received_events",
"repos_url": "https://api.github.com/users/changhiskhan/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/changhiskhan/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/changhiskhan/subscriptions",
"type": "User",
"url": "https://api.github.com/users/changhiskhan"
} | [
{
"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": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 5 | "2012-09-11T20:40:50Z" | "2012-09-15T18:49:38Z" | "2012-09-15T18:49:38Z" | CONTRIBUTOR | null | 32-bit Python 2.7.3 in 64-bit Windows 7
pandas master, numpy 1.6.1
Python 2.7.3 |EPD 7.3-2 (32-bit)| (default, Apr 12 2012, 14:30:37) [MSC v.1500 32 bit (Intel)]
Type "copyright", "credits" or "license" for more information.
IPython 0.14.dev -- An enhanced Interactive Python.
? -> Introduction and overview of IPython's features.
%quickref -> Quick reference.
help -> Python's own help system.
object? -> Details about 'object', use 'object??' for extra details.
In [1]: lst = ['A', 'B', 'C', 'D', 'E']
In [2]: import pandas.core.algorithms as algos
In [3]: algos.unique(lst)
Out[3]: array([A, B, C, D, E], dtype=object)
In [4]: len(algos.unique(lst)) # --> triggers "Python has stopped working..."
Oddly enough this actually works:
In [3]: rs = algos.unique(lst)
In [4]: len(rs)
Out[4]: 5
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1898/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1898/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/1899 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1899/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1899/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1899/events | https://github.com/pandas-dev/pandas/pull/1899 | 6,801,834 | MDExOlB1bGxSZXF1ZXN0MjMxMDg1OQ== | 1,899 | BUG: fix rolling_max/min for small inputs and large windows. Add a check... | {
"avatar_url": "https://avatars.githubusercontent.com/u/27430?v=4",
"events_url": "https://api.github.com/users/erg/events{/privacy}",
"followers_url": "https://api.github.com/users/erg/followers",
"following_url": "https://api.github.com/users/erg/following{/other_user}",
"gists_url": "https://api.github.com/users/erg/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/erg",
"id": 27430,
"login": "erg",
"node_id": "MDQ6VXNlcjI3NDMw",
"organizations_url": "https://api.github.com/users/erg/orgs",
"received_events_url": "https://api.github.com/users/erg/received_events",
"repos_url": "https://api.github.com/users/erg/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/erg/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/erg/subscriptions",
"type": "User",
"url": "https://api.github.com/users/erg"
} | [] | closed | false | null | [] | {
"closed_at": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 1 | "2012-09-11T21:00:52Z" | "2014-06-25T07:13:13Z" | "2012-09-12T14:53:09Z" | CONTRIBUTOR | null | ... that the min_period <= window size. Fixes #1897.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/1899/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1899/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/1899.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/1899",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/1899.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/1899"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/1900 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/1900/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/1900/comments | https://api.github.com/repos/pandas-dev/pandas/issues/1900/events | https://github.com/pandas-dev/pandas/issues/1900 | 6,806,493 | MDU6SXNzdWU2ODA2NDkz | 1,900 | pandas.ewma doesn't handle empty inputs correctly | {
"avatar_url": "https://avatars.githubusercontent.com/u/27430?v=4",
"events_url": "https://api.github.com/users/erg/events{/privacy}",
"followers_url": "https://api.github.com/users/erg/followers",
"following_url": "https://api.github.com/users/erg/following{/other_user}",
"gists_url": "https://api.github.com/users/erg/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/erg",
"id": 27430,
"login": "erg",
"node_id": "MDQ6VXNlcjI3NDMw",
"organizations_url": "https://api.github.com/users/erg/orgs",
"received_events_url": "https://api.github.com/users/erg/received_events",
"repos_url": "https://api.github.com/users/erg/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/erg/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/erg/subscriptions",
"type": "User",
"url": "https://api.github.com/users/erg"
} | [
{
"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": "2012-10-06T19:22:59Z",
"closed_issues": 223,
"created_at": "2012-07-23T19:17:56Z",
"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": "",
"due_on": "2012-09-15T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/15",
"id": 150435,
"labels_url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15/labels",
"node_id": "MDk6TWlsZXN0b25lMTUwNDM1",
"number": 15,
"open_issues": 0,
"state": "closed",
"title": "0.9",
"updated_at": "2013-01-15T02:49:55Z",
"url": "https://api.github.com/repos/pandas-dev/pandas/milestones/15"
} | 1 | "2012-09-12T00:38:07Z" | "2012-09-17T19:14:36Z" | "2012-09-17T19:14:26Z" | CONTRIBUTOR | null | ```
In [34]: pandas.ewma(np.array([]), 3)
---------------------------------------------------------------------------
IndexError Traceback (most recent call last)
<ipython-input-34-dd4e4b00c97b> in <module>()
----> 1 pandas.ewma(np.array([]), 3)
/usr/lib/python2.7/site-packages/pandas-0.9.0.dev_c32cc6e-py2.7-linux-x86_64.egg/pandas/stats/moments.pyc in ewma(arg, com, span, min_periods, freq, time_rule, adjust)
307
308 return_hook, values = _process_data_structure(arg)
--> 309 output = np.apply_along_axis(_ewma, 0, values)
310 return return_hook(output)
311
/usr/lib/python2.7/site-packages/numpy/lib/shape_base.pyc in apply_along_axis(func1d, axis, arr, *args)
78 outshape = asarray(arr.shape).take(indlist)
79 i.put(indlist, ind)
---> 80 res = func1d(arr[tuple(i.tolist())],*args)
81 # if res is a number, then we have a smaller output array
82 if isscalar(res):
/usr/lib/python2.7/site-packages/pandas-0.9.0.dev_c32cc6e-py2.7-linux-x86_64.egg/pandas/stats/moments.pyc in _ewma(v)
301
302 def _ewma(v):
--> 303 result = lib.ewma(v, com, int(adjust))
304 first_index = _first_valid_index(v)
305 result[first_index : first_index + min_periods] = NaN
/usr/lib/python2.7/site-packages/pandas-0.9.0.dev_c32cc6e-py2.7-linux-x86_64.egg/pandas/lib.so in pandas.lib.ewma (pandas/src/tseries.c:74301)()
IndexError: Out of bounds on buffer access (axis 0)
```
I think it should output an empty array instead, like `rolling_sum`.
```
In [43]: pandas.rolling_sum(np.array([]), 3)
Out[43]: array([], 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/1900/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/1900/timeline | null | null | null |
Subsets and Splits