issues
4 rows where state = "closed", type = "issue" and user = 6815953 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: comments, 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
528059041 | MDU6SXNzdWU1MjgwNTkwNDE= | 3569 | Drawing only one contour in FacetGrid | kuchaale 6815953 | closed | 0 | 1 | 2019-11-25T12:37:02Z | 2020-04-11T16:11:52Z | 2020-04-11T16:11:52Z | NONE | MCVE Code Sample```python import numpy as np import matplotlib.pyplot as plt import xarray as xr x, y = np.meshgrid(np.arange(12), np.arange(12)) z = xr.DataArray(np.sqrt(x2 + y2)) z2 = xr.DataArray(np.sqrt(x2 + y2)+1) ds = xr.concat([z,z2], dim = 'time') ds['time'] = [0,1] f, ax = plt.subplots() ds[0].plot.contour(ax = ax, levels=[4], colors=['k']) f, ax = plt.subplots() ds[1].plot.contour(ax = ax, levels=[4], colors=['k']) ds.plot.contour(col = 'time', levels=[4], colors=['k']) ``` OutputExpected OutputProblem DescriptionWhile drawing only one contour was fixed some time ago (#866), single contour plots in FacetGrid do not work for me. Output of
|
{ "url": "https://api.github.com/repos/pydata/xarray/issues/3569/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
completed | xarray 13221727 | issue | ||||||
275421319 | MDU6SXNzdWUyNzU0MjEzMTk= | 1730 | 404 HTTP Status through PydapDataStore connection to Earth System Grid Federation | kuchaale 6815953 | closed | 0 | 3 | 2017-11-20T16:42:30Z | 2019-02-04T04:25:01Z | 2019-02-04T04:25:01Z | NONE | Code Sample, a copy-pastable example if possibleSee my code here Problem descriptionI receive 404 HTTP Status through Expected Output
Output of
|
{ "url": "https://api.github.com/repos/pydata/xarray/issues/1730/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
completed | xarray 13221727 | issue | ||||||
281020451 | MDU6SXNzdWUyODEwMjA0NTE= | 1775 | AttributeError: 'PydapArrayWrapper' object has no attribute 'shape' | kuchaale 6815953 | closed | 0 | 0.10.3 3008859 | 3 | 2017-12-11T13:41:20Z | 2018-01-09T01:48:13Z | 2018-01-09T01:48:13Z | NONE | Code Sample, a copy-pastable example if possibleSee my code here Problem descriptionI received Expected Output
Output of
|
{ "url": "https://api.github.com/repos/pydata/xarray/issues/1775/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
completed | xarray 13221727 | issue | |||||
255701612 | MDU6SXNzdWUyNTU3MDE2MTI= | 1555 | TypeError: DataArray.name or Dataset key must be either a string or None for serialization to netCDF files | kuchaale 6815953 | closed | 0 | 2 | 2017-09-06T18:34:04Z | 2017-09-07T07:38:46Z | 2017-09-07T07:38:46Z | NONE | Consider the following gist where I receive the following error: I think that I run into a bug when |
{ "url": "https://api.github.com/repos/pydata/xarray/issues/1555/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]);