issue_comments
2 rows where author_association = "MEMBER", issue = 503711327 and user = 1217238 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
issue 1
- concat() fails when args have sparse.COO data and different fill values · 2 ✖
id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
---|---|---|---|---|---|---|---|---|---|---|---|
541179896 | https://github.com/pydata/xarray/issues/3381#issuecomment-541179896 | https://api.github.com/repos/pydata/xarray/issues/3381 | MDEyOklzc3VlQ29tbWVudDU0MTE3OTg5Ng== | shoyer 1217238 | 2019-10-11T18:44:02Z | 2019-10-11T18:44:02Z | MEMBER | OK, thanks for clarify with that example. I think we can track down the issue to the result of
The fill value here is actually arbitrary, since the array is entirely dense. If this fill value were still That said, sparse is making a reasonable choice here: Options for dealing with this:
- Use |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
concat() fails when args have sparse.COO data and different fill values 503711327 | |
541138033 | https://github.com/pydata/xarray/issues/3381#issuecomment-541138033 | https://api.github.com/repos/pydata/xarray/issues/3381 | MDEyOklzc3VlQ29tbWVudDU0MTEzODAzMw== | shoyer 1217238 | 2019-10-11T16:42:11Z | 2019-10-11T16:42:11Z | MEMBER | Sparse only lets you combine arrays with different fill values if the result would also have a fixed value. That's why you can multiply or add but not concatenate, e.g.,
Multiple fill values simply aren't representable by sparse's data model. I think you could work this by wrapping the sparse arrays in dask first. |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
concat() fails when args have sparse.COO data and different fill values 503711327 |
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