issue_comments
5 rows where author_association = "MEMBER" and issue = 128687346 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
issue 1
- Implement tensordot for xarray with dask support · 5 ✖
id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
---|---|---|---|---|---|---|---|---|---|---|---|
192539434 | https://github.com/pydata/xarray/issues/723#issuecomment-192539434 | https://api.github.com/repos/pydata/xarray/issues/723 | MDEyOklzc3VlQ29tbWVudDE5MjUzOTQzNA== | shoyer 1217238 | 2016-03-05T00:47:49Z | 2016-03-05T00:47:49Z | MEMBER | Fixed by #731. |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Implement tensordot for xarray with dask support 128687346 | |
175383509 | https://github.com/pydata/xarray/issues/723#issuecomment-175383509 | https://api.github.com/repos/pydata/xarray/issues/723 | MDEyOklzc3VlQ29tbWVudDE3NTM4MzUwOQ== | shoyer 1217238 | 2016-01-27T04:24:42Z | 2016-01-27T04:24:42Z | MEMBER | I'm split on whether a function or method makes more sense ( |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Implement tensordot for xarray with dask support 128687346 | |
174841649 | https://github.com/pydata/xarray/issues/723#issuecomment-174841649 | https://api.github.com/repos/pydata/xarray/issues/723 | MDEyOklzc3VlQ29tbWVudDE3NDg0MTY0OQ== | max-sixty 5635139 | 2016-01-26T05:37:47Z | 2016-01-26T05:37:47Z | MEMBER | @shoyer - I thought your answer dominated mine, so I left yours as the only response.
But yup, that form of |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Implement tensordot for xarray with dask support 128687346 | |
174841301 | https://github.com/pydata/xarray/issues/723#issuecomment-174841301 | https://api.github.com/repos/pydata/xarray/issues/723 | MDEyOklzc3VlQ29tbWVudDE3NDg0MTMwMQ== | shoyer 1217238 | 2016-01-26T05:34:40Z | 2016-01-26T05:34:40Z | MEMBER | @MaximilianR I do like That said, I suppose you could make an xarray version of |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Implement tensordot for xarray with dask support 128687346 | |
174839547 | https://github.com/pydata/xarray/issues/723#issuecomment-174839547 | https://api.github.com/repos/pydata/xarray/issues/723 | MDEyOklzc3VlQ29tbWVudDE3NDgzOTU0Nw== | shoyer 1217238 | 2016-01-26T05:27:36Z | 2016-01-26T05:32:02Z | MEMBER | Yes, this would be a nice addition! I spent a little bit of a time futzing around with this to see if there is an elegant way to plug this into our existing dispatching system. The short of it is that the answer appears to be no -- we don't have any elegant equivalent to dask.array's generic So, for now I would simply write a function specialized to DataArray objects. Something like the following (barely tested) is a starting point: ``` python from xarray import align, DataArray note: using private imports (e.g., from xarray.core) is definitely discouraged!this is not guaranteed to work in future versions of xarrayfrom xarray.core.ops import _dask_or_eager_func def tensordot(a, b, dims): if not (isinstance(a, DataArray) and isinstance(b, DataArray)): raise ValueError
``` This would be worth cleaning up so we could add it to the codebase (mostly documentation & tests). |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Implement tensordot for xarray with dask support 128687346 |
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 2