issue_comments
3 rows where issue = 200125945 and user = 10050469 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
issue 1
- Document the new __repr__ · 3 ✖
id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
---|---|---|---|---|---|---|---|---|---|---|---|
275618135 | https://github.com/pydata/xarray/issues/1199#issuecomment-275618135 | https://api.github.com/repos/pydata/xarray/issues/1199 | MDEyOklzc3VlQ29tbWVudDI3NTYxODEzNQ== | fmaussion 10050469 | 2017-01-27T08:59:45Z | 2017-01-27T08:59:45Z | MEMBER |
The problem for the user is that the I'd add another suggestion to the list that @shoyer proposed, which is simply to do nothing with the unindexed dimensions:
After that, my preference goes for "Dimensions without coordinates" too. In the SO post, the OP also wondered about the "empty" coordinates. Any plan to change this too? Maybe a |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Document the new __repr__ 200125945 | |
273124471 | https://github.com/pydata/xarray/issues/1199#issuecomment-273124471 | https://api.github.com/repos/pydata/xarray/issues/1199 | MDEyOklzc3VlQ29tbWVudDI3MzEyNDQ3MQ== | fmaussion 10050469 | 2017-01-17T12:20:36Z | 2017-01-17T12:20:36Z | MEMBER |
Sorry, I'm not sure to understand: do you mean you'd rather stay with the current behavior as you said in https://github.com/pydata/xarray/pull/1017#issuecomment-249908900 ? |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Document the new __repr__ 200125945 | |
272824929 | https://github.com/pydata/xarray/issues/1199#issuecomment-272824929 | https://api.github.com/repos/pydata/xarray/issues/1199 | MDEyOklzc3VlQ29tbWVudDI3MjgyNDkyOQ== | fmaussion 10050469 | 2017-01-16T10:27:59Z | 2017-01-16T13:37:15Z | MEMBER | [edited to remove a less relevant comment, now moved to a separate issue] After having a look at the doc about coordinates (http://xarray.pydata.org/en/latest/data-structures.html#coordinates), here a few thoughts:
- it would be good to have clear semantics about the different coordinates. For example, "positional coordinates" for coords with " I'll go on with a simple example that I just tried out to let you know how I dealt with this new behavior of xarray: ```python In [1]: import xarray as xr In [2]: a = np.array([[1.1, 2.2, 3.3], [4.4, 5.5, 6.6]]) In [3]: da = xr.DataArray(a, dims=['y', 'x'], coords={'x':[0.1, 1.1, 2.2], 'xy':(['y', 'x'], a)}) In [4]: da Out[4]: <xarray.DataArray (y: 2, x: 3)> array([[ 1.1, 2.2, 3.3], [ 4.4, 5.5, 6.6]]) Coordinates: * x (x) float64 0.1 1.1 2.2 xy (y, x) float64 1.1 2.2 3.3 4.4 5.5 6.6 o y (y) - ``` "OK, I have three types of coordinates here. This makes sense, they are all defined in a different way. y is a dimension of my dataset, so at least I should be able to select along that dimension:".
"That makes sense. However, this is probably not possible with y, which is not defined:"
I actually think that Maybe I'm completely missing the point here: don't hesitate to correct me! |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Document the new __repr__ 200125945 |
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