issue_comments
1 row where issue = 196984274 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
issue 1
- Inconsistent behaviour for xarray.DataArray.rename · 1 ✖
id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
---|---|---|---|---|---|---|---|---|---|---|---|
268597648 | https://github.com/pydata/xarray/issues/1177#issuecomment-268597648 | https://api.github.com/repos/pydata/xarray/issues/1177 | MDEyOklzc3VlQ29tbWVudDI2ODU5NzY0OA== | shoyer 1217238 | 2016-12-21T18:10:21Z | 2016-12-21T18:10:21Z | MEMBER | On In [6]: x Out[6]: <xarray.DataArray 'a' (a: 3)> array([1, 2, 3]) Coordinates: * a (a) int64 1 2 3 In [7]: x.rename({'a': 'b'}) Out[7]: <xarray.DataArray 'b' (b: 3)> array([1, 2, 3]) Coordinates: * b (b) int64 1 2 3 ``` So it renames both I agree that this is inconsistent and surprising. Using a dictionary should never rename the A fix for this would be very welcome. |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Inconsistent behaviour for xarray.DataArray.rename 196984274 |
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