issues
3 rows where user = 10374429 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: comments, closed_at, created_at (date), updated_at (date), closed_at (date)
| id | node_id | number | title | user | state | locked | assignee | milestone | comments | created_at | updated_at ▲ | closed_at | author_association | active_lock_reason | draft | pull_request | body | reactions | performed_via_github_app | state_reason | repo | type |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 371219949 | MDExOlB1bGxSZXF1ZXN0MjIzNzE2MzQ3 | 2491 | Dataset.copy docstring matches behavior | georgegeddes 10374429 | closed | 0 | 3 | 2018-10-17T18:54:21Z | 2018-10-23T05:59:53Z | 2018-10-23T05:59:46Z | CONTRIBUTOR | 0 | pydata/xarray/pulls/2491 |
This makes the docstring of Dataset.copy match the actual behavior. However, I noticed that DataArray.copy has the opposite behavior for the deep keyword. Is this intentional, or are they supposed to behave the same way? |
{
"url": "https://api.github.com/repos/pydata/xarray/issues/2491/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
xarray 13221727 | pull | |||||
| 371176463 | MDU6SXNzdWUzNzExNzY0NjM= | 2490 | Dataset.copy docstring has a typo | georgegeddes 10374429 | closed | 0 | 1 | 2018-10-17T17:00:37Z | 2018-10-23T05:59:46Z | 2018-10-23T05:59:46Z | CONTRIBUTOR | The docstring of Dataset.copy states that the default of deep is True, but in the code it is False. |
{
"url": "https://api.github.com/repos/pydata/xarray/issues/2490/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
completed | xarray 13221727 | issue | ||||||
| 353463740 | MDU6SXNzdWUzNTM0NjM3NDA= | 2379 | Passing origin keyword to DataArray.plot.imshow does not behave as expected | georgegeddes 10374429 | closed | 0 | 1 | 2018-08-23T16:41:27Z | 2018-09-06T03:50:37Z | 2018-09-06T03:50:37Z | CONTRIBUTOR | Code Sample```python from numpy import arange from xarray import DataArray import matplotlib.pyplot as plt a = DataArray(arange(100).reshape((10,10)), dims=('x', 'y')) print('a[0, 0] ==', a.loc[0, 0]) for origin in ('upper', 'lower'): a.plot.imshow(size=2, origin=origin) plt.title('origin=%s' % origin) plt.show() ``` Problem descriptionThe 'upper' case should plot the [0,0] block in the top left, and 'lower' should plot it in the bottom left, but the actual behavior is opposite. Passing origin='lower' also fails to flip the y-axis labels.
Output of
|
{
"url": "https://api.github.com/repos/pydata/xarray/issues/2379/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
completed | xarray 13221727 | issue |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE [issues] (
[id] INTEGER PRIMARY KEY,
[node_id] TEXT,
[number] INTEGER,
[title] TEXT,
[user] INTEGER REFERENCES [users]([id]),
[state] TEXT,
[locked] INTEGER,
[assignee] INTEGER REFERENCES [users]([id]),
[milestone] INTEGER REFERENCES [milestones]([id]),
[comments] INTEGER,
[created_at] TEXT,
[updated_at] TEXT,
[closed_at] TEXT,
[author_association] TEXT,
[active_lock_reason] TEXT,
[draft] INTEGER,
[pull_request] TEXT,
[body] TEXT,
[reactions] TEXT,
[performed_via_github_app] TEXT,
[state_reason] TEXT,
[repo] INTEGER REFERENCES [repos]([id]),
[type] TEXT
);
CREATE INDEX [idx_issues_repo]
ON [issues] ([repo]);
CREATE INDEX [idx_issues_milestone]
ON [issues] ([milestone]);
CREATE INDEX [idx_issues_assignee]
ON [issues] ([assignee]);
CREATE INDEX [idx_issues_user]
ON [issues] ([user]);

