issues
4 rows where milestone = 2444330, repo = 13221727 and type = "issue" sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: user, comments, updated_at, closed_at, author_association, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 219043002 | MDU6SXNzdWUyMTkwNDMwMDI= | 1350 | where(..., drop=True) error | pwolfram 4295853 | closed | 0 | v0.9.3 2444330 | 4 | 2017-04-03T19:53:33Z | 2017-04-14T03:50:53Z | 2017-04-14T03:50:53Z | CONTRIBUTOR | These results appear to be incorrect unless I'm missing something: ```python In [1]: import xarray as xr In [2]: import numpy as np In [3]: array = xr.DataArray(np.zeros((1,2,3)), dims=['time','x','y'], coords={'x':np.arange(2)}) In [4]: array[0,1,1] = 1 In [5]: array.where(array !=0, drop=True) Out[5]: <xarray.DataArray (time: 1, x: 1, y: 1)> array([[[ 0.]]]) Coordinates: * x (x) int64 1 Dimensions without coordinates: time, y In [5]: array.where(array !=0, drop=True).values Out[5]: array([[[ 0.]]]) In [7]: array.values[array.values !=0] Out[7]: array([ 1.]) ``` |
{
"url": "https://api.github.com/repos/pydata/xarray/issues/1350/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
completed | xarray 13221727 | issue | |||||
| 216535655 | MDU6SXNzdWUyMTY1MzU2NTU= | 1320 | BUG: to_netcdf no longer works with file objects when engine='scipy' | shoyer 1217238 | closed | 0 | shoyer 1217238 | v0.9.3 2444330 | 0 | 2017-03-23T18:53:18Z | 2017-04-13T05:32:59Z | 2017-04-13T05:32:59Z | MEMBER | This worked in xarray v0.8.2, but no longer works in v0.9.1: The traceback looks like:
The problem is that For now, it's easy enough to work around this by creating a byte-string with |
{
"url": "https://api.github.com/repos/pydata/xarray/issues/1320/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
completed | xarray 13221727 | issue | ||||
| 216537677 | MDU6SXNzdWUyMTY1Mzc2Nzc= | 1321 | BUG: to_netcdf(engine='scipy') raises an error when it shouldn't | shoyer 1217238 | closed | 0 | shoyer 1217238 | v0.9.3 2444330 | 0 | 2017-03-23T19:00:18Z | 2017-04-13T05:32:59Z | 2017-04-13T05:32:59Z | MEMBER | With xarray v0.9.1, I get the confusing error message:
This check should be |
{
"url": "https://api.github.com/repos/pydata/xarray/issues/1321/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
completed | xarray 13221727 | issue | ||||
| 220241754 | MDU6SXNzdWUyMjAyNDE3NTQ= | 1359 | Bug: open_dataarray does not pass properly its parameters to open_dataset | NotSqrt 1997005 | closed | 0 | v0.9.3 2444330 | 1 | 2017-04-07T15:06:50Z | 2017-04-12T22:28:35Z | 2017-04-12T22:28:35Z | CONTRIBUTOR | Hi, There's now a Thanks ! |
{
"url": "https://api.github.com/repos/pydata/xarray/issues/1359/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]);