url stringlengths 55 59 | repository_url stringclasses 1
value | labels_url stringlengths 69 73 | comments_url stringlengths 64 68 | events_url stringlengths 62 66 | html_url stringlengths 44 49 | id int64 338k 1.06B | node_id stringlengths 18 32 | number int64 1 44.6k | title stringlengths 1 590 | user dict | labels listlengths 0 9 | state stringclasses 2
values | locked bool 2
classes | assignee dict | assignees listlengths 0 5 | milestone dict | comments int64 0 477 | created_at timestamp[us, tz=UTC] | updated_at timestamp[us, tz=UTC] | closed_at timestamp[us, tz=UTC] | author_association stringclasses 3
values | active_lock_reason stringclasses 4
values | body stringlengths 0 251k ⌀ | reactions dict | timeline_url stringlengths 64 68 | performed_via_github_app float64 | draft float64 0 1 ⌀ | pull_request dict |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
https://api.github.com/repos/pandas-dev/pandas/issues/7001 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7001/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7001/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7001/events | https://github.com/pandas-dev/pandas/issues/7001 | 32,479,145 | MDU6SXNzdWUzMjQ3OTE0NQ== | 7,001 | Sum of grouped bool column has inconsistent type | {
"avatar_url": "https://avatars.githubusercontent.com/u/931505?v=4",
"events_url": "https://api.github.com/users/jkleint/events{/privacy}",
"followers_url": "https://api.github.com/users/jkleint/followers",
"following_url": "https://api.github.com/users/jkleint/following{/other_user}",
"gists_url": "https://... | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "729FCF",
"default": false,
"description": null,
"id": 233160,
... | closed | false | null | [] | {
"closed_at": "2020-07-28T18:13:47Z",
"closed_issues": 2378,
"created_at": "2019-12-02T12:52:48Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/j... | 4 | 2014-04-29T19:56:55Z | 2020-03-26T23:46:19Z | 2020-03-26T23:45:57Z | NONE | null | Summing a bool column after a groupby gives a bool result until there are two or more True values, when it becomes a float64. Seems like it should always be an (unsigned?) integer. Straight sum without a groupby always gives an int64. This is with 0.13.1.
```
pd.DataFrame([True]).groupby(lambda x: 0).sum()
0
0... | {
"+1": 3,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 3,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7001/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7001/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/7002 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7002/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7002/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7002/events | https://github.com/pandas-dev/pandas/issues/7002 | 32,481,715 | MDU6SXNzdWUzMjQ4MTcxNQ== | 7,002 | BUG/TST: verify that groupby apply with a column aggregation does not return the column | {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jreback/followers",
"following_url": "https://api.github.com/users/jreback/following{/other_user}",
"gists_url": "https://... | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "729FCF",
"default": false,
"description": null,
"id": 233160,
... | closed | false | null | [] | {
"closed_at": "2020-07-28T18:13:47Z",
"closed_issues": 2378,
"created_at": "2019-12-02T12:52:48Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/j... | 6 | 2014-04-29T20:26:56Z | 2020-06-14T22:20:51Z | 2020-06-14T22:20:51Z | CONTRIBUTOR | null | related https://github.com/pydata/pandas/pull/7000
```
In [1]: df = DataFrame({'foo1' : ['one', 'two', 'two', 'three', 'one', 'two'],
'foo2' : np.random.randn(6)})
In [2]: df
Out[2]:
foo1 foo2
0 one 1.006666
1 two 0.002063
2 two 1.507785
3 three 1.865921
... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7002/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7002/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/7003 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7003/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7003/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7003/events | https://github.com/pandas-dev/pandas/issues/7003 | 32,482,806 | MDU6SXNzdWUzMjQ4MjgwNg== | 7,003 | PERF: cythonize groupby.count | {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jreback/followers",
"following_url": "https://api.github.com/users/jreback/following{/other_user}",
"gists_url": "https://... | [
{
"color": "729FCF",
"default": false,
"description": null,
"id": 233160,
"name": "Groupby",
"node_id": "MDU6TGFiZWwyMzMxNjA=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Groupby"
},
{
"color": "a10c02",
"default": false,
"description": "Memory or execu... | closed | false | null | [] | {
"closed_at": "2014-07-11T00:02:53Z",
"closed_issues": 306,
"created_at": "2014-04-27T23:40:28Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jr... | 2 | 2014-04-29T20:37:10Z | 2014-05-05T22:18:47Z | 2014-05-05T22:18:47Z | CONTRIBUTOR | null | see #7000
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7003/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7003/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/7004 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7004/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7004/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7004/events | https://github.com/pandas-dev/pandas/pull/7004 | 32,490,377 | MDExOlB1bGxSZXF1ZXN0MTUzMTYwOTU= | 7,004 | DOC: add notes to the groupby.rst docs | {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jreback/followers",
"following_url": "https://api.github.com/users/jreback/following{/other_user}",
"gists_url": "https://... | [
{
"color": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
},
{
"color": "729FCF",
"default": false,
"description": null,
"id": 233160... | 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": "htt... | 3 | 2014-04-29T22:15:50Z | 2014-07-02T11:19:20Z | 2014-04-30T12:17:29Z | CONTRIBUTOR | null | partial on #6944
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7004/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7004/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7004.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7004",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/7004.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7004"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7005 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7005/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7005/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7005/events | https://github.com/pandas-dev/pandas/pull/7005 | 32,495,254 | MDExOlB1bGxSZXF1ZXN0MTUzMTkyOTM= | 7,005 | adding left and right view to DataFrame, equivalent to head() and tail() | {
"avatar_url": "https://avatars.githubusercontent.com/u/69774?v=4",
"events_url": "https://api.github.com/users/michaelaye/events{/privacy}",
"followers_url": "https://api.github.com/users/michaelaye/followers",
"following_url": "https://api.github.com/users/michaelaye/following{/other_user}",
"gists_url": "... | [
{
"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": "ededed",
"de... | closed | false | null | [] | {
"closed_at": "2015-03-23T10:50:37Z",
"closed_issues": 400,
"created_at": "2014-02-14T03:31:22Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jr... | 13 | 2014-04-29T23:43:05Z | 2021-08-03T15:59:56Z | 2015-01-18T21:37:46Z | CONTRIBUTOR | null | I am working with a lot of columns recently and just thought of these little helpers, basically the same as head() and tail(), but for columns.
Additionally, I fixed a small pep8 issue in head()
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7005/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7005/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7005.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7005",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/7005.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7005"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7006 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7006/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7006/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7006/events | https://github.com/pandas-dev/pandas/pull/7006 | 32,498,032 | MDExOlB1bGxSZXF1ZXN0MTUzMjA5NzI= | 7,006 | BUG: duplicate indexing with setitem with iloc (GH6766) | {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jreback/followers",
"following_url": "https://api.github.com/users/jreback/following{/other_user}",
"gists_url": "https://... | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "C4A000",
"default": false,
"description": "pandas testing functions... | 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": "htt... | 0 | 2014-04-30T00:43:53Z | 2014-07-16T09:03:54Z | 2014-04-30T01:05:17Z | CONTRIBUTOR | null | closes #6766
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7006/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7006/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7006.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7006",
"merged_at": "2014-04-30T01:05:17Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/7006.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7006"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7007 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7007/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7007/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7007/events | https://github.com/pandas-dev/pandas/pull/7007 | 32,505,826 | MDExOlB1bGxSZXF1ZXN0MTUzMjUyOTY= | 7,007 | BUG: fixing tseries plot cursor display, resolves #5453 | {
"avatar_url": "https://avatars.githubusercontent.com/u/5356340?v=4",
"events_url": "https://api.github.com/users/rosnfeld/events{/privacy}",
"followers_url": "https://api.github.com/users/rosnfeld/followers",
"following_url": "https://api.github.com/users/rosnfeld/following{/other_user}",
"gists_url": "http... | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "AFEEEE",
"default": false,
"description": null,
"id": 211840,
... | 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": "htt... | 7 | 2014-04-30T04:27:11Z | 2014-06-12T21:07:21Z | 2014-05-01T17:50:35Z | CONTRIBUTOR | null | Fixes #5453
I am not sure how to test a mouse-over, and the original commit 922c6102eebb7347cea587fffc4795a3ca3e73b2 introducing this functionality did not have tests either, which is sadly probably how this got broken. @willfurnass do you happen to have any ideas for how to test this functionality, maybe from when yo... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7007/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7007/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7007.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7007",
"merged_at": "2014-05-01T17:50:35Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/7007.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7007"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7008 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7008/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7008/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7008/events | https://github.com/pandas-dev/pandas/pull/7008 | 32,520,003 | MDExOlB1bGxSZXF1ZXN0MTUzMzMzMDA= | 7,008 | BLD: fix failing vbench cases | {
"avatar_url": "https://avatars.githubusercontent.com/u/579798?v=4",
"events_url": "https://api.github.com/users/immerrr/events{/privacy}",
"followers_url": "https://api.github.com/users/immerrr/followers",
"following_url": "https://api.github.com/users/immerrr/following{/other_user}",
"gists_url": "https://... | [] | closed | false | null | [] | null | 2 | 2014-04-30T09:34:09Z | 2014-06-24T04:26:08Z | 2014-04-30T12:48:54Z | CONTRIBUTOR | null | There were about 30 vbench tests that failed due to multiple recent deprecations and copy-pasting.
This PR fixes all but 8 of those that correspond to constructing frame with "exotic" time offsets (`WeekOfYear`, `LastWeekOfYear`, `FY5253` and `FY5253Quarter`) that apparently require some kwargs for construction.
This... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7008/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7008/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7008.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7008",
"merged_at": "2014-04-30T12:48:54Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/7008.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7008"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7009 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7009/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7009/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7009/events | https://github.com/pandas-dev/pandas/pull/7009 | 32,532,347 | MDExOlB1bGxSZXF1ZXN0MTUzNDA4NDU= | 7,009 | BLD/TST: Python3.4 testing via travis | {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jreback/followers",
"following_url": "https://api.github.com/users/jreback/following{/other_user}",
"gists_url": "https://... | [
{
"color": "C4A000",
"default": false,
"description": "pandas testing functions or related to the test suite",
"id": 127685,
"name": "Testing",
"node_id": "MDU6TGFiZWwxMjc2ODU=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Testing"
},
{
"color": "a2bca7",
"d... | 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": "htt... | 2 | 2014-04-30T13:00:43Z | 2014-07-16T09:03:59Z | 2014-04-30T15:48:21Z | CONTRIBUTOR | null | closes #6619
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7009/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7009/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7009.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7009",
"merged_at": "2014-04-30T15:48:21Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/7009.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7009"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7010 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7010/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7010/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7010/events | https://github.com/pandas-dev/pandas/issues/7010 | 32,549,828 | MDU6SXNzdWUzMjU0OTgyOA== | 7,010 | read_sql fails with psycopg2 connection | {
"avatar_url": "https://avatars.githubusercontent.com/u/1993919?v=4",
"events_url": "https://api.github.com/users/amelio-vazquez-reina/events{/privacy}",
"followers_url": "https://api.github.com/users/amelio-vazquez-reina/followers",
"following_url": "https://api.github.com/users/amelio-vazquez-reina/following... | [
{
"color": "5319e7",
"default": false,
"description": "to_sql, read_sql, read_sql_query",
"id": 47232590,
"name": "IO SQL",
"node_id": "MDU6TGFiZWw0NzIzMjU5MA==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20SQL"
}
] | closed | false | null | [] | {
"closed_at": "2014-05-30T12:17:57Z",
"closed_issues": 755,
"created_at": "2014-01-03T20:19:04Z",
"creator": null,
"description": "2014-02-3: previous version released",
"due_on": "2014-05-31T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/24",
"id": 526062,
"labels_url": "htt... | 7 | 2014-04-30T16:09:42Z | 2014-05-05T08:30:11Z | 2014-05-05T08:30:11Z | CONTRIBUTOR | null | I am unable to run `read_sql` against a PostgreSQL database with the current master branch. This error only happens with master. If I switch back to pandas `0.13.1` (stable) everything works again.
For reference, I am using `psycopg2 2.5.2` from `pip install`.
Below is some example code:
``` python
# Connect to the ... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7010/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7010/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/7011 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7011/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7011/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7011/events | https://github.com/pandas-dev/pandas/issues/7011 | 32,558,939 | MDU6SXNzdWUzMjU1ODkzOQ== | 7,011 | Arithmetic operation between Series and `bool` fails | {
"avatar_url": "https://avatars.githubusercontent.com/u/81476?v=4",
"events_url": "https://api.github.com/users/fonnesbeck/events{/privacy}",
"followers_url": "https://api.github.com/users/fonnesbeck/followers",
"following_url": "https://api.github.com/users/fonnesbeck/following{/other_user}",
"gists_url": "... | [
{
"color": "e102d8",
"default": false,
"description": "Unexpected or buggy dtype conversions",
"id": 31404521,
"name": "Dtype Conversions",
"node_id": "MDU6TGFiZWwzMTQwNDUyMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Dtype%20Conversions"
},
{
"color": "ffa... | 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": "htt... | 3 | 2014-04-30T18:02:32Z | 2016-10-12T23:04:49Z | 2014-05-14T05:00:40Z | NONE | null | In the current master, I am no longer able to add or subtract `bool` scalars from Series. For example:
```
In [63]: (covariates.isnull().sum(axis=1).astype(bool))
Out[63]:
case_id
A0001 False
A0002 False
A0003 False
A0004 False
A0005 False
A0006 False
A0007 False
A0008 False
A00... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7011/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7011/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/7012 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7012/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7012/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7012/events | https://github.com/pandas-dev/pandas/pull/7012 | 32,559,905 | MDExOlB1bGxSZXF1ZXN0MTUzNTcwNTE= | 7,012 | Added selection example to cookbook | {
"avatar_url": "https://avatars.githubusercontent.com/u/3525666?v=4",
"events_url": "https://api.github.com/users/ojdo/events{/privacy}",
"followers_url": "https://api.github.com/users/ojdo/followers",
"following_url": "https://api.github.com/users/ojdo/following{/other_user}",
"gists_url": "https://api.gith... | [
{
"color": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
}
] | closed | false | null | [] | {
"closed_at": "2014-05-30T12:17:57Z",
"closed_issues": 755,
"created_at": "2014-01-03T20:19:04Z",
"creator": null,
"description": "2014-02-3: previous version released",
"due_on": "2014-05-31T07:00:00Z",
"html_url": "https://github.com/pandas-dev/pandas/milestone/24",
"id": 526062,
"labels_url": "htt... | 1 | 2014-04-30T18:15:27Z | 2014-06-30T11:25:11Z | 2014-04-30T18:56:37Z | CONTRIBUTOR | null | I added a (for me) very helpful Q&A from Stackoverflow on groupby/minimization while retaining the original DataFrame columns. Additionally, I cleaned up some links in the same cookbok section.
(Disclaimer: this is my first pull request.)
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7012/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7012/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7012.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7012",
"merged_at": "2014-04-30T18:56:37Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/7012.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7012"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7013 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7013/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7013/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7013/events | https://github.com/pandas-dev/pandas/issues/7013 | 32,560,450 | MDU6SXNzdWUzMjU2MDQ1MA== | 7,013 | DOC/BLD: dev docs not available | {
"avatar_url": "https://avatars.githubusercontent.com/u/1020496?v=4",
"events_url": "https://api.github.com/users/jorisvandenbossche/events{/privacy}",
"followers_url": "https://api.github.com/users/jorisvandenbossche/followers",
"following_url": "https://api.github.com/users/jorisvandenbossche/following{/othe... | [
{
"color": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
}
] | 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": "htt... | 11 | 2014-04-30T18:22:04Z | 2014-04-30T19:25:02Z | 2014-04-30T18:56:19Z | MEMBER | null | http://pandas-docs.github.io/pandas-docs-travis/ gives a `404 page not found` error.
So also http://pandas.pydata.org/pandas-docs/dev/ does not work (as this is redirected to the former).
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7013/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7013/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/7014 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7014/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7014/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7014/events | https://github.com/pandas-dev/pandas/issues/7014 | 32,565,806 | MDU6SXNzdWUzMjU2NTgwNg== | 7,014 | Feature request: add median, mode & number of unique entries to pandas.DataFrame.describe() | {
"avatar_url": "https://avatars.githubusercontent.com/u/1903672?v=4",
"events_url": "https://api.github.com/users/tantrev/events{/privacy}",
"followers_url": "https://api.github.com/users/tantrev/followers",
"following_url": "https://api.github.com/users/tantrev/following{/other_user}",
"gists_url": "https:/... | [
{
"color": "4E9A06",
"default": false,
"description": null,
"id": 76812,
"name": "Enhancement",
"node_id": "MDU6TGFiZWw3NjgxMg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Enhancement"
},
{
"color": "02d7e1",
"default": false,
"description": "Concat, ... | closed | false | null | [] | {
"closed_at": null,
"closed_issues": 786,
"created_at": "2015-01-13T10:53:19Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jreback/followers",
... | 6 | 2014-04-30T19:28:11Z | 2017-04-14T15:37:04Z | 2017-04-14T15:37:04Z | NONE | null | Would come in handy for a number of a different applications from basic statistics, to understanding one's data, to estimating machine learning algorithmic load.
dupe of #2749
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7014/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7014/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/7015 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7015/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7015/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7015/events | https://github.com/pandas-dev/pandas/pull/7015 | 32,572,205 | MDExOlB1bGxSZXF1ZXN0MTUzNjQ4NTA= | 7,015 | ERR: more informative error message on bool arith op failures | {
"avatar_url": "https://avatars.githubusercontent.com/u/417981?v=4",
"events_url": "https://api.github.com/users/cpcloud/events{/privacy}",
"followers_url": "https://api.github.com/users/cpcloud/followers",
"following_url": "https://api.github.com/users/cpcloud/following{/other_user}",
"gists_url": "https://... | [
{
"color": "e102d8",
"default": false,
"description": "Unexpected or buggy dtype conversions",
"id": 31404521,
"name": "Dtype Conversions",
"node_id": "MDU6TGFiZWwzMTQwNDUyMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Dtype%20Conversions"
},
{
"color": "ffa... | closed | false | {
"avatar_url": "https://avatars.githubusercontent.com/u/417981?v=4",
"events_url": "https://api.github.com/users/cpcloud/events{/privacy}",
"followers_url": "https://api.github.com/users/cpcloud/followers",
"following_url": "https://api.github.com/users/cpcloud/following{/other_user}",
"gists_url": "https://... | [
{
"avatar_url": "https://avatars.githubusercontent.com/u/417981?v=4",
"events_url": "https://api.github.com/users/cpcloud/events{/privacy}",
"followers_url": "https://api.github.com/users/cpcloud/followers",
"following_url": "https://api.github.com/users/cpcloud/following{/other_user}",
"gists_u... | {
"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": "htt... | 20 | 2014-04-30T20:52:28Z | 2014-06-25T08:57:46Z | 2014-05-14T05:00:40Z | MEMBER | null | closes #7011
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7015/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7015/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7015.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7015",
"merged_at": "2014-05-14T05:00:40Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/7015.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7015"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7016 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7016/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7016/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7016/events | https://github.com/pandas-dev/pandas/pull/7016 | 32,578,347 | MDExOlB1bGxSZXF1ZXN0MTUzNjg3ODY= | 7,016 | ENH: cythonize groupby.count | {
"avatar_url": "https://avatars.githubusercontent.com/u/417981?v=4",
"events_url": "https://api.github.com/users/cpcloud/events{/privacy}",
"followers_url": "https://api.github.com/users/cpcloud/followers",
"following_url": "https://api.github.com/users/cpcloud/following{/other_user}",
"gists_url": "https://... | [
{
"color": "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 o... | closed | false | {
"avatar_url": "https://avatars.githubusercontent.com/u/417981?v=4",
"events_url": "https://api.github.com/users/cpcloud/events{/privacy}",
"followers_url": "https://api.github.com/users/cpcloud/followers",
"following_url": "https://api.github.com/users/cpcloud/following{/other_user}",
"gists_url": "https://... | [
{
"avatar_url": "https://avatars.githubusercontent.com/u/417981?v=4",
"events_url": "https://api.github.com/users/cpcloud/events{/privacy}",
"followers_url": "https://api.github.com/users/cpcloud/followers",
"following_url": "https://api.github.com/users/cpcloud/following{/other_user}",
"gists_u... | {
"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": "htt... | 35 | 2014-04-30T22:12:47Z | 2014-06-13T01:26:49Z | 2014-05-05T22:18:47Z | MEMBER | null | closes #7003
- [x] vbench
- ~~axis parameter~~ (this only works in non-cython land)
- [x] tests for `object` dtype if there are none
- [x] datetime64/timedelta64 count
vbench results:
```
-------------------------------------------------------------------------------
Test name | hea... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7016/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7016/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7016.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7016",
"merged_at": "2014-05-05T22:18:47Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/7016.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7016"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7017 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7017/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7017/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7017/events | https://github.com/pandas-dev/pandas/issues/7017 | 32,609,134 | MDU6SXNzdWUzMjYwOTEzNA== | 7,017 | Data corruption when renaming to duplicate column names | {
"avatar_url": "https://avatars.githubusercontent.com/u/3168512?v=4",
"events_url": "https://api.github.com/users/Gerenuk/events{/privacy}",
"followers_url": "https://api.github.com/users/Gerenuk/followers",
"following_url": "https://api.github.com/users/Gerenuk/following{/other_user}",
"gists_url": "https:/... | [] | closed | false | null | [] | null | 1 | 2014-05-01T11:35:32Z | 2014-05-01T13:52:50Z | 2014-05-01T13:52:50Z | NONE | null | The following throws a very confusing error (pandas 0.13.1):
pd.DataFrame([[1,"abc", 1]], columns=["a", "b", "a"]).describe()
File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\frame.py", line 3790, in describe
numdata = self._get_numeric_data()
File "C:\Program Files\Python 3.3.3\lib\site-pack... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7017/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7017/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/7018 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7018/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7018/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7018/events | https://github.com/pandas-dev/pandas/issues/7018 | 32,616,549 | MDU6SXNzdWUzMjYxNjU0OQ== | 7,018 | Lifting limits on display options: None vs 0 vs Inf ? | {
"avatar_url": "https://avatars.githubusercontent.com/u/1993919?v=4",
"events_url": "https://api.github.com/users/amelio-vazquez-reina/events{/privacy}",
"followers_url": "https://api.github.com/users/amelio-vazquez-reina/followers",
"following_url": "https://api.github.com/users/amelio-vazquez-reina/following... | [
{
"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": "ffa0ff",
"default": false,
"description": "Incorrec... | open | false | null | [] | {
"closed_at": null,
"closed_issues": 278,
"created_at": "2013-01-06T03:02:01Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"f... | 1 | 2014-05-01T14:03:25Z | 2021-04-11T04:32:05Z | null | CONTRIBUTOR | null | When lifting limits on display options, for some of them one can use `None`:
```
display.max_columns = None
display.display.max_rows = None
display.width = None
```
but for other options, Pandas complains if you use `None` returning `ValueError: Value must have type '<type 'int'>'`, so you have to use 0
```
display.... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7018/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7018/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/7019 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7019/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7019/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7019/events | https://github.com/pandas-dev/pandas/pull/7019 | 32,618,386 | MDExOlB1bGxSZXF1ZXN0MTUzODk1MTA= | 7,019 | TST: tests for groupby not using grouper column, solved in GH7000, (GH5614) | {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jreback/followers",
"following_url": "https://api.github.com/users/jreback/following{/other_user}",
"gists_url": "https://... | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "C4A000",
"default": false,
"description": "pandas testing functions... | 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": "htt... | 0 | 2014-05-01T14:32:42Z | 2014-07-16T09:04:12Z | 2014-05-01T15:13:57Z | CONTRIBUTOR | null | closes #5614
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7019/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7019/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7019.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7019",
"merged_at": "2014-05-01T15:13:57Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/7019.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7019"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7020 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7020/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7020/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7020/events | https://github.com/pandas-dev/pandas/pull/7020 | 32,622,835 | MDExOlB1bGxSZXF1ZXN0MTUzOTIxNDM= | 7,020 | PyQt 5 support added | {
"avatar_url": "https://avatars.githubusercontent.com/u/3449635?v=4",
"events_url": "https://api.github.com/users/rominf/events{/privacy}",
"followers_url": "https://api.github.com/users/rominf/followers",
"following_url": "https://api.github.com/users/rominf/following{/other_user}",
"gists_url": "https://ap... | [
{
"color": "8AE234",
"default": false,
"description": null,
"id": 2413328,
"name": "Visualization",
"node_id": "MDU6TGFiZWwyNDEzMzI4",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Visualization"
},
{
"color": "ededed",
"default": false,
"description": "__... | closed | false | null | [] | {
"closed_at": null,
"closed_issues": 278,
"created_at": "2013-01-06T03:02:01Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"f... | 16 | 2014-05-01T15:37:07Z | 2019-11-17T11:23:42Z | 2015-01-25T23:00:02Z | NONE | null | Added imports for PyQt 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/7020/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7020/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7020.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7020",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/7020.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7020"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7021 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7021/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7021/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7021/events | https://github.com/pandas-dev/pandas/pull/7021 | 32,629,711 | MDExOlB1bGxSZXF1ZXN0MTUzOTYzMzg= | 7,021 | Refactoring: DataFrameWidget(QWidget) -> DataFrameWidget(QTableView) | {
"avatar_url": "https://avatars.githubusercontent.com/u/3449635?v=4",
"events_url": "https://api.github.com/users/rominf/events{/privacy}",
"followers_url": "https://api.github.com/users/rominf/followers",
"following_url": "https://api.github.com/users/rominf/following{/other_user}",
"gists_url": "https://ap... | [
{
"color": "8AE234",
"default": false,
"description": null,
"id": 2413328,
"name": "Visualization",
"node_id": "MDU6TGFiZWwyNDEzMzI4",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Visualization"
},
{
"color": "ededed",
"default": false,
"description": "__... | closed | false | null | [] | {
"closed_at": "2015-03-23T10:50:37Z",
"closed_issues": 400,
"created_at": "2014-02-14T03:31:22Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jr... | 8 | 2014-05-01T17:11:48Z | 2015-01-25T23:18:58Z | 2015-01-25T23:18:58Z | NONE | null | I think that deriving DataFrameWidget from the QTableView is more logical than from QWidget
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7021/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7021/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7021.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7021",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/7021.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7021"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7022 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7022/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7022/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7022/events | https://github.com/pandas-dev/pandas/pull/7022 | 32,643,272 | MDExOlB1bGxSZXF1ZXN0MTU0MDQ0OTM= | 7,022 | BLD: use sqlalchemy 0.7.1 in 2.6 build (GH6340) | {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jreback/followers",
"following_url": "https://api.github.com/users/jreback/following{/other_user}",
"gists_url": "https://... | [
{
"color": "5319e7",
"default": false,
"description": "to_sql, read_sql, read_sql_query",
"id": 47232590,
"name": "IO SQL",
"node_id": "MDU6TGFiZWw0NzIzMjU5MA==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20SQL"
},
{
"color": "a2bca7",
"default": false,... | closed | false | null | [] | {
"closed_at": "2014-07-11T00:02:53Z",
"closed_issues": 306,
"created_at": "2014-04-27T23:40:28Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jr... | 8 | 2014-05-01T20:04:30Z | 2014-06-14T13:15:12Z | 2014-06-14T13:15:12Z | CONTRIBUTOR | null | closes #6340
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7022/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7022/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7022.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7022",
"merged_at": "2014-06-14T13:15:12Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/7022.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7022"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7023 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7023/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7023/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7023/events | https://github.com/pandas-dev/pandas/issues/7023 | 32,646,424 | MDU6SXNzdWUzMjY0NjQyNA== | 7,023 | DF Plots: Error bars don't allow to set styles | {
"avatar_url": "https://avatars.githubusercontent.com/u/5675858?v=4",
"events_url": "https://api.github.com/users/Zaharid/events{/privacy}",
"followers_url": "https://api.github.com/users/Zaharid/followers",
"following_url": "https://api.github.com/users/Zaharid/following{/other_user}",
"gists_url": "https:/... | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "8AE234",
"default": false,
"description": null,
"id": 2413328,
... | open | false | null | [] | {
"closed_at": null,
"closed_issues": 786,
"created_at": "2015-01-13T10:53:19Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jreback/followers",
... | 6 | 2014-05-01T20:48:31Z | 2017-12-07T11:44:00Z | null | NONE | null | With this code the style spec `'o'` is ignored when plotting error bars (#5638):
``` python
In [25]: from numpy.random import randn
In [26]: import pandas as pd
In [27]: df = pd.DataFrame(randn(8,3), columns = "A B yerr".split())
In [28]: df.plot(x='A', y='B',style='o' ,yerr='yerr')
Out[28]: <matplotlib.axes.AxesSu... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7023/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7023/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/7024 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7024/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7024/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7024/events | https://github.com/pandas-dev/pandas/issues/7024 | 32,651,166 | MDU6SXNzdWUzMjY1MTE2Ng== | 7,024 | pd.concat(objs) drops type of the inputs if all inputs are empty | {
"avatar_url": "https://avatars.githubusercontent.com/u/931214?v=4",
"events_url": "https://api.github.com/users/OlexiyO/events{/privacy}",
"followers_url": "https://api.github.com/users/OlexiyO/followers",
"following_url": "https://api.github.com/users/OlexiyO/following{/other_user}",
"gists_url": "https://... | [] | closed | false | null | [] | null | 3 | 2014-05-01T21:50:57Z | 2014-05-01T22:22:51Z | 2014-05-01T22:22:08Z | NONE | null | When concatenating several pd.Series of the same type, I would expect the output Series to have the same type. However, this does not hold if all input Series are empty:
```
In [0]: x = pd.Series([], dtype=int)
In [1]: pd.concat([x, x])
Series([], dtype: object)
```
How I would expect it to work:
_pd.concat([x, x]) s... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7024/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7024/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/7025 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7025/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7025/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7025/events | https://github.com/pandas-dev/pandas/issues/7025 | 32,688,171 | MDU6SXNzdWUzMjY4ODE3MQ== | 7,025 | GroupBy with Float Index not Plotting | {
"avatar_url": "https://avatars.githubusercontent.com/u/3421?v=4",
"events_url": "https://api.github.com/users/grundprinzip/events{/privacy}",
"followers_url": "https://api.github.com/users/grundprinzip/followers",
"following_url": "https://api.github.com/users/grundprinzip/following{/other_user}",
"gists_ur... | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "729FCF",
"default": false,
"description": null,
"id": 233160,
... | 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": "htt... | 3 | 2014-05-02T12:31:04Z | 2014-05-02T21:37:21Z | 2014-05-02T21:37:21Z | NONE | null | I have the following problem: I have a dataset with a float index that I want to group and plot. If I'm using integer indices it works, with floats it doesn't. Here is the minimal example that once works and once not. I'm testing with the current master. Am I doing something wrong?
This code snippet fails:
```
import... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7025/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7025/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/7026 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7026/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7026/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7026/events | https://github.com/pandas-dev/pandas/pull/7026 | 32,688,907 | MDExOlB1bGxSZXF1ZXN0MTU0Mjk2Nzg= | 7,026 | BUG: error in Float64Index with contains and non-float (GH7025) | {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jreback/followers",
"following_url": "https://api.github.com/users/jreback/following{/other_user}",
"gists_url": "https://... | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "729FCF",
"default": false,
"description": null,
"id": 233160,
... | 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": "htt... | 0 | 2014-05-02T12:44:11Z | 2014-07-05T02:58:59Z | 2014-05-02T21:37:21Z | CONTRIBUTOR | null | closes #7025
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7026/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7026/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7026.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7026",
"merged_at": "2014-05-02T21:37:21Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/7026.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7026"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7027 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7027/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7027/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7027/events | https://github.com/pandas-dev/pandas/pull/7027 | 32,712,682 | MDExOlB1bGxSZXF1ZXN0MTU0NDMxNjg= | 7,027 | DOC: Visualization reorganization | {
"avatar_url": "https://avatars.githubusercontent.com/u/1312546?v=4",
"events_url": "https://api.github.com/users/TomAugspurger/events{/privacy}",
"followers_url": "https://api.github.com/users/TomAugspurger/followers",
"following_url": "https://api.github.com/users/TomAugspurger/following{/other_user}",
"gi... | [
{
"color": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
},
{
"color": "8AE234",
"default": false,
"description": null,
"id": 241332... | closed | false | null | [] | {
"closed_at": "2014-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": "htt... | 16 | 2014-05-02T18:07:46Z | 2017-04-05T02:07:52Z | 2014-05-05T19:52:08Z | CONTRIBUTOR | null | Closes https://github.com/pydata/pandas/issues/6994
I still need to do one more read through. Happy to hear additional suggestions.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7027/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7027/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7027.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7027",
"merged_at": "2014-05-05T19:52:08Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/7027.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7027"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7028 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7028/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7028/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7028/events | https://github.com/pandas-dev/pandas/pull/7028 | 32,736,375 | MDExOlB1bGxSZXF1ZXN0MTU0NTc3NDc= | 7,028 | API: adds weekday_common accessors (GH6936) | {
"avatar_url": "https://avatars.githubusercontent.com/u/7309531?v=4",
"events_url": "https://api.github.com/users/trailsquirrel/events{/privacy}",
"followers_url": "https://api.github.com/users/trailsquirrel/followers",
"following_url": "https://api.github.com/users/trailsquirrel/following{/other_user}",
"gi... | [
{
"color": "AFEEEE",
"default": false,
"description": null,
"id": 211840,
"name": "Timeseries",
"node_id": "MDU6TGFiZWwyMTE4NDA=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Timeseries"
},
{
"color": "AD7FA8",
"default": false,
"description": null,
... | closed | false | null | [] | {
"closed_at": null,
"closed_issues": 2361,
"created_at": "2015-02-26T19:29:05Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/1020496?v=4",
"events_url": "https://api.github.com/users/jorisvandenbossche/events{/privacy}",
"followers_url": "https://api.github.com/users/jorisva... | 11 | 2014-05-03T00:50:49Z | 2017-08-09T10:25:16Z | 2015-01-25T23:19:11Z | NONE | null | closes #6936
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7028/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7028/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7028.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7028",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/7028.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7028"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7029 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7029/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7029/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7029/events | https://github.com/pandas-dev/pandas/pull/7029 | 32,753,996 | MDExOlB1bGxSZXF1ZXN0MTU0NjU2ODE= | 7,029 | BUG: fix reading multi-index data in python parser | {
"avatar_url": "https://avatars.githubusercontent.com/u/319411?v=4",
"events_url": "https://api.github.com/users/mcwitt/events{/privacy}",
"followers_url": "https://api.github.com/users/mcwitt/followers",
"following_url": "https://api.github.com/users/mcwitt/following{/other_user}",
"gists_url": "https://api... | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "5319e7",
"default": false,
"description": "read_csv, to_csv",
"... | 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": "htt... | 7 | 2014-05-03T20:04:50Z | 2014-06-23T23:28:38Z | 2014-05-06T18:02:22Z | CONTRIBUTOR | null | partial fix for #6893
The python parser has a problem reading data with a multi-index specified in the row following the header, for example
``` python
In [3]: text = """ A B C D E
one two three four
a b 10.0032 5 -0.5109 -2.3358 -0.4645 0.05076 0.3640
a q ... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7029/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7029/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7029.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7029",
"merged_at": "2014-05-06T18:02:22Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/7029.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7029"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7030 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7030/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7030/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7030/events | https://github.com/pandas-dev/pandas/issues/7030 | 32,754,375 | MDU6SXNzdWUzMjc1NDM3NQ== | 7,030 | ENH: Add a Parser to read fixed-width ASCII data using a data description file or dictionary file | {
"avatar_url": "https://avatars.githubusercontent.com/u/1882093?v=4",
"events_url": "https://api.github.com/users/AllenDowney/events{/privacy}",
"followers_url": "https://api.github.com/users/AllenDowney/followers",
"following_url": "https://api.github.com/users/AllenDowney/following{/other_user}",
"gists_ur... | [
{
"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": "e99695",
"default": false,
"description": "read_fwf... | closed | false | null | [] | {
"closed_at": null,
"closed_issues": 278,
"created_at": "2013-01-06T03:02:01Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"f... | 5 | 2014-05-03T20:28:08Z | 2019-12-22T16:55:36Z | 2019-12-22T16:55:35Z | CONTRIBUTOR | null | As an example, I would like to be able to read a dataset like this one:
http://www.cdc.gov/nchs/nsfg/nsfg_cycle6.htm
The data files themselves are ASCII with fixed-width fields. The variables names, types, and indices are in a separate data description file, available for SAS, SPSS and STATA. I would like to add a ... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7030/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7030/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/7031 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7031/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7031/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7031/events | https://github.com/pandas-dev/pandas/issues/7031 | 32,763,531 | MDU6SXNzdWUzMjc2MzUzMQ== | 7,031 | `Nan` in the multi index get cast into string after a subtraction | {
"avatar_url": "https://avatars.githubusercontent.com/u/666504?v=4",
"events_url": "https://api.github.com/users/alphaho/events{/privacy}",
"followers_url": "https://api.github.com/users/alphaho/followers",
"following_url": "https://api.github.com/users/alphaho/following{/other_user}",
"gists_url": "https://... | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "d7e102",
"default": false,
"description": "np.nan, pd.NaT, pd.NA, d... | closed | false | null | [] | {
"closed_at": "2014-10-23T11:43:09Z",
"closed_issues": 530,
"created_at": "2014-07-06T18:44:54Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jr... | 6 | 2014-05-04T07:37:49Z | 2017-06-08T11:14:01Z | 2017-06-08T11:13:39Z | NONE | null | related #6322
Hi,
I've found this accidentally that after the subtraction between `df1` and `df2`, the `nan` in the multi index has turned to a `string` rather than the original `float` type. And it's also weird that this issue only happens with the `parse_dates` set to `False`.
The following is the code to reproduc... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7031/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7031/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/7032 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7032/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7032/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7032/events | https://github.com/pandas-dev/pandas/issues/7032 | 32,776,276 | MDU6SXNzdWUzMjc3NjI3Ng== | 7,032 | read_html infers wrong datatype | {
"avatar_url": "https://avatars.githubusercontent.com/u/4936155?v=4",
"events_url": "https://api.github.com/users/LetterRip/events{/privacy}",
"followers_url": "https://api.github.com/users/LetterRip/followers",
"following_url": "https://api.github.com/users/LetterRip/following{/other_user}",
"gists_url": "h... | [
{
"color": "e102d8",
"default": false,
"description": "Unexpected or buggy dtype conversions",
"id": 31404521,
"name": "Dtype Conversions",
"node_id": "MDU6TGFiZWwzMTQwNDUyMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Dtype%20Conversions"
},
{
"color": "006... | closed | false | null | [] | {
"closed_at": "2015-03-23T10:50:37Z",
"closed_issues": 400,
"created_at": "2014-02-14T03:31:22Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jr... | 10 | 2014-05-04T20:38:00Z | 2014-07-28T13:24:39Z | 2014-07-28T13:24:39Z | NONE | null | As can be seen in the below code, column 3, 8, 9, and 10 were misinterpreted as datetime objects. Columns 1, 6 and 7 should be integer. How do I force the columns to be interpreted as the proper type? Only 2, 4, 5 and 11 appear to have been read properly. I can pass 'infer_types=False' I suppose and do manual conversio... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7032/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7032/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/7033 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7033/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7033/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7033/events | https://github.com/pandas-dev/pandas/pull/7033 | 32,777,682 | MDExOlB1bGxSZXF1ZXN0MTU0NzU4MjE= | 7,033 | API: Allow groupby's by to take column and index names [WIP] | {
"avatar_url": "https://avatars.githubusercontent.com/u/1312546?v=4",
"events_url": "https://api.github.com/users/TomAugspurger/events{/privacy}",
"followers_url": "https://api.github.com/users/TomAugspurger/followers",
"following_url": "https://api.github.com/users/TomAugspurger/following{/other_user}",
"gi... | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "4E9A06",
"default": false,
"description": null,
"id": 76812,
... | closed | false | null | [] | {
"closed_at": null,
"closed_issues": 786,
"created_at": "2015-01-13T10:53:19Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jreback/followers",
... | 13 | 2014-05-04T21:46:30Z | 2017-04-05T02:08:43Z | 2015-05-09T16:08:38Z | CONTRIBUTOR | null | closes https://github.com/pydata/pandas/issues/5677
As a reminder, with a data frame like:
``` python
from itertools import cycle, islice
np.random.seed(0)
df = pd.DataFrame(np.random.randn(20, 2))
df.columns = ["foo","bar"]
df['g0'] = list(islice(cycle('ab'), 20))
df['g1'] = ['a'] * 10 + ['b'] * 10
df['g2'] = ['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/7033/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7033/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7033.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7033",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/7033.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7033"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7034 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7034/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7034/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7034/events | https://github.com/pandas-dev/pandas/pull/7034 | 32,779,900 | MDExOlB1bGxSZXF1ZXN0MTU0NzY1NDA= | 7,034 | TST: nose.SkipTest on RemoteDataErrors in tests for io.data.Options | {
"avatar_url": "https://avatars.githubusercontent.com/u/5957850?v=4",
"events_url": "https://api.github.com/users/davidastephens/events{/privacy}",
"followers_url": "https://api.github.com/users/davidastephens/followers",
"following_url": "https://api.github.com/users/davidastephens/following{/other_user}",
... | [
{
"color": "C4A000",
"default": false,
"description": "pandas testing functions or related to the test suite",
"id": 127685,
"name": "Testing",
"node_id": "MDU6TGFiZWwxMjc2ODU=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Testing"
}
] | closed | false | null | [] | {
"closed_at": "2014-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": "htt... | 3 | 2014-05-04T23:08:12Z | 2014-06-16T05:08:36Z | 2014-05-05T10:00:59Z | CONTRIBUTOR | null | Prevents tests from failing if data isn't able to be downloaded from Yahoo Finance.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7034/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7034/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7034.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7034",
"merged_at": "2014-05-05T10:00:59Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/7034.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7034"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7035 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7035/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7035/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7035/events | https://github.com/pandas-dev/pandas/pull/7035 | 32,780,042 | MDExOlB1bGxSZXF1ZXN0MTU0NzY2MDI= | 7,035 | ENH/BUG: boxplot now supports layout | {
"avatar_url": "https://avatars.githubusercontent.com/u/1696302?v=4",
"events_url": "https://api.github.com/users/sinhrks/events{/privacy}",
"followers_url": "https://api.github.com/users/sinhrks/followers",
"following_url": "https://api.github.com/users/sinhrks/following{/other_user}",
"gists_url": "https:/... | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "8AE234",
"default": false,
"description": null,
"id": 2413328,
... | closed | false | null | [] | {
"closed_at": "2014-07-11T00:02:53Z",
"closed_issues": 306,
"created_at": "2014-04-27T23:40:28Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jr... | 15 | 2014-05-04T23:16:27Z | 2014-06-14T11:21:40Z | 2014-05-10T16:16:08Z | MEMBER | null | Closes #6769. Added `layout` kw to `boxplot`. I think tests can be improved if boxplot can return ndarray with the same shape as layout, as the same manner as hist (maybe after #4472).
## Bug fix
It includes the fix to hide unnecessary axes than required in boxplot and hist. For example, `layout=(2, 2)` is specified f... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7035/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7035/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7035.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7035",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/7035.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7035"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7036 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7036/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7036/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7036/events | https://github.com/pandas-dev/pandas/pull/7036 | 32,782,189 | MDExOlB1bGxSZXF1ZXN0MTU0Nzc2Mzc= | 7,036 | TST/CLN: centralize common validation methods in test_graphics | {
"avatar_url": "https://avatars.githubusercontent.com/u/1696302?v=4",
"events_url": "https://api.github.com/users/sinhrks/events{/privacy}",
"followers_url": "https://api.github.com/users/sinhrks/followers",
"following_url": "https://api.github.com/users/sinhrks/following{/other_user}",
"gists_url": "https:/... | [
{
"color": "C4A000",
"default": false,
"description": "pandas testing functions or related to the test suite",
"id": 127685,
"name": "Testing",
"node_id": "MDU6TGFiZWwxMjc2ODU=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Testing"
}
] | 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": "htt... | 4 | 2014-05-05T01:15:25Z | 2014-07-16T09:04:29Z | 2014-05-11T18:05:56Z | MEMBER | null | Create base class for plotting related test, and organized data creation and validation function.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7036/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7036/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7036.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7036",
"merged_at": "2014-05-11T18:05:56Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/7036.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7036"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7037 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7037/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7037/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7037/events | https://github.com/pandas-dev/pandas/issues/7037 | 32,785,597 | MDU6SXNzdWUzMjc4NTU5Nw== | 7,037 | fully deprecate read_html infer_types argument in 0.14 | {
"avatar_url": "https://avatars.githubusercontent.com/u/417981?v=4",
"events_url": "https://api.github.com/users/cpcloud/events{/privacy}",
"followers_url": "https://api.github.com/users/cpcloud/followers",
"following_url": "https://api.github.com/users/cpcloud/following{/other_user}",
"gists_url": "https://... | [
{
"color": "06909A",
"default": false,
"description": "IO issues that don't fit into a more specific label",
"id": 2301354,
"name": "IO Data",
"node_id": "MDU6TGFiZWwyMzAxMzU0",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20Data"
},
{
"color": "AD7FA8",
"... | closed | false | {
"avatar_url": "https://avatars.githubusercontent.com/u/417981?v=4",
"events_url": "https://api.github.com/users/cpcloud/events{/privacy}",
"followers_url": "https://api.github.com/users/cpcloud/followers",
"following_url": "https://api.github.com/users/cpcloud/following{/other_user}",
"gists_url": "https://... | [
{
"avatar_url": "https://avatars.githubusercontent.com/u/417981?v=4",
"events_url": "https://api.github.com/users/cpcloud/events{/privacy}",
"followers_url": "https://api.github.com/users/cpcloud/followers",
"following_url": "https://api.github.com/users/cpcloud/following{/other_user}",
"gists_u... | {
"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": "htt... | 4 | 2014-05-05T03:44:37Z | 2014-05-05T13:50:55Z | 2014-05-05T13:50:55Z | MEMBER | null | xref: #7032
really just remove the parameter's effect (no signature change) ... but give a _full_ removal warning for 0.15
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7037/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7037/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/7038 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7038/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7038/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7038/events | https://github.com/pandas-dev/pandas/pull/7038 | 32,786,180 | MDExOlB1bGxSZXF1ZXN0MTU0Nzk1Njc= | 7,038 | BUG: DatetimeIndex cannot parse string ndarray with dayfirst | {
"avatar_url": "https://avatars.githubusercontent.com/u/1696302?v=4",
"events_url": "https://api.github.com/users/sinhrks/events{/privacy}",
"followers_url": "https://api.github.com/users/sinhrks/followers",
"following_url": "https://api.github.com/users/sinhrks/following{/other_user}",
"gists_url": "https:/... | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "AFEEEE",
"default": false,
"description": null,
"id": 211840,
... | closed | false | null | [] | {
"closed_at": "2014-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": "htt... | 8 | 2014-05-05T04:12:11Z | 2014-07-16T09:04:30Z | 2014-05-10T11:32:16Z | MEMBER | null | Closes #5917.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7038/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7038/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7038.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7038",
"merged_at": "2014-05-10T11:32:16Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/7038.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7038"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7039 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7039/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7039/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7039/events | https://github.com/pandas-dev/pandas/issues/7039 | 32,798,369 | MDU6SXNzdWUzMjc5ODM2OQ== | 7,039 | NWK: any remaining network fails on builds - pls report | {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jreback/followers",
"following_url": "https://api.github.com/users/jreback/following{/other_user}",
"gists_url": "https://... | [
{
"color": "C4A000",
"default": false,
"description": "pandas testing functions or related to the test suite",
"id": 127685,
"name": "Testing",
"node_id": "MDU6TGFiZWwxMjc2ODU=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Testing"
},
{
"color": "e4a5f1",
"d... | 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": "htt... | 0 | 2014-05-05T10:02:54Z | 2014-05-12T12:37:23Z | 2014-05-12T12:37:23Z | CONTRIBUTOR | null | https://github.com/pydata/pandas/pull/7034
should have closed all the io/data get options data failures..
if you see other ones pls report here!
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7039/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7039/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/7040 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7040/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7040/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7040/events | https://github.com/pandas-dev/pandas/pull/7040 | 32,801,806 | MDExOlB1bGxSZXF1ZXN0MTU0ODgxMTA= | 7,040 | PERF: optimize Index.delete for dtype=object | {
"avatar_url": "https://avatars.githubusercontent.com/u/579798?v=4",
"events_url": "https://api.github.com/users/immerrr/events{/privacy}",
"followers_url": "https://api.github.com/users/immerrr/followers",
"following_url": "https://api.github.com/users/immerrr/following{/other_user}",
"gists_url": "https://... | [
{
"color": "0b02e1",
"default": false,
"description": "Related to indexing on series/frames, not to indexes themselves",
"id": 2822098,
"name": "Indexing",
"node_id": "MDU6TGFiZWwyODIyMDk4",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Indexing"
},
{
"color": "a1... | 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": "htt... | 3 | 2014-05-05T11:18:41Z | 2014-06-16T01:51:43Z | 2014-05-05T13:27:58Z | CONTRIBUTOR | null | This should close #6933.
The downside of this patch is that we'll lose type inference that might change index type in rare occasions when index items have different dtypes. This is the same issue that occurred in #6440, and it was ruled out as infrequent and worth dropping for extra performance.
Note though, that the... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7040/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7040/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7040.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7040",
"merged_at": "2014-05-05T13:27:58Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/7040.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7040"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7041 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7041/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7041/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7041/events | https://github.com/pandas-dev/pandas/pull/7041 | 32,802,969 | MDExOlB1bGxSZXF1ZXN0MTU0ODg3Nzk= | 7,041 | BUG: unstack fails in PeriodIndex | {
"avatar_url": "https://avatars.githubusercontent.com/u/1696302?v=4",
"events_url": "https://api.github.com/users/sinhrks/events{/privacy}",
"followers_url": "https://api.github.com/users/sinhrks/followers",
"following_url": "https://api.github.com/users/sinhrks/following{/other_user}",
"gists_url": "https:/... | [
{
"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": "eb6420",
"de... | closed | false | null | [] | {
"closed_at": "2014-07-11T00:02:53Z",
"closed_issues": 306,
"created_at": "2014-04-27T23:40:28Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jr... | 9 | 2014-05-05T11:45:58Z | 2014-06-28T15:35:06Z | 2014-05-10T15:32:36Z | MEMBER | null | Closes #4342.
Also changed `Categorical` and `PeriodIndex.factorize` to make index sorted like other indexes do.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7041/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7041/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7041.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7041",
"merged_at": "2014-05-10T15:32:36Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/7041.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7041"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7042 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7042/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7042/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7042/events | https://github.com/pandas-dev/pandas/pull/7042 | 32,803,170 | MDExOlB1bGxSZXF1ZXN0MTU0ODg4OTE= | 7,042 | TST: clean skipping tests in test_offsets | {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jreback/followers",
"following_url": "https://api.github.com/users/jreback/following{/other_user}",
"gists_url": "https://... | [
{
"color": "C4A000",
"default": false,
"description": "pandas testing functions or related to the test suite",
"id": 127685,
"name": "Testing",
"node_id": "MDU6TGFiZWwxMjc2ODU=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Testing"
},
{
"color": "0052cc",
"d... | 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": "htt... | 0 | 2014-05-05T11:50:26Z | 2014-07-16T09:04:36Z | 2014-05-05T11:50:40Z | 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/7042/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7042/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7042.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7042",
"merged_at": "2014-05-05T11:50:40Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/7042.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7042"
} | |
https://api.github.com/repos/pandas-dev/pandas/issues/7043 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7043/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7043/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7043/events | https://github.com/pandas-dev/pandas/pull/7043 | 32,805,800 | MDExOlB1bGxSZXF1ZXN0MTU0OTAyNTg= | 7,043 | ENH/BUG: partial string indexing with PeriodIndex | {
"avatar_url": "https://avatars.githubusercontent.com/u/1696302?v=4",
"events_url": "https://api.github.com/users/sinhrks/events{/privacy}",
"followers_url": "https://api.github.com/users/sinhrks/followers",
"following_url": "https://api.github.com/users/sinhrks/following{/other_user}",
"gists_url": "https:/... | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "0b02e1",
"default": false,
"description": "Related to indexing on s... | closed | false | null | [] | {
"closed_at": "2014-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": "htt... | 5 | 2014-05-05T12:39:57Z | 2014-06-17T01:47:00Z | 2014-05-13T14:29:35Z | MEMBER | null | Closes #6716.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7043/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7043/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7043.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7043",
"merged_at": "2014-05-13T14:29:35Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/7043.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7043"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7044 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7044/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7044/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7044/events | https://github.com/pandas-dev/pandas/pull/7044 | 32,805,988 | MDExOlB1bGxSZXF1ZXN0MTU0OTAzNjg= | 7,044 | API: update nth to use the _set_selection_from_grouper makes first==nth(0) and last==nth(-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://... | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "729FCF",
"default": false,
"description": null,
"id": 233160,
... | closed | false | null | [] | {
"closed_at": "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": "htt... | 7 | 2014-05-05T12:43:30Z | 2014-07-16T09:04:40Z | 2014-05-12T12:41:17Z | CONTRIBUTOR | null | closes #6732
`nth` sets the index appropriately and the same as first/last.
this becomes less like head/tail in that `as_index` determines when you have an index
here's the revised behavior:
```
In [1]: df = DataFrame([[1, np.nan], [1, 4], [5, 6]], columns=['A', 'B'])
In [3]: df
Out[3]:
A B
0 1 NaN
1 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/7044/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7044/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7044.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7044",
"merged_at": "2014-05-12T12:41:17Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/7044.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7044"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7045 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7045/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7045/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7045/events | https://github.com/pandas-dev/pandas/issues/7045 | 32,822,587 | MDU6SXNzdWUzMjgyMjU4Nw== | 7,045 | VIS: Warn when a user passes an ignored argument | {
"avatar_url": "https://avatars.githubusercontent.com/u/1312546?v=4",
"events_url": "https://api.github.com/users/TomAugspurger/events{/privacy}",
"followers_url": "https://api.github.com/users/TomAugspurger/followers",
"following_url": "https://api.github.com/users/TomAugspurger/following{/other_user}",
"gi... | [
{
"color": "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,
... | open | false | null | [] | {
"closed_at": null,
"closed_issues": 278,
"created_at": "2013-01-06T03:02:01Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"f... | 2 | 2014-05-05T16:20:06Z | 2021-04-11T04:32:37Z | null | CONTRIBUTOR | null | So the plot method is quite... flexible (bloated). This does give great flexibility for quickly plotting stuff, but not all args make sense for every kind of plot. Some plots (for example PiePlot) will ignore arguments like `logx` since it doesn't make any sense. This case is obviously nonsense, so it probably won't ha... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7045/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7045/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/7046 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7046/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7046/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7046/events | https://github.com/pandas-dev/pandas/pull/7046 | 32,839,444 | MDExOlB1bGxSZXF1ZXN0MTU1MTAwOTY= | 7,046 | DOC: Add parameter to docstring | {
"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... | [] | closed | false | null | [] | null | 1 | 2014-05-05T19:54:13Z | 2014-06-28T15:35:13Z | 2014-05-05T21:04:26Z | CONTRIBUTOR | null | I just kinda guessed what `precision` does.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7046/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7046/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7046.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7046",
"merged_at": "2014-05-05T21:04:26Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/7046.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7046"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7047 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7047/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7047/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7047/events | https://github.com/pandas-dev/pandas/pull/7047 | 32,842,528 | MDExOlB1bGxSZXF1ZXN0MTU1MTE4NTY= | 7,047 | DOC: Small typo | {
"avatar_url": "https://avatars.githubusercontent.com/u/1630128?v=4",
"events_url": "https://api.github.com/users/jsexauer/events{/privacy}",
"followers_url": "https://api.github.com/users/jsexauer/followers",
"following_url": "https://api.github.com/users/jsexauer/following{/other_user}",
"gists_url": "http... | [] | closed | false | null | [] | null | 1 | 2014-05-05T20:29:06Z | 2014-07-16T09:04:45Z | 2014-05-05T21:07:18Z | 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/7047/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7047/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7047.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7047",
"merged_at": "2014-05-05T21:07:18Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/7047.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7047"
} | |
https://api.github.com/repos/pandas-dev/pandas/issues/7048 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7048/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7048/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7048/events | https://github.com/pandas-dev/pandas/issues/7048 | 32,846,119 | MDU6SXNzdWUzMjg0NjExOQ== | 7,048 | read_csv is inefficient for wide tables | {
"avatar_url": "https://avatars.githubusercontent.com/u/3308182?v=4",
"events_url": "https://api.github.com/users/jdavidheiser/events{/privacy}",
"followers_url": "https://api.github.com/users/jdavidheiser/followers",
"following_url": "https://api.github.com/users/jdavidheiser/following{/other_user}",
"gists... | [
{
"color": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
},
{
"color": "ffa0ff",
"default": false,
"description": "Incorrect or improved... | closed | false | null | [] | {
"closed_at": null,
"closed_issues": 278,
"created_at": "2013-01-06T03:02:01Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"f... | 3 | 2014-05-05T21:13:02Z | 2016-01-07T19:56:31Z | 2016-01-07T19:56:31Z | NONE | null | I was loading some relatively large CSV files (roughly three hundred by one million), and noticed that the layout of those CSVs is actually critical to Pandas' ability to read them to memory. A "wide" format uses large amounts of memory and takes an extremely long time to run (killed the process after a half hour). T... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7048/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7048/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/7049 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7049/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7049/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7049/events | https://github.com/pandas-dev/pandas/issues/7049 | 32,853,360 | MDU6SXNzdWUzMjg1MzM2MA== | 7,049 | Week Start/End Resamping: WS/WE frequencies | {
"avatar_url": "https://avatars.githubusercontent.com/u/1403768?v=4",
"events_url": "https://api.github.com/users/quasiben/events{/privacy}",
"followers_url": "https://api.github.com/users/quasiben/followers",
"following_url": "https://api.github.com/users/quasiben/following{/other_user}",
"gists_url": "http... | [
{
"color": "4E9A06",
"default": false,
"description": null,
"id": 76812,
"name": "Enhancement",
"node_id": "MDU6TGFiZWw3NjgxMg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Enhancement"
},
{
"color": "0052cc",
"default": false,
"description": "DateOffs... | open | false | null | [] | {
"closed_at": null,
"closed_issues": 786,
"created_at": "2015-01-13T10:53:19Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jreback/followers",
... | 20 | 2014-05-05T22:54:07Z | 2021-04-11T04:33:43Z | null | NONE | null | There are a number of offset aliases listed here:
http://pandas.pydata.org/pandas-docs/dev/timeseries.html#offset-aliases
I'm currently trying to resample a timeseries where the buckets are return with the beginning and/or end of the week. There are a number of Start Month/End Month frequency aliases. Am I missing s... | {
"+1": 3,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 3,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7049/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7049/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/7050 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7050/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7050/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7050/events | https://github.com/pandas-dev/pandas/issues/7050 | 32,854,617 | MDU6SXNzdWUzMjg1NDYxNw== | 7,050 | Subtract Timestamp from DatetimeIndex | {
"avatar_url": "https://avatars.githubusercontent.com/u/3414802?v=4",
"events_url": "https://api.github.com/users/pzakielarz/events{/privacy}",
"followers_url": "https://api.github.com/users/pzakielarz/followers",
"following_url": "https://api.github.com/users/pzakielarz/following{/other_user}",
"gists_url":... | [
{
"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 t... | closed | false | null | [] | {
"closed_at": "2015-03-23T10:50:37Z",
"closed_issues": 400,
"created_at": "2014-02-14T03:31:22Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jr... | 6 | 2014-05-05T23:16:21Z | 2014-10-30T04:10:53Z | 2014-10-30T04:10:53Z | NONE | null | A TypeError is raised when attempting to subtract a Timestamp from a DatetimeIndex when the result of the subtraction is zero.
```
dr = pd.date_range('20140101', freq='S', periods=11)
zero = dr[5]
diff = dr - zero
```
raises a TypeError, however,
```
diff = [i - zero for i in dr]
```
produces the desired list of ti... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7050/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7050/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/7051 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7051/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7051/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7051/events | https://github.com/pandas-dev/pandas/issues/7051 | 32,865,435 | MDU6SXNzdWUzMjg2NTQzNQ== | 7,051 | Performance issue with DataFrame.to_csv() | {
"avatar_url": "https://avatars.githubusercontent.com/u/69774?v=4",
"events_url": "https://api.github.com/users/michaelaye/events{/privacy}",
"followers_url": "https://api.github.com/users/michaelaye/followers",
"following_url": "https://api.github.com/users/michaelaye/following{/other_user}",
"gists_url": "... | [
{
"color": "a10c02",
"default": false,
"description": "Memory or execution speed performance",
"id": 8935311,
"name": "Performance",
"node_id": "MDU6TGFiZWw4OTM1MzEx",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Performance"
},
{
"color": "009800",
"default"... | closed | false | null | [] | null | 11 | 2014-05-06T04:27:42Z | 2014-05-10T00:27:22Z | 2014-05-06T12:02:24Z | CONTRIBUTOR | null | I have a performance issue that I discovered by noticing that 173 MB sized CSV files take quite a while to write out (I have to write many of them). The io profiler I use is `iotop` that indicated that my write rate was a meager 9 MB/s while the raid I am writing to supports up to 20 times that, as I have confirmed wit... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7051/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7051/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/7052 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7052/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7052/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7052/events | https://github.com/pandas-dev/pandas/issues/7052 | 32,875,614 | MDU6SXNzdWUzMjg3NTYxNA== | 7,052 | Hierarchical reindexing with NaN in index | {
"avatar_url": "https://avatars.githubusercontent.com/u/1550888?v=4",
"events_url": "https://api.github.com/users/Marigold/events{/privacy}",
"followers_url": "https://api.github.com/users/Marigold/followers",
"following_url": "https://api.github.com/users/Marigold/following{/other_user}",
"gists_url": "http... | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "d7e102",
"default": false,
"description": "np.nan, pd.NaT, pd.NA, d... | closed | false | null | [] | {
"closed_at": "2015-03-23T10:50:37Z",
"closed_issues": 400,
"created_at": "2014-02-14T03:31:22Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jr... | 1 | 2014-05-06T08:59:35Z | 2014-05-06T10:14:52Z | 2014-05-06T10:14:52Z | NONE | null | related #6322
dupe of #7031
I'm on 0.13.1, don't know if this is already fixed on master, but haven't found any issues about this. If I you have `NaN` value in MultiIndex, reindexing will fill the first value from reindexed series to all `NaN` indices. Perhaps an example will clarify it
Code:
``` python
import pand... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7052/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7052/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/7053 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7053/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7053/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7053/events | https://github.com/pandas-dev/pandas/issues/7053 | 32,886,238 | MDU6SXNzdWUzMjg4NjIzOA== | 7,053 | ENH: add nlargest/nsmallest to Series groupby | {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jreback/followers",
"following_url": "https://api.github.com/users/jreback/following{/other_user}",
"gists_url": "https://... | [
{
"color": "4E9A06",
"default": false,
"description": null,
"id": 76812,
"name": "Enhancement",
"node_id": "MDU6TGFiZWw3NjgxMg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Enhancement"
},
{
"color": "729FCF",
"default": false,
"description": null,
... | closed | false | null | [] | {
"closed_at": "2014-07-11T00:02:53Z",
"closed_issues": 306,
"created_at": "2014-04-27T23:40:28Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jr... | 2 | 2014-05-06T12:04:58Z | 2016-10-12T23:04:49Z | 2014-06-09T03:00:56Z | CONTRIBUTOR | null | see #5534
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7053/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7053/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/7054 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7054/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7054/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7054/events | https://github.com/pandas-dev/pandas/pull/7054 | 32,892,898 | MDExOlB1bGxSZXF1ZXN0MTU1NDA4ODk= | 7,054 | DOC: cleanup vis docs | {
"avatar_url": "https://avatars.githubusercontent.com/u/1312546?v=4",
"events_url": "https://api.github.com/users/TomAugspurger/events{/privacy}",
"followers_url": "https://api.github.com/users/TomAugspurger/followers",
"following_url": "https://api.github.com/users/TomAugspurger/following{/other_user}",
"gi... | [
{
"color": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
},
{
"color": "8AE234",
"default": false,
"description": null,
"id": 241332... | closed | false | null | [] | {
"closed_at": "2014-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": "htt... | 3 | 2014-05-06T13:39:00Z | 2017-04-05T02:08:36Z | 2014-05-06T14:22:31Z | CONTRIBUTOR | null | DOC: Give KDE a section header
DOC: remove extra slice in hexbin example
DOC: move notes to look nicer
A few changes that came up in https://github.com/pydata/pandas/pull/7027
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7054/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7054/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7054.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7054",
"merged_at": "2014-05-06T14:22:31Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/7054.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7054"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7055 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7055/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7055/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7055/events | https://github.com/pandas-dev/pandas/pull/7055 | 32,894,958 | MDExOlB1bGxSZXF1ZXN0MTU1NDIxMTc= | 7,055 | ENH: use size instead of cythonized count for fallback cases | {
"avatar_url": "https://avatars.githubusercontent.com/u/417981?v=4",
"events_url": "https://api.github.com/users/cpcloud/events{/privacy}",
"followers_url": "https://api.github.com/users/cpcloud/followers",
"following_url": "https://api.github.com/users/cpcloud/following{/other_user}",
"gists_url": "https://... | [
{
"color": "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": "a10c02"... | closed | false | {
"avatar_url": "https://avatars.githubusercontent.com/u/417981?v=4",
"events_url": "https://api.github.com/users/cpcloud/events{/privacy}",
"followers_url": "https://api.github.com/users/cpcloud/followers",
"following_url": "https://api.github.com/users/cpcloud/following{/other_user}",
"gists_url": "https://... | [
{
"avatar_url": "https://avatars.githubusercontent.com/u/417981?v=4",
"events_url": "https://api.github.com/users/cpcloud/events{/privacy}",
"followers_url": "https://api.github.com/users/cpcloud/followers",
"following_url": "https://api.github.com/users/cpcloud/following{/other_user}",
"gists_u... | {
"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": "htt... | 12 | 2014-05-06T14:02:58Z | 2014-07-16T09:04:47Z | 2014-05-08T17:55:21Z | MEMBER | null | - use size instead of cythonized count for integer case since we cannot have
`nan` in that case
- not faster perf wise
- compilation time is shorter because count has no int templates except for
dates and times
- any precision issues (don't think there were any) with other integer types are gone, since only `int64`... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7055/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7055/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7055.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7055",
"merged_at": "2014-05-08T17:55:21Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/7055.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7055"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7056 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7056/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7056/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7056/events | https://github.com/pandas-dev/pandas/issues/7056 | 32,894,990 | MDU6SXNzdWUzMjg5NDk5MA== | 7,056 | to_excel can't handle index with time zones | {
"avatar_url": "https://avatars.githubusercontent.com/u/2857308?v=4",
"events_url": "https://api.github.com/users/sboehler/events{/privacy}",
"followers_url": "https://api.github.com/users/sboehler/followers",
"following_url": "https://api.github.com/users/sboehler/following{/other_user}",
"gists_url": "http... | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "AD7FA8",
"default": false,
"description": null,
"id": 35818298,... | closed | false | null | [] | {
"closed_at": null,
"closed_issues": 786,
"created_at": "2015-01-13T10:53:19Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jreback/followers",
... | 17 | 2014-05-06T14:03:16Z | 2019-06-29T20:54:28Z | 2019-06-29T20:54:28Z | NONE | null | Hi
Something is wrong when trying to save a dataframe with tz-aware timestamps to xlsx, using pd.Dataframe.to_excel:
``` Python
df = pd.DataFrame([1], index=[pd.Timestamp('2014-05-02', tz='CET')])
df.to_excel('test.xlsx')
```
yields an exception on my system:
```
----------------------------------------------------... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7056/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7056/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/7057 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7057/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7057/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7057/events | https://github.com/pandas-dev/pandas/issues/7057 | 32,902,286 | MDU6SXNzdWUzMjkwMjI4Ng== | 7,057 | Apply Functions to Inner Dict in Groupby | {
"avatar_url": "https://avatars.githubusercontent.com/u/2454080?v=4",
"events_url": "https://api.github.com/users/calben/events{/privacy}",
"followers_url": "https://api.github.com/users/calben/followers",
"following_url": "https://api.github.com/users/calben/following{/other_user}",
"gists_url": "https://ap... | [
{
"color": "729FCF",
"default": false,
"description": null,
"id": 233160,
"name": "Groupby",
"node_id": "MDU6TGFiZWwyMzMxNjA=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Groupby"
}
] | closed | false | null | [] | null | 7 | 2014-05-06T15:16:25Z | 2014-05-16T17:48:39Z | 2014-05-16T17:48:39Z | NONE | null | I have a problem where I need to use the value of the column by which a grouped dataframe is transformed.
The code is a complicated case of the following, where column are labelled by instances of a Python class:
```
# group by a value in the column instance
per_column = results.groupby(lambda x : x.value, 1)
for k, ... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7057/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7057/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/7058 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7058/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7058/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7058/events | https://github.com/pandas-dev/pandas/issues/7058 | 32,908,566 | MDU6SXNzdWUzMjkwODU2Ng== | 7,058 | DataFrame.to_panel() method throws MemoryError when number of rows per item varies greatly | {
"avatar_url": "https://avatars.githubusercontent.com/u/10137?v=4",
"events_url": "https://api.github.com/users/ghost/events{/privacy}",
"followers_url": "https://api.github.com/users/ghost/followers",
"following_url": "https://api.github.com/users/ghost/following{/other_user}",
"gists_url": "https://api.git... | [] | closed | false | null | [] | null | 8 | 2014-05-06T16:23:50Z | 2014-05-06T19:51:23Z | 2014-05-06T19:51:23Z | NONE | null | Ipython 64, pandas installed with pip, 16 gb ram with sizable swap.
The following seems to replicate the issue I have with my data:
``` python
import pandas as pd
import numpy as np
pdf = pd.DataFrame(np.random.rand(600000,25), columns = list('abcdefghijklmnopqrstuvwxy'))
sample=np.random.rand(900)
for i in range(100... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7058/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7058/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/7059 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7059/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7059/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7059/events | https://github.com/pandas-dev/pandas/issues/7059 | 32,918,352 | MDU6SXNzdWUzMjkxODM1Mg== | 7,059 | BUG: max_colwidth controls data, not headers | {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jreback/followers",
"following_url": "https://api.github.com/users/jreback/following{/other_user}",
"gists_url": "https://... | [
{
"color": "4E9A06",
"default": false,
"description": null,
"id": 76812,
"name": "Enhancement",
"node_id": "MDU6TGFiZWw3NjgxMg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Enhancement"
},
{
"color": "ededed",
"default": false,
"description": "__repr__... | open | false | null | [] | {
"closed_at": null,
"closed_issues": 786,
"created_at": "2015-01-13T10:53:19Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jreback/followers",
... | 3 | 2014-05-06T18:16:36Z | 2015-03-06T00:42:13Z | null | CONTRIBUTOR | null | https://github.com/statsmodels/statsmodels/issues/1584
So should do _something_ with the headers (maybe do a '....')
```
In [2]: df = DataFrame(1,index=range(2),columns=['short','really long'])
In [3]: df
Out[3]:
short really long
0 1 1
1 1 1
[2 rows x 2 columns]
In [6]: with p... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7059/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7059/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/7060 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7060/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7060/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7060/events | https://github.com/pandas-dev/pandas/pull/7060 | 32,935,447 | MDExOlB1bGxSZXF1ZXN0MTU1NjY3MjQ= | 7,060 | Remove tzinfo from datetime before writing cell with xlsxwriter | {
"avatar_url": "https://avatars.githubusercontent.com/u/2857308?v=4",
"events_url": "https://api.github.com/users/sboehler/events{/privacy}",
"followers_url": "https://api.github.com/users/sboehler/followers",
"following_url": "https://api.github.com/users/sboehler/following{/other_user}",
"gists_url": "http... | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "bfe5bf",
"default": false,
"description": "read_excel, to_excel",
... | closed | false | null | [] | null | 3 | 2014-05-06T21:34:21Z | 2014-08-22T12:01:02Z | 2014-08-22T12:00:52Z | NONE | null | fixes #7056
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7060/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7060/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7060.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7060",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/7060.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7060"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7061 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7061/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7061/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7061/events | https://github.com/pandas-dev/pandas/issues/7061 | 32,941,334 | MDU6SXNzdWUzMjk0MTMzNA== | 7,061 | Unicode handling in `to_latex`. Needs encoding? | {
"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... | [
{
"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",
"... | closed | false | null | [] | {
"closed_at": "2016-03-12T16:19:08Z",
"closed_issues": 469,
"created_at": "2015-07-19T20:18:45Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jr... | 10 | 2014-05-06T23:00:35Z | 2016-01-15T16:24:52Z | 2016-01-15T16:24:52Z | CONTRIBUTOR | null | I can't seem to get this one to work and `to_latex` doesn't allow a user-specified encoding. I think this might need a look.
I have it in unicode, so try that way.
```
pd.DataFrame([[u'au\xdfgangen']]).to_latex('test.tex')
```
Nope. Ok, so let's encode it as a utf-8 string
```
pd.DataFrame([[u'au\xdfgangen']]).appl... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7061/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7061/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/7062 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7062/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7062/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7062/events | https://github.com/pandas-dev/pandas/pull/7062 | 32,981,359 | MDExOlB1bGxSZXF1ZXN0MTU1OTI5MjY= | 7,062 | DOC: One more cleanup on visualization.rst | {
"avatar_url": "https://avatars.githubusercontent.com/u/1312546?v=4",
"events_url": "https://api.github.com/users/TomAugspurger/events{/privacy}",
"followers_url": "https://api.github.com/users/TomAugspurger/followers",
"following_url": "https://api.github.com/users/TomAugspurger/following{/other_user}",
"gi... | [] | closed | false | null | [] | null | 1 | 2014-05-07T12:44:27Z | 2014-07-16T09:04:50Z | 2014-05-07T13:14:48Z | CONTRIBUTOR | null | Followup to https://github.com/pydata/pandas/pull/7054
DOC: fix formatting on plot formattting
DOC: add KDE to other plots
more bits of formatting
Thanks for catching these
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7062/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7062/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7062.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7062",
"merged_at": "2014-05-07T13:14:48Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/7062.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7062"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7063 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7063/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7063/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7063/events | https://github.com/pandas-dev/pandas/pull/7063 | 33,015,733 | MDExOlB1bGxSZXF1ZXN0MTU2MTQzMTU= | 7,063 | Added dropna to docstring for HDFStore.put() | {
"avatar_url": "https://avatars.githubusercontent.com/u/417058?v=4",
"events_url": "https://api.github.com/users/davidljung/events{/privacy}",
"followers_url": "https://api.github.com/users/davidljung/followers",
"following_url": "https://api.github.com/users/davidljung/following{/other_user}",
"gists_url": ... | [
{
"color": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
},
{
"color": "5319e7",
"default": false,
"description": "read_hdf, HDFStore",
... | 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": "htt... | 2 | 2014-05-07T19:17:37Z | 2014-05-07T19:27:30Z | 2014-05-07T19:27:30Z | CONTRIBUTOR | null | HDFStore.put() method accepts dropna boolean parameter as it is passed
directly to the internal _write_to_group() method, but it was not
explicitly documented (as it is for append).
Just added 2 lines to the put() method docstring to mention it explicitly.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7063/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7063/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7063.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7063",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/7063.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7063"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7064 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7064/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7064/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7064/events | https://github.com/pandas-dev/pandas/pull/7064 | 33,016,663 | MDExOlB1bGxSZXF1ZXN0MTU2MTQ4ODc= | 7,064 | Added dropna to docstring for HDFStore.put() | {
"avatar_url": "https://avatars.githubusercontent.com/u/417058?v=4",
"events_url": "https://api.github.com/users/davidljung/events{/privacy}",
"followers_url": "https://api.github.com/users/davidljung/followers",
"following_url": "https://api.github.com/users/davidljung/following{/other_user}",
"gists_url": ... | [
{
"color": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
},
{
"color": "5319e7",
"default": false,
"description": "read_hdf, HDFStore",
... | 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": "htt... | 6 | 2014-05-07T19:29:10Z | 2014-07-16T09:04:52Z | 2014-05-08T14:25:49Z | CONTRIBUTOR | null | HDFStore.put() method accepts dropna boolean parameter as it is passed
directly to the internal _write_to_group() method, but it was not
explicitly documented (as it is for append). Also settable via option.
Just added 2 lines to the put() method docstring to mention it explicitly - copied from append()
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7064/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7064/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7064.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7064",
"merged_at": "2014-05-08T14:25:49Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/7064.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7064"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7065 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7065/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7065/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7065/events | https://github.com/pandas-dev/pandas/issues/7065 | 33,021,873 | MDU6SXNzdWUzMzAyMTg3Mw== | 7,065 | DEPR: seems numpy is deprecating object array bool comparison w/nan in 1.9 | {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jreback/followers",
"following_url": "https://api.github.com/users/jreback/following{/other_user}",
"gists_url": "https://... | [
{
"color": "5319e7",
"default": false,
"description": "Functionality to remove in pandas",
"id": 87485152,
"name": "Deprecate",
"node_id": "MDU6TGFiZWw4NzQ4NTE1Mg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Deprecate"
}
] | closed | false | null | [] | {
"closed_at": "2014-11-09T12:33:59Z",
"closed_issues": 86,
"created_at": "2014-10-30T11:12:13Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jre... | 5 | 2014-05-07T20:32:34Z | 2014-10-30T11:19:43Z | 2014-10-10T01:17:56Z | CONTRIBUTOR | null | related:
#8509
https://github.com/pydata/pandas/pull/5283
https://github.com/numpy/numpy/issues/4685
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7065/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7065/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/7066 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7066/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7066/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7066/events | https://github.com/pandas-dev/pandas/issues/7066 | 33,024,171 | MDU6SXNzdWUzMzAyNDE3MQ== | 7,066 | Index.isin() always True for nans | {
"avatar_url": "https://avatars.githubusercontent.com/u/1676326?v=4",
"events_url": "https://api.github.com/users/goyodiaz/events{/privacy}",
"followers_url": "https://api.github.com/users/goyodiaz/followers",
"following_url": "https://api.github.com/users/goyodiaz/following{/other_user}",
"gists_url": "http... | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "0b02e1",
"default": false,
"description": "Related to indexing on s... | 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": "htt... | 6 | 2014-05-07T21:00:13Z | 2016-10-12T23:04:50Z | 2014-05-08T12:39:13Z | CONTRIBUTOR | null | This looks like a regression to me, the following code used to print `[ True]`, which I think is the correct behaviour, but prints `[False]` in recent development versions (0.13.1.dev).
```
import numpy as np
import pandas as pd
i = pd.Index([np.nan])
print i.isin({0}) # prints [ True], should be [False]
```
I do n... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7066/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7066/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/7067 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7067/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7067/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7067/events | https://github.com/pandas-dev/pandas/issues/7067 | 33,027,071 | MDU6SXNzdWUzMzAyNzA3MQ== | 7,067 | datetime64 changes | {
"avatar_url": "https://avatars.githubusercontent.com/u/526173?v=4",
"events_url": "https://api.github.com/users/RayVR/events{/privacy}",
"followers_url": "https://api.github.com/users/RayVR/followers",
"following_url": "https://api.github.com/users/RayVR/following{/other_user}",
"gists_url": "https://api.gi... | [] | closed | false | null | [] | null | 3 | 2014-05-07T21:35:28Z | 2014-05-07T21:45:30Z | 2014-05-07T21:44:06Z | NONE | null | In [40]: bnds.date[1]
Out[40]: Timestamp('2000-02-17 00:00:00', tz=None)
In [41]: tmp = bnds.date.values[1]
In [42]: tmp
Out[42]: numpy.datetime64('2000-02-16T19:00:00.000000000-0500')
In [43]: tmp.astype('datetime64[D]')
Out[43]: numpy.datetime64('2000-02-17')
Anyone know why Out[42] is February 16? I'm quite conf... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7067/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7067/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/7068 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7068/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7068/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7068/events | https://github.com/pandas-dev/pandas/pull/7068 | 33,029,770 | MDExOlB1bGxSZXF1ZXN0MTU2MjMyNTU= | 7,068 | BUG: PEBKAC bug in Float64Index | {
"avatar_url": "https://avatars.githubusercontent.com/u/417981?v=4",
"events_url": "https://api.github.com/users/cpcloud/events{/privacy}",
"followers_url": "https://api.github.com/users/cpcloud/followers",
"following_url": "https://api.github.com/users/cpcloud/following{/other_user}",
"gists_url": "https://... | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "0b02e1",
"default": false,
"description": "Related to indexing on s... | closed | false | {
"avatar_url": "https://avatars.githubusercontent.com/u/417981?v=4",
"events_url": "https://api.github.com/users/cpcloud/events{/privacy}",
"followers_url": "https://api.github.com/users/cpcloud/followers",
"following_url": "https://api.github.com/users/cpcloud/following{/other_user}",
"gists_url": "https://... | [
{
"avatar_url": "https://avatars.githubusercontent.com/u/417981?v=4",
"events_url": "https://api.github.com/users/cpcloud/events{/privacy}",
"followers_url": "https://api.github.com/users/cpcloud/followers",
"following_url": "https://api.github.com/users/cpcloud/following{/other_user}",
"gists_u... | {
"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": "htt... | 9 | 2014-05-07T22:09:43Z | 2014-07-16T09:04:53Z | 2014-05-08T12:39:13Z | MEMBER | null | closes #7066
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7068/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7068/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7068.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7068",
"merged_at": "2014-05-08T12:39:13Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/7068.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7068"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7069 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7069/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7069/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7069/events | https://github.com/pandas-dev/pandas/issues/7069 | 33,032,534 | MDU6SXNzdWUzMzAzMjUzNA== | 7,069 | ENH: Allow passing multiple axes as df.boxplot's `ax` argument | {
"avatar_url": "https://avatars.githubusercontent.com/u/1460294?v=4",
"events_url": "https://api.github.com/users/onesandzeroes/events{/privacy}",
"followers_url": "https://api.github.com/users/onesandzeroes/followers",
"following_url": "https://api.github.com/users/onesandzeroes/following{/other_user}",
"gi... | [
{
"color": "8AE234",
"default": false,
"description": null,
"id": 2413328,
"name": "Visualization",
"node_id": "MDU6TGFiZWwyNDEzMzI4",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Visualization"
}
] | closed | false | null | [] | {
"closed_at": "2014-10-23T11:43:09Z",
"closed_issues": 530,
"created_at": "2014-07-06T18:44:54Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jr... | 2 | 2014-05-07T22:53:11Z | 2014-08-19T17:09:15Z | 2014-08-19T17:09:15Z | CONTRIBUTOR | null | As discussed in #6991. At the moment with `ax` accepting a single axis you cannot map a multi-axis boxplot onto existing axes, but we could allow `ax` to be an array of axes. Would require:
- Checking that the number of axes passed is equal to the number of axes the boxplot
wants to produce.
- Some documentation to m... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7069/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7069/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/7070 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7070/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7070/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7070/events | https://github.com/pandas-dev/pandas/issues/7070 | 33,036,913 | MDU6SXNzdWUzMzAzNjkxMw== | 7,070 | Create Holiday Calendar for NYSE Stock Market | {
"avatar_url": "https://avatars.githubusercontent.com/u/51059?v=4",
"events_url": "https://api.github.com/users/cancan101/events{/privacy}",
"followers_url": "https://api.github.com/users/cancan101/followers",
"following_url": "https://api.github.com/users/cancan101/following{/other_user}",
"gists_url": "htt... | [
{
"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,
... | closed | false | null | [] | {
"closed_at": null,
"closed_issues": 278,
"created_at": "2013-01-06T03:02:01Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"f... | 39 | 2014-05-08T00:10:29Z | 2018-02-09T11:56:21Z | 2018-02-09T11:56:20Z | CONTRIBUTOR | null | Using new code in #6719
See: http://www.nyx.com/holidays-and-hours/nyse
and with some guidlines: http://www.investmentcontrarians.com/nyse-2013-stock-market-holidays/
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7070/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7070/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/7071 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7071/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7071/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7071/events | https://github.com/pandas-dev/pandas/issues/7071 | 33,056,985 | MDU6SXNzdWUzMzA1Njk4NQ== | 7,071 | ENH: add regex to pandas.DataFrame.isin function (possible speed up?) | {
"avatar_url": "https://avatars.githubusercontent.com/u/6316732?v=4",
"events_url": "https://api.github.com/users/ccsv/events{/privacy}",
"followers_url": "https://api.github.com/users/ccsv/followers",
"following_url": "https://api.github.com/users/ccsv/following{/other_user}",
"gists_url": "https://api.gith... | [
{
"color": "a10c02",
"default": false,
"description": "Memory or execution speed performance",
"id": 8935311,
"name": "Performance",
"node_id": "MDU6TGFiZWw4OTM1MzEx",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Performance"
},
{
"color": "5319e7",
"default"... | closed | false | null | [] | null | 6 | 2014-05-08T06:10:59Z | 2018-07-05T19:49:21Z | 2014-05-09T13:27:29Z | NONE | null | I think it would be nice if regex were compatible with `pandas.DataFrame.isin`.
Lets say I am inputting the way snakes attack in a dataframe df I would tagging a column `df['Attack method']` using a list `poison` and a list `squeeze` to check if there are matches in `df[Genus]`
```
df['Attack method'] = (df.Genus.is... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7071/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7071/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/7072 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7072/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7072/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7072/events | https://github.com/pandas-dev/pandas/issues/7072 | 33,058,118 | MDU6SXNzdWUzMzA1ODExOA== | 7,072 | truncation issue with pd.read_csv | {
"avatar_url": "https://avatars.githubusercontent.com/u/431865?v=4",
"events_url": "https://api.github.com/users/nnaman/events{/privacy}",
"followers_url": "https://api.github.com/users/nnaman/followers",
"following_url": "https://api.github.com/users/nnaman/following{/other_user}",
"gists_url": "https://api... | [
{
"color": "0e8a16",
"default": true,
"description": null,
"id": 717120670,
"name": "good first issue",
"node_id": "MDU6TGFiZWw3MTcxMjA2NzA=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/good%20first%20issue"
},
{
"color": "cdea3c",
"default": false,
"de... | closed | false | null | [] | {
"closed_at": "2020-01-30T12:18:05Z",
"closed_issues": 2207,
"created_at": "2012-09-13T02:13:00Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm... | 5 | 2014-05-08T06:37:07Z | 2019-12-31T15:04:45Z | 2019-12-31T15:04:45Z | NONE | null | hi, thank you very much for the awesome pandas tool. I would like to report an issue i noticed and seek guidance on remedial steps. When i store a long integer into a file using pd.to_csv, it stores the data fine - but when i read it back using pd.read_csv, it messes with the last 3 digits. When i try to save it bac... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7072/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7072/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/7073 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7073/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7073/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7073/events | https://github.com/pandas-dev/pandas/issues/7073 | 33,058,921 | MDU6SXNzdWUzMzA1ODkyMQ== | 7,073 | Duplicate entry on Multiindex .loc set | {
"avatar_url": "https://avatars.githubusercontent.com/u/1817552?v=4",
"events_url": "https://api.github.com/users/filmackay/events{/privacy}",
"followers_url": "https://api.github.com/users/filmackay/followers",
"following_url": "https://api.github.com/users/filmackay/following{/other_user}",
"gists_url": "h... | [] | closed | false | null | [] | null | 3 | 2014-05-08T06:56:58Z | 2014-07-07T15:49:10Z | 2014-07-07T15:49:10Z | NONE | null | ``` python
data = data.sortlevel()
print(data.loc[("STW AU Equity", "2014-04-29"), "split"])
data.loc[("STW AU Equity", "2014-04-29"), "split"] = 1
print(data.loc[("STW AU Equity", "2014-04-29"), "split"])
# result
1.0
symbol date
STW AU Equity 2014-04-29 1
2014-04-29 1
```
Is ther... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7073/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7073/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/7074 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7074/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7074/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7074/events | https://github.com/pandas-dev/pandas/issues/7074 | 33,061,274 | MDU6SXNzdWUzMzA2MTI3NA== | 7,074 | ExcelWriter does not support BytesIO input | {
"avatar_url": "https://avatars.githubusercontent.com/u/30848?v=4",
"events_url": "https://api.github.com/users/filmor/events{/privacy}",
"followers_url": "https://api.github.com/users/filmor/followers",
"following_url": "https://api.github.com/users/filmor/following{/other_user}",
"gists_url": "https://api.... | [
{
"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_exc... | closed | false | null | [] | {
"closed_at": "2015-10-09T18:34:35Z",
"closed_issues": 593,
"created_at": "2015-03-23T10:47:38Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jr... | 1 | 2014-05-08T07:47:28Z | 2015-06-20T16:20:11Z | 2015-06-20T16:20:11Z | CONTRIBUTOR | null | At least XlsxWriter supports writing to buffers but the `ExcelWriter` constructors try to read the extension of the supplied `path`, so it fails when you initialise it as `ExcelWriter(buf, engine="xlsxwriter")`.
Currently you can hack that into pandas using
```
b = BytesIO()
w = ExcelWriter("data.xlsx", engine="xlsxw... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7074/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7074/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/7075 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7075/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7075/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7075/events | https://github.com/pandas-dev/pandas/pull/7075 | 33,065,144 | MDExOlB1bGxSZXF1ZXN0MTU2MzkxODE= | 7,075 | Fix Xl(sx|wt)Writer always using date_format even if a datetime is supplied. | {
"avatar_url": "https://avatars.githubusercontent.com/u/30848?v=4",
"events_url": "https://api.github.com/users/filmor/events{/privacy}",
"followers_url": "https://api.github.com/users/filmor/followers",
"following_url": "https://api.github.com/users/filmor/following{/other_user}",
"gists_url": "https://api.... | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "ededed",
"default": false,
"description": "__repr__ of pandas objec... | closed | false | null | [] | {
"closed_at": "2014-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": "htt... | 6 | 2014-05-08T08:57:46Z | 2015-01-06T14:44:42Z | 2014-05-08T13:38:37Z | CONTRIBUTOR | null | In the `XlsxWriter` and `XlwtWriter` implementations there is a minor bug resulting in the `datetime_format` being discarded (i.e. https://github.com/pydata/pandas/blob/master/pandas/io/excel.py#L662):
```
if isinstance(cell.val, datetime.datetime):
num_format_str = self.datetime_format
if isinstance(cell.val, dat... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7075/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7075/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7075.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7075",
"merged_at": "2014-05-08T13:38:37Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/7075.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7075"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7076 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7076/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7076/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7076/events | https://github.com/pandas-dev/pandas/pull/7076 | 33,089,659 | MDExOlB1bGxSZXF1ZXN0MTU2NTM0MDY= | 7,076 | FIX sql handling of timedelta64 columns (GH6921) | {
"avatar_url": "https://avatars.githubusercontent.com/u/1020496?v=4",
"events_url": "https://api.github.com/users/jorisvandenbossche/events{/privacy}",
"followers_url": "https://api.github.com/users/jorisvandenbossche/followers",
"following_url": "https://api.github.com/users/jorisvandenbossche/following{/othe... | [
{
"color": "5319e7",
"default": false,
"description": "to_sql, read_sql, read_sql_query",
"id": 47232590,
"name": "IO SQL",
"node_id": "MDU6TGFiZWw0NzIzMjU5MA==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20SQL"
},
{
"color": "5319e7",
"default": false,... | 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": "htt... | 7 | 2014-05-08T14:43:56Z | 2014-09-06T09:40:27Z | 2014-05-11T09:55:01Z | MEMBER | null | Closes #6921
Converting to an int was actually also how it was now with sqlite DBAPI fallback (as timedelta64 is subclass of integer), so this solution is also backwards compatible and consistent between sqlalchemy and fallback mode.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7076/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7076/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7076.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7076",
"merged_at": "2014-05-11T09:55:01Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/7076.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7076"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7077 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7077/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7077/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7077/events | https://github.com/pandas-dev/pandas/pull/7077 | 33,089,796 | MDExOlB1bGxSZXF1ZXN0MTU2NTM0ODI= | 7,077 | SQL: resolve legacy mode + deprecate mysql flavor (GH6900) | {
"avatar_url": "https://avatars.githubusercontent.com/u/1020496?v=4",
"events_url": "https://api.github.com/users/jorisvandenbossche/events{/privacy}",
"followers_url": "https://api.github.com/users/jorisvandenbossche/followers",
"following_url": "https://api.github.com/users/jorisvandenbossche/following{/othe... | [
{
"color": "5319e7",
"default": false,
"description": "to_sql, read_sql, read_sql_query",
"id": 47232590,
"name": "IO SQL",
"node_id": "MDU6TGFiZWw0NzIzMjU5MA==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20SQL"
}
] | closed | false | null | [] | {
"closed_at": "2014-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": "htt... | 3 | 2014-05-08T14:45:34Z | 2016-07-11T12:50:56Z | 2014-05-11T09:54:15Z | MEMBER | null | - removed warning for not using sqlalchemy (as sqlite DBAPI connection is fully supported, no warning needed)
- added deprecation warning for 'mysql' flavor
- removed necessity of providing flavor kwarg (no warning if not provided, assumed to be sqlite3)
- removed `flavor` kwarg from execute and read_sql_query (because... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7077/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7077/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7077.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7077",
"merged_at": "2014-05-11T09:54:15Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/7077.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7077"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7078 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7078/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7078/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7078/events | https://github.com/pandas-dev/pandas/pull/7078 | 33,112,405 | MDExOlB1bGxSZXF1ZXN0MTU2NjY5MTk= | 7,078 | DOC: Remove newline in @verbatim code-block. | {
"avatar_url": "https://avatars.githubusercontent.com/u/326005?v=4",
"events_url": "https://api.github.com/users/chebee7i/events{/privacy}",
"followers_url": "https://api.github.com/users/chebee7i/followers",
"following_url": "https://api.github.com/users/chebee7i/following{/other_user}",
"gists_url": "https... | [
{
"color": "3465A4",
"default": false,
"description": null,
"id": 134699,
"name": "Docs",
"node_id": "MDU6TGFiZWwxMzQ2OTk=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Docs"
}
] | closed | false | null | [] | null | 2 | 2014-05-08T18:55:44Z | 2014-07-16T09:05:01Z | 2014-05-08T19:42:27Z | CONTRIBUTOR | null | This makes the tab-completed code show up in the rendered documentation.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7078/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7078/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7078.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7078",
"merged_at": "2014-05-08T19:42:27Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/7078.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7078"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7079 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7079/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7079/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7079/events | https://github.com/pandas-dev/pandas/issues/7079 | 33,113,636 | MDU6SXNzdWUzMzExMzYzNg== | 7,079 | BUG: None should be a valid colspec? | {
"avatar_url": "https://avatars.githubusercontent.com/u/1882093?v=4",
"events_url": "https://api.github.com/users/AllenDowney/events{/privacy}",
"followers_url": "https://api.github.com/users/AllenDowney/followers",
"following_url": "https://api.github.com/users/AllenDowney/following{/other_user}",
"gists_ur... | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "5319e7",
"default": false,
"description": "read_csv, to_csv",
"... | 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": "htt... | 10 | 2014-05-08T19:08:43Z | 2014-05-09T00:30:13Z | 2014-05-09T00:30:13Z | CONTRIBUTOR | null | In https://github.com/pydata/pandas/blob/master/pandas/io/parsers.py, the **init** method for FixedWidthReaders checks whether the colspecs are valid. Since None is a value slice index, should it be allowed as a colspec?
This would help me because I don't know the width of the last column until I start reading the fi... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7079/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7079/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/7080 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7080/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7080/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7080/events | https://github.com/pandas-dev/pandas/issues/7080 | 33,122,207 | MDU6SXNzdWUzMzEyMjIwNw== | 7,080 | comment on numpy/pandas interaction when calling amin() on a pandas DataFrame | {
"avatar_url": "https://avatars.githubusercontent.com/u/2501598?v=4",
"events_url": "https://api.github.com/users/paciorek/events{/privacy}",
"followers_url": "https://api.github.com/users/paciorek/followers",
"following_url": "https://api.github.com/users/paciorek/following{/other_user}",
"gists_url": "http... | [] | closed | false | null | [] | null | 1 | 2014-05-08T20:46:03Z | 2014-05-08T23:10:20Z | 2014-05-08T23:10:20Z | NONE | null | I noticed the following in tracking down a problem a user of ours encountered. Not sure this is a bug per se and with the caveat that I'm not a Python expert, but I thought I would mention it.
This is occurring with pandas 0.12.0 but given the nature of the issue is probably present in more recent versions.
If a 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/7080/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7080/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/7081 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7081/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7081/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7081/events | https://github.com/pandas-dev/pandas/pull/7081 | 33,124,133 | MDExOlB1bGxSZXF1ZXN0MTU2NzQwMDc= | 7,081 | BUG: read_fwf colspec should treat None like slice | {
"avatar_url": "https://avatars.githubusercontent.com/u/1312546?v=4",
"events_url": "https://api.github.com/users/TomAugspurger/events{/privacy}",
"followers_url": "https://api.github.com/users/TomAugspurger/followers",
"following_url": "https://api.github.com/users/TomAugspurger/following{/other_user}",
"gi... | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "5319e7",
"default": false,
"description": "read_csv, to_csv",
"... | 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": "htt... | 3 | 2014-05-08T21:08:46Z | 2014-07-16T09:05:02Z | 2014-05-09T00:30:13Z | CONTRIBUTOR | null | Closes https://github.com/pydata/pandas/issues/7079
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7081/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7081/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7081.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7081",
"merged_at": "2014-05-09T00:30:13Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/7081.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7081"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7082 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7082/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7082/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7082/events | https://github.com/pandas-dev/pandas/pull/7082 | 33,126,553 | MDExOlB1bGxSZXF1ZXN0MTU2NzU2MDU= | 7,082 | SQL: datetime writing: add tests + issue with pymysql | {
"avatar_url": "https://avatars.githubusercontent.com/u/1020496?v=4",
"events_url": "https://api.github.com/users/jorisvandenbossche/events{/privacy}",
"followers_url": "https://api.github.com/users/jorisvandenbossche/followers",
"following_url": "https://api.github.com/users/jorisvandenbossche/following{/othe... | [
{
"color": "5319e7",
"default": false,
"description": "to_sql, read_sql, read_sql_query",
"id": 47232590,
"name": "IO SQL",
"node_id": "MDU6TGFiZWw0NzIzMjU5MA==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20SQL"
}
] | closed | false | null | [] | {
"closed_at": "2014-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": "htt... | 4 | 2014-05-08T21:40:56Z | 2014-06-17T10:50:08Z | 2014-05-11T10:52:47Z | MEMBER | null | There were apparantly not yet tests for writing datetime data. So added a test case for both query/table.
For MySQL using the pymysql driver, writing a datetime column is not working ... It gives following error:
```
In [65]: import pymysql
In [66]: engine_mysql = sqlalchemy.create_engine('mysql+pymysql://root@localh... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7082/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7082/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7082.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7082",
"merged_at": "2014-05-11T10:52:47Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/7082.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7082"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7083 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7083/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7083/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7083/events | https://github.com/pandas-dev/pandas/issues/7083 | 33,131,288 | MDU6SXNzdWUzMzEzMTI4OA== | 7,083 | how to make parallel_coordinates scale each y axis separately and add y-ticks? | {
"avatar_url": "https://avatars.githubusercontent.com/u/995761?v=4",
"events_url": "https://api.github.com/users/kindlychung/events{/privacy}",
"followers_url": "https://api.github.com/users/kindlychung/followers",
"following_url": "https://api.github.com/users/kindlychung/following{/other_user}",
"gists_url... | [
{
"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,
... | open | false | null | [] | {
"closed_at": null,
"closed_issues": 278,
"created_at": "2013-01-06T03:02:01Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/329591?v=4",
"events_url": "https://api.github.com/users/wesm/events{/privacy}",
"followers_url": "https://api.github.com/users/wesm/followers",
"f... | 8 | 2014-05-08T22:52:22Z | 2021-04-11T04:34:51Z | null | NONE | null | Here is the code:
```
import pandas
import matplotlib.pyplot as plt
from pandas.tools.plotting import parallel_coordinates
import numpy as np
from pandas import DataFrame
mypos = np.random.randint(10, size=(100, 2))
mydata = DataFrame(mypos, columns=['x', 'y'])
myres = np.random.rand(100, 1)
myclass = np.random.randin... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7083/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7083/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/7084 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7084/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7084/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7084/events | https://github.com/pandas-dev/pandas/issues/7084 | 33,137,805 | MDU6SXNzdWUzMzEzNzgwNQ== | 7,084 | Updating a DataFrame by iteratively indexing into a columns | {
"avatar_url": "https://avatars.githubusercontent.com/u/4460844?v=4",
"events_url": "https://api.github.com/users/Jenders74/events{/privacy}",
"followers_url": "https://api.github.com/users/Jenders74/followers",
"following_url": "https://api.github.com/users/Jenders74/following{/other_user}",
"gists_url": "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"
},
{
"color": "0b02e1",
"default": false,
"description": "Related to indexing on s... | 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": "htt... | 7 | 2014-05-09T00:50:09Z | 2014-05-09T18:21:49Z | 2014-05-09T18:21:49Z | NONE | null | I am initializing a DataFrame with 0 and then update it by iteratively indexing into indvidual columns. The behavior of my code has changed with pandas 0.13.0 such that resulting DataFrame out[['A']] remains 0 but series out['A'] has the correct values:
```
>>> print out[['A']]
A
2014-05-07 0
2014-05-08 ... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7084/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7084/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/7085 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7085/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7085/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7085/events | https://github.com/pandas-dev/pandas/pull/7085 | 33,138,968 | MDExOlB1bGxSZXF1ZXN0MTU2ODI4NTQ= | 7,085 | adding a NotImplementedError for simultaneous use of nrows and chunksize... | {
"avatar_url": "https://avatars.githubusercontent.com/u/69774?v=4",
"events_url": "https://api.github.com/users/michaelaye/events{/privacy}",
"followers_url": "https://api.github.com/users/michaelaye/followers",
"following_url": "https://api.github.com/users/michaelaye/following{/other_user}",
"gists_url": "... | [
{
"color": "ffa0ff",
"default": false,
"description": "Incorrect or improved errors from pandas",
"id": 42670965,
"name": "Error Reporting",
"node_id": "MDU6TGFiZWw0MjY3MDk2NQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Error%20Reporting"
},
{
"color": "5319... | closed | false | null | [] | {
"closed_at": "2014-07-11T00:02:53Z",
"closed_issues": 306,
"created_at": "2014-04-27T23:40:28Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jr... | 37 | 2014-05-09T01:24:13Z | 2014-06-24T13:16:58Z | 2014-06-24T13:16:52Z | CONTRIBUTOR | null | ..., as the user intention most likely is to get a TextFileReader, when using the chunksize option.
Fixes #6774
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7085/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7085/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7085.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7085",
"merged_at": "2014-06-24T13:16:52Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/7085.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7085"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7086 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7086/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7086/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7086/events | https://github.com/pandas-dev/pandas/pull/7086 | 33,170,272 | MDExOlB1bGxSZXF1ZXN0MTU3MDAxNDg= | 7,086 | Tidy representation when truncating dfs | {
"avatar_url": "https://avatars.githubusercontent.com/u/832380?v=4",
"events_url": "https://api.github.com/users/bjonen/events{/privacy}",
"followers_url": "https://api.github.com/users/bjonen/followers",
"following_url": "https://api.github.com/users/bjonen/following{/other_user}",
"gists_url": "https://api... | [
{
"color": "4E9A06",
"default": false,
"description": null,
"id": 76812,
"name": "Enhancement",
"node_id": "MDU6TGFiZWw3NjgxMg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Enhancement"
},
{
"color": "ededed",
"default": false,
"description": "__repr__... | 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": "htt... | 59 | 2014-05-09T13:06:30Z | 2014-06-17T06:37:31Z | 2014-05-16T19:44:16Z | CONTRIBUTOR | null | This PR closes #5603
Dataframes are now truncated centrally (similar to pd.Series).
Before:

After:
 | {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jreback/followers",
"following_url": "https://api.github.com/users/jreback/following{/other_user}",
"gists_url": "https://... | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "0b02e1",
"default": false,
"description": "Related to indexing on s... | closed | false | null | [] | {
"closed_at": "2014-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": "htt... | 0 | 2014-05-09T13:25:30Z | 2014-06-26T19:40:48Z | 2014-05-09T18:21:49Z | CONTRIBUTOR | null | closes #7084
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7087/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7087/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7087.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7087",
"merged_at": "2014-05-09T18:21:49Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/7087.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7087"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7088 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7088/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7088/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7088/events | https://github.com/pandas-dev/pandas/pull/7088 | 33,195,514 | MDExOlB1bGxSZXF1ZXN0MTU3MTQ1MDk= | 7,088 | ENH/API: accept list-like percentiles in describe (WIP) | {
"avatar_url": "https://avatars.githubusercontent.com/u/1312546?v=4",
"events_url": "https://api.github.com/users/TomAugspurger/events{/privacy}",
"followers_url": "https://api.github.com/users/TomAugspurger/followers",
"following_url": "https://api.github.com/users/TomAugspurger/following{/other_user}",
"gi... | [
{
"color": "AD7FA8",
"default": false,
"description": null,
"id": 35818298,
"name": "API Design",
"node_id": "MDU6TGFiZWwzNTgxODI5OA==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/API%20Design"
},
{
"color": "006b75",
"default": false,
"description": "A... | 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": "htt... | 17 | 2014-05-09T18:17:16Z | 2014-06-17T22:26:35Z | 2014-05-14T00:45:22Z | CONTRIBUTOR | null | Closes https://github.com/pydata/pandas/issues/4196
This is for frames. I'm going to refactor this into generic since to cover series / frames.
A couple questions:
- API wise, I added a new kwarg `percentiles`. For backwards compat, we keep the `percentile_width` kwarg. I changed the default `percentile_width` from 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/7088/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7088/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7088.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7088",
"merged_at": "2014-05-14T00:45:22Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/7088.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7088"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7089 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7089/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7089/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7089/events | https://github.com/pandas-dev/pandas/pull/7089 | 33,199,719 | MDExOlB1bGxSZXF1ZXN0MTU3MTY5MzM= | 7,089 | BUG: use size attribute (not method call) | {
"avatar_url": "https://avatars.githubusercontent.com/u/417981?v=4",
"events_url": "https://api.github.com/users/cpcloud/events{/privacy}",
"followers_url": "https://api.github.com/users/cpcloud/followers",
"following_url": "https://api.github.com/users/cpcloud/following{/other_user}",
"gists_url": "https://... | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "729FCF",
"default": false,
"description": null,
"id": 233160,
... | closed | false | {
"avatar_url": "https://avatars.githubusercontent.com/u/417981?v=4",
"events_url": "https://api.github.com/users/cpcloud/events{/privacy}",
"followers_url": "https://api.github.com/users/cpcloud/followers",
"following_url": "https://api.github.com/users/cpcloud/following{/other_user}",
"gists_url": "https://... | [
{
"avatar_url": "https://avatars.githubusercontent.com/u/417981?v=4",
"events_url": "https://api.github.com/users/cpcloud/events{/privacy}",
"followers_url": "https://api.github.com/users/cpcloud/followers",
"following_url": "https://api.github.com/users/cpcloud/following{/other_user}",
"gists_u... | {
"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": "htt... | 9 | 2014-05-09T19:08:36Z | 2014-07-16T09:05:23Z | 2014-05-10T15:23:31Z | MEMBER | null | xref: #7055
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7089/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7089/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7089.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7089",
"merged_at": "2014-05-10T15:23:31Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/7089.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7089"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7090 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7090/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7090/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7090/events | https://github.com/pandas-dev/pandas/pull/7090 | 33,231,411 | MDExOlB1bGxSZXF1ZXN0MTU3MzEzNTk= | 7,090 | ENH/CLN: Add factorize to IndexOpsMixin | {
"avatar_url": "https://avatars.githubusercontent.com/u/1696302?v=4",
"events_url": "https://api.github.com/users/sinhrks/events{/privacy}",
"followers_url": "https://api.github.com/users/sinhrks/followers",
"following_url": "https://api.github.com/users/sinhrks/following{/other_user}",
"gists_url": "https:/... | [
{
"color": "e102d8",
"default": false,
"description": "Unexpected or buggy dtype conversions",
"id": 31404521,
"name": "Dtype Conversions",
"node_id": "MDU6TGFiZWwzMTQwNDUyMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Dtype%20Conversions"
},
{
"color": "e11... | 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": "htt... | 4 | 2014-05-10T07:10:27Z | 2014-06-17T15:25:56Z | 2014-05-10T14:12:03Z | MEMBER | null | As pointed in #7041, I prepared a PR to add `factorize` to `IndexOpsMixin`.
As a side benefit, `Multiindex.from_arrays` can preserve original `DatetimeIndex.freq` and `tz`. (Related to #3950 and #6606. These issues are not solved yet because these use different methods to create `MultiIndex`).
I would like to confi... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7090/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7090/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7090.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7090",
"merged_at": "2014-05-10T14:12:03Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/7090.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7090"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7091 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7091/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7091/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7091/events | https://github.com/pandas-dev/pandas/issues/7091 | 33,238,814 | MDU6SXNzdWUzMzIzODgxNA== | 7,091 | CI: create/drop pandas_nosetest db on class instatiation | {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jreback/followers",
"following_url": "https://api.github.com/users/jreback/following{/other_user}",
"gists_url": "https://... | [
{
"color": "5319e7",
"default": false,
"description": "to_sql, read_sql, read_sql_query",
"id": 47232590,
"name": "IO SQL",
"node_id": "MDU6TGFiZWw0NzIzMjU5MA==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/IO%20SQL"
},
{
"color": "a2bca7",
"default": false,... | closed | false | null | [] | {
"closed_at": null,
"closed_issues": 2361,
"created_at": "2015-02-26T19:29:05Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/1020496?v=4",
"events_url": "https://api.github.com/users/jorisvandenbossche/events{/privacy}",
"followers_url": "https://api.github.com/users/jorisva... | 5 | 2014-05-10T14:26:09Z | 2018-07-06T21:58:15Z | 2018-07-06T21:57:39Z | CONTRIBUTOR | null | So I think that the SQL test classes should inherit from:
https://github.com/pydata/pandas/blob/master/pandas/util/testing.py#L65
then you can add
```
class BaseSQLTestCase(tm.TestCase):
@classmethod
def setUpClass(cls):
super(BaseSQLTestCase, cls).setUpClass()
# create the ``pandas_nosetes... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7091/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7091/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/7092 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7092/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7092/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7092/events | https://github.com/pandas-dev/pandas/pull/7092 | 33,240,271 | MDExOlB1bGxSZXF1ZXN0MTU3MzQzNDQ= | 7,092 | BUG: tz info lost by set_index and reindex | {
"avatar_url": "https://avatars.githubusercontent.com/u/1696302?v=4",
"events_url": "https://api.github.com/users/sinhrks/events{/privacy}",
"followers_url": "https://api.github.com/users/sinhrks/followers",
"following_url": "https://api.github.com/users/sinhrks/following{/other_user}",
"gists_url": "https:/... | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "e102d8",
"default": false,
"description": "Unexpected or buggy dtyp... | closed | false | null | [] | {
"closed_at": "2014-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": "htt... | 2 | 2014-05-10T15:28:00Z | 2014-06-13T19:01:07Z | 2014-05-12T13:34:58Z | MEMBER | null | Closes #6631. Closes #5878. Regarding #3950, original problem can be fixed by this, but `groupby` problem isn't.
Also, this includes the fix for `MultiIndex.get_level_values` doesn't retain `tz` and `freq`, as the method is used in `set_index`.
```
# current master
>>> import pandas as pd
>>> didx = pd.DatetimeIndex(... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7092/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7092/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7092.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7092",
"merged_at": "2014-05-12T13:34:58Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/7092.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7092"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7093 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7093/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7093/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7093/events | https://github.com/pandas-dev/pandas/pull/7093 | 33,243,147 | MDExOlB1bGxSZXF1ZXN0MTU3MzUzMzI= | 7,093 | BUG: Let DataFrame.quantile() handle datetime | {
"avatar_url": "https://avatars.githubusercontent.com/u/1312546?v=4",
"events_url": "https://api.github.com/users/TomAugspurger/events{/privacy}",
"followers_url": "https://api.github.com/users/TomAugspurger/followers",
"following_url": "https://api.github.com/users/TomAugspurger/following{/other_user}",
"gi... | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "AFEEEE",
"default": false,
"description": null,
"id": 211840,
... | closed | false | null | [] | {
"closed_at": "2014-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": "htt... | 4 | 2014-05-10T17:20:15Z | 2014-07-16T09:05:32Z | 2014-05-10T21:51:19Z | CONTRIBUTOR | null | Closes https://github.com/pydata/pandas/issues/6965
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7093/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7093/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7093.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7093",
"merged_at": "2014-05-10T21:51:19Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/7093.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7093"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7094 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7094/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7094/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7094/events | https://github.com/pandas-dev/pandas/pull/7094 | 33,246,610 | MDExOlB1bGxSZXF1ZXN0MTU3MzYzODU= | 7,094 | REGR: Regression in groupby.nth() for out-of-bounds indexers (GH6621) | {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jreback/followers",
"following_url": "https://api.github.com/users/jreback/following{/other_user}",
"gists_url": "https://... | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "729FCF",
"default": false,
"description": null,
"id": 233160,
... | 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": "htt... | 0 | 2014-05-10T19:31:34Z | 2014-07-16T09:05:33Z | 2014-05-10T19:49:51Z | CONTRIBUTOR | null | closes #6621
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7094/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7094/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7094.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7094",
"merged_at": "2014-05-10T19:49:51Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/7094.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7094"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7095 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7095/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7095/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7095/events | https://github.com/pandas-dev/pandas/issues/7095 | 33,249,430 | MDU6SXNzdWUzMzI0OTQzMA== | 7,095 | BUG: fillna with invalid value for a block type | {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jreback/followers",
"following_url": "https://api.github.com/users/jreback/following{/other_user}",
"gists_url": "https://... | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "d7e102",
"default": false,
"description": "np.nan, pd.NaT, pd.NA, d... | closed | false | null | [] | {
"closed_at": "2015-10-09T18:34:35Z",
"closed_issues": 593,
"created_at": "2015-03-23T10:47:38Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jr... | 1 | 2014-05-10T21:28:22Z | 2015-09-20T18:52:13Z | 2015-09-20T18:52:13Z | CONTRIBUTOR | null | from SO: https://groups.google.com/forum/#!topic/pydata/C8VoV4do7io
need to catch errors on the putmask and skip that block (returning it unchanged)
```
In [9]: df = DataFrame(dict(A = np.random.randn(3),B=date_range('20130101',periods=3),C=['foo','bar','bah'],D=['foo2','bar2','bah2']),index=date_range('20130110',per... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7095/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7095/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/7096 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7096/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7096/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7096/events | https://github.com/pandas-dev/pandas/pull/7096 | 33,251,558 | MDExOlB1bGxSZXF1ZXN0MTU3MzgyNzE= | 7,096 | API: Return axes from boxplot | {
"avatar_url": "https://avatars.githubusercontent.com/u/1312546?v=4",
"events_url": "https://api.github.com/users/TomAugspurger/events{/privacy}",
"followers_url": "https://api.github.com/users/TomAugspurger/followers",
"following_url": "https://api.github.com/users/TomAugspurger/following{/other_user}",
"gi... | [
{
"color": "8AE234",
"default": false,
"description": null,
"id": 2413328,
"name": "Visualization",
"node_id": "MDU6TGFiZWwyNDEzMzI4",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Visualization"
},
{
"color": "AD7FA8",
"default": false,
"description": nul... | 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": "htt... | 42 | 2014-05-10T23:44:48Z | 2015-08-23T13:18:51Z | 2014-06-05T01:13:23Z | CONTRIBUTOR | null | Closes: https://github.com/pydata/pandas/issues/4264
Will go in place of https://github.com/pydata/pandas/pull/4472
In https://github.com/pydata/pandas/issues/985 we intentionally decided to have boxplot return a dict with the Lines of the boxplot.
I've added a kwarg `return_dict`. By default, `return_dict` is 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/7096/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7096/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7096.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7096",
"merged_at": null,
"patch_url": "https://github.com/pandas-dev/pandas/pull/7096.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7096"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7097 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7097/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7097/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7097/events | https://github.com/pandas-dev/pandas/issues/7097 | 33,251,852 | MDU6SXNzdWUzMzI1MTg1Mg== | 7,097 | df.to_stata doesn't handle boolean columns | {
"avatar_url": "https://avatars.githubusercontent.com/u/368269?v=4",
"events_url": "https://api.github.com/users/puterleat/events{/privacy}",
"followers_url": "https://api.github.com/users/puterleat/followers",
"following_url": "https://api.github.com/users/puterleat/following{/other_user}",
"gists_url": "ht... | [
{
"color": "4E9A06",
"default": false,
"description": null,
"id": 76812,
"name": "Enhancement",
"node_id": "MDU6TGFiZWw3NjgxMg==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Enhancement"
},
{
"color": "e102d8",
"default": false,
"description": "Unexpect... | closed | false | null | [] | {
"closed_at": "2014-10-23T11:43:09Z",
"closed_issues": 530,
"created_at": "2014-07-06T18:44:54Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/953992?v=4",
"events_url": "https://api.github.com/users/jreback/events{/privacy}",
"followers_url": "https://api.github.com/users/jr... | 7 | 2014-05-11T00:04:39Z | 2014-07-16T00:35:09Z | 2014-07-16T00:35:09Z | NONE | null | I'd expected this to generate a row of 1's and 0's in the dta file...
```
DataFrame([True, False]).to_stata('test.dta')
```
But it generates the following error:
sbox/lib/python2.7/site-packages/pandas/io/stata.pyc in _dtype_to_stata_type(dtype)
884 else: # pragma : no cover
885 raise ValueError... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7097/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7097/timeline | null | null | null |
https://api.github.com/repos/pandas-dev/pandas/issues/7098 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7098/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7098/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7098/events | https://github.com/pandas-dev/pandas/pull/7098 | 33,262,350 | MDExOlB1bGxSZXF1ZXN0MTU3NDI5OTQ= | 7,098 | BUG: DatetimeIndex with freq raises ValueError when passed value is short | {
"avatar_url": "https://avatars.githubusercontent.com/u/1696302?v=4",
"events_url": "https://api.github.com/users/sinhrks/events{/privacy}",
"followers_url": "https://api.github.com/users/sinhrks/followers",
"following_url": "https://api.github.com/users/sinhrks/following{/other_user}",
"gists_url": "https:/... | [
{
"color": "AFEEEE",
"default": false,
"description": null,
"id": 211840,
"name": "Timeseries",
"node_id": "MDU6TGFiZWwyMTE4NDA=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Timeseries"
},
{
"color": "ffa0ff",
"default": false,
"description": "Incorrect... | 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": "htt... | 2 | 2014-05-11T14:01:33Z | 2014-06-20T17:01:29Z | 2014-05-14T13:08:10Z | MEMBER | null | When `DatetimeIndex` is created by passing `freq` and `check_integrity=True`, passed `freq` and `inferred_freq` must be identical. But this comparison can fail if length of passed data doesn't have enough length to infer freq.
Added additional logic to determine whether passed values are on the passed `freq`.
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7098/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7098/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7098.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7098",
"merged_at": "2014-05-14T13:08:10Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/7098.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7098"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7099 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7099/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7099/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7099/events | https://github.com/pandas-dev/pandas/pull/7099 | 33,263,436 | MDExOlB1bGxSZXF1ZXN0MTU3NDM0Mjc= | 7,099 | BUG: GroupBy doesn't preserve timezone | {
"avatar_url": "https://avatars.githubusercontent.com/u/1696302?v=4",
"events_url": "https://api.github.com/users/sinhrks/events{/privacy}",
"followers_url": "https://api.github.com/users/sinhrks/followers",
"following_url": "https://api.github.com/users/sinhrks/following{/other_user}",
"gists_url": "https:/... | [
{
"color": "e10c02",
"default": false,
"description": null,
"id": 76811,
"name": "Bug",
"node_id": "MDU6TGFiZWw3NjgxMQ==",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Bug"
},
{
"color": "729FCF",
"default": false,
"description": null,
"id": 233160,
... | 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": "htt... | 2 | 2014-05-11T15:03:14Z | 2014-06-13T19:00:49Z | 2014-05-13T12:13:26Z | MEMBER | null | Closes #3950. This is a fix for `groupby` issue.
(#7092 is for original report)
| {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7099/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7099/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7099.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7099",
"merged_at": "2014-05-13T12:13:25Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/7099.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7099"
} |
https://api.github.com/repos/pandas-dev/pandas/issues/7100 | https://api.github.com/repos/pandas-dev/pandas | https://api.github.com/repos/pandas-dev/pandas/issues/7100/labels{/name} | https://api.github.com/repos/pandas-dev/pandas/issues/7100/comments | https://api.github.com/repos/pandas-dev/pandas/issues/7100/events | https://github.com/pandas-dev/pandas/pull/7100 | 33,265,727 | MDExOlB1bGxSZXF1ZXN0MTU3NDQzMTI= | 7,100 | TST: sql add more tests (NaN handling, ..) | {
"avatar_url": "https://avatars.githubusercontent.com/u/1020496?v=4",
"events_url": "https://api.github.com/users/jorisvandenbossche/events{/privacy}",
"followers_url": "https://api.github.com/users/jorisvandenbossche/followers",
"following_url": "https://api.github.com/users/jorisvandenbossche/following{/othe... | [
{
"color": "C4A000",
"default": false,
"description": "pandas testing functions or related to the test suite",
"id": 127685,
"name": "Testing",
"node_id": "MDU6TGFiZWwxMjc2ODU=",
"url": "https://api.github.com/repos/pandas-dev/pandas/labels/Testing"
},
{
"color": "5319e7",
"d... | 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": "htt... | 8 | 2014-05-11T17:03:28Z | 2014-07-08T03:52:05Z | 2014-05-13T10:29:47Z | MEMBER | null | This PR just adds some tests, not fixes to get them all running.
Summary:
- NaN writing not working for MySQL (or pymysql), but does work for sqlite and postgresql
- NaN reading does work for float columns. But not for string columns (converted to None or u'NaN') or for sqlite full float columns
- NaT in datetime colu... | {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/pandas-dev/pandas/issues/7100/reactions"
} | https://api.github.com/repos/pandas-dev/pandas/issues/7100/timeline | null | 0 | {
"diff_url": "https://github.com/pandas-dev/pandas/pull/7100.diff",
"html_url": "https://github.com/pandas-dev/pandas/pull/7100",
"merged_at": "2014-05-13T10:29:47Z",
"patch_url": "https://github.com/pandas-dev/pandas/pull/7100.patch",
"url": "https://api.github.com/repos/pandas-dev/pandas/pulls/7100"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.