issues
3 rows where user = 277579 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: comments, updated_at, 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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
359679690 | MDU6SXNzdWUzNTk2Nzk2OTA= | 2414 | Indexing not properly working with object dtype element ? | davidtrem 277579 | closed | 0 | 4 | 2018-09-12T22:47:09Z | 2021-04-05T14:54:37Z | 2021-04-05T14:54:37Z | CONTRIBUTOR | Small "working" demo of the observed issue:```python import xarray as xr import numpy as np er = xr.DataArray(np.array((np.arange(3), np.arange(6)))) # dtype=object because two different vector size print(er.data[0]) # Does work print(er[0]) # Does not work (ValueError) I'm a bit puzzled...``` |
{ "url": "https://api.github.com/repos/pydata/xarray/issues/2414/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
completed | xarray 13221727 | issue | ||||||
359935048 | MDExOlB1bGxSZXF1ZXN0MjE1MzEzMjQ1 | 2415 | add test for 1D object array indexing | davidtrem 277579 | closed | 0 | 4 | 2018-09-13T14:58:42Z | 2021-04-05T14:54:37Z | 2021-04-05T14:54:37Z | CONTRIBUTOR | 0 | pydata/xarray/pulls/2415 | Test for issue #2414 closes #2414 |
{ "url": "https://api.github.com/repos/pydata/xarray/issues/2415/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
xarray 13221727 | pull | |||||
103703011 | MDU6SXNzdWUxMDM3MDMwMTE= | 553 | operation on complex number data | davidtrem 277579 | closed | 0 | 10 | 2015-08-28T11:38:46Z | 2018-06-05T06:32:26Z | 2015-09-01T20:28:50Z | CONTRIBUTOR | Hello, Would it be possible to add complex function operation on xray.DataArray ? Function like np.sin, np.abs works properly on xray.DataArray containing complex numbers and returns a DataArray (as expected). However, np.real, np.imag, np.angle operation return an numpy.ndarray array instead of DataArray... |
{ "url": "https://api.github.com/repos/pydata/xarray/issues/553/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]);