issue_comments
2 rows where issue = 1029088776 and user = 4160723 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
issue 1
- Need a way to speciefy the names of coordinates from the indices which droped by DataArray.reset_index. · 2 ✖
id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
---|---|---|---|---|---|---|---|---|---|---|---|
1260497579 | https://github.com/pydata/xarray/issues/5874#issuecomment-1260497579 | https://api.github.com/repos/pydata/xarray/issues/5874 | IC_kwDOAMm_X85LIaqr | benbovy 4160723 | 2022-09-28T07:26:55Z | 2022-09-28T07:26:55Z | MEMBER | Closed in #6971. |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Need a way to speciefy the names of coordinates from the indices which droped by DataArray.reset_index. 1029088776 | |
1259346181 | https://github.com/pydata/xarray/issues/5874#issuecomment-1259346181 | https://api.github.com/repos/pydata/xarray/issues/5874 | IC_kwDOAMm_X85LEBkF | benbovy 4160723 | 2022-09-27T11:11:07Z | 2022-09-27T11:11:07Z | MEMBER |
This will be enabled by #6971, hopefully merged before the next release: ```python arr = arr.set_xindex("x_str").set_xindex("x_num") arr <xarray.DataArray (t: 4, x: 4)>array([[ 0, 1, 2, 3],[ 4, 5, 6, 7],[ 8, 9, 10, 11],[12, 13, 14, 15]])Coordinates:* x_str (x) <U1 'a' 'b' 'c' 'd'* x_num (x) int64 1 2 3 4Dimensions without coordinates: t, xarr.sel(x_str="a") <xarray.DataArray (t: 4)>array([ 0, 4, 8, 12])Coordinates:x_str <U1 'a'x_num int64 1Dimensions without coordinates: tarr.sel(x_num=1) <xarray.DataArray (t: 4)>array([ 0, 4, 8, 12])Coordinates:x_str <U1 'a'x_num int64 1Dimensions without coordinates: t``` |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Need a way to speciefy the names of coordinates from the indices which droped by DataArray.reset_index. 1029088776 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE [issue_comments] ( [html_url] TEXT, [issue_url] TEXT, [id] INTEGER PRIMARY KEY, [node_id] TEXT, [user] INTEGER REFERENCES [users]([id]), [created_at] TEXT, [updated_at] TEXT, [author_association] TEXT, [body] TEXT, [reactions] TEXT, [performed_via_github_app] TEXT, [issue] INTEGER REFERENCES [issues]([id]) ); CREATE INDEX [idx_issue_comments_issue] ON [issue_comments] ([issue]); CREATE INDEX [idx_issue_comments_user] ON [issue_comments] ([user]);
user 1