issue_comments
3 rows where issue = 216799807 and user = 6815844 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
issue 1
- Expand dimensions in xarray · 3 ✖
id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
---|---|---|---|---|---|---|---|---|---|---|---|
289519266 | https://github.com/pydata/xarray/issues/1326#issuecomment-289519266 | https://api.github.com/repos/pydata/xarray/issues/1326 | MDEyOklzc3VlQ29tbWVudDI4OTUxOTI2Ng== | fujiisoup 6815844 | 2017-03-27T17:10:06Z | 2017-03-27T17:10:06Z | MEMBER | OK. I totally agree with you. The API now I propose is ```Python def expand_dims(self, dim=None, axis=0): """Return a new object with an additional axis (or axes) inserted at the corresponding position in the array shape.
``` |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Expand dimensions in xarray 216799807 | |
289511480 | https://github.com/pydata/xarray/issues/1326#issuecomment-289511480 | https://api.github.com/repos/pydata/xarray/issues/1326 | MDEyOklzc3VlQ29tbWVudDI4OTUxMTQ4MA== | fujiisoup 6815844 | 2017-03-27T16:42:24Z | 2017-03-27T16:42:24Z | MEMBER |
I agree this. Do you think it is confusing if this method automatically detects the positional argument, i.e. if string is passed then it should be the axis name and an integer should be axis position. I think that numpy-like API is most user-friendly, as like TensorFlow imitates them.
I like to support
I guess that the reason that numpy doesn't support multiple axes insertion is it brings additional ambugousity to the new axes positions;
e.g.
I hesitate this option actually. |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Expand dimensions in xarray 216799807 | |
289210412 | https://github.com/pydata/xarray/issues/1326#issuecomment-289210412 | https://api.github.com/repos/pydata/xarray/issues/1326 | MDEyOklzc3VlQ29tbWVudDI4OTIxMDQxMg== | fujiisoup 6815844 | 2017-03-25T13:03:41Z | 2017-03-25T13:03:41Z | MEMBER | Yes. How about the following?
(I assume this is a method of ```Python def expand_dims(self, axis=0, dim=None): """Return a new object with an additional dimension inserted at the corresponding position in the array shape.
``` I consider 2 types users; first type users always take care of the dimension order and the other just consider the dimension labels.
The first type users may specify the new axis position as This API is similar to that of |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Expand dimensions in xarray 216799807 |
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