issues
2 rows where comments = 6, type = "issue" and user = 500246 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 232623945 | MDU6SXNzdWUyMzI2MjM5NDU= | 1435 | xarray.plot.imshow with datetime coordinates results in blank plot | gerritholl 500246 | open | 0 | 6 | 2017-05-31T16:31:30Z | 2022-05-03T01:56:37Z | CONTRIBUTOR | ``` In [72]: da = xarray.DataArray(arange(5*6).reshape(5,6), dims=("A", "B"), coords={"A": arange(5), "B": pd.date_range("2000-01-01", periods=6)}) In [73]: da.plot.imshow() Out[73]: <matplotlib.image.AxesImage at 0x7f699cf1acf8> ``` The resulting plot has the correct axes and colorbar, but the contents of the plot itself are blank. Upon moving the cursor over the plot, there is an exception in
|
{
"url": "https://api.github.com/repos/pydata/xarray/issues/1435/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
xarray 13221727 | issue | ||||||||
| 212177054 | MDU6SXNzdWUyMTIxNzcwNTQ= | 1297 | Encoding lost upon concatenation | gerritholl 500246 | closed | 0 | 6 | 2017-03-06T16:33:40Z | 2020-04-05T19:12:41Z | 2019-02-06T22:51:19Z | CONTRIBUTOR | When using ``` In [64]: da = xarray.DataArray([1, 2, 3, 2, 1]) In [65]: da.attrs.update(foo="bar") In [66]: da.encoding.update(complevel=5) In [67]: da2 = xarray.concat((da, da), dim="new") In [68]: print(da2.attrs) OrderedDict([('foo', 'bar')]) In [69]: print(da2.encoding) {} ``` |
{
"url": "https://api.github.com/repos/pydata/xarray/issues/1297/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]);