home / github

Menu
  • GraphQL API
  • Search all tables

issue_comments

Table actions
  • GraphQL API for issue_comments

1 row where issue = 503711327 and user = 2448579 sorted by updated_at descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: created_at (date), updated_at (date)

user 1

  • dcherian · 1 ✖

issue 1

  • concat() fails when args have sparse.COO data and different fill values · 1 ✖

author_association 1

  • MEMBER 1
id html_url issue_url node_id user created_at updated_at ▲ author_association body reactions performed_via_github_app issue
539551326 https://github.com/pydata/xarray/issues/3381#issuecomment-539551326 https://api.github.com/repos/pydata/xarray/issues/3381 MDEyOklzc3VlQ29tbWVudDUzOTU1MTMyNg== dcherian 2448579 2019-10-08T14:52:08Z 2019-10-08T14:52:08Z MEMBER

Thanks @khaeru.

  1. This looks like a sparse error: https://sparse.pydata.org/en/latest/generated/sparse.concatenate.html: ValueError – If all elements of arrays don’t have the same fill-value.

  2. This too is a sparse error: Cannot provide a fill-value in combination with something that already has a fill-value So you'll need to figure out how to change fill values on sparse arrays.

  3. This needs some investigation if you're up for it. ``` # But simple operations again create objects with potentially incompatible

fill-values

d = c.sum(dim='bar') print(d.data.fill_value) # 0.0 ```

I also see that we aren't testing for fill_value changes in test_sparse.py so it would be good to add some of those even if they fail currently so that someone else (like you!) can come in and fix it.

{
    "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

CSV options:

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]);
Powered by Datasette · Queries took 140.618ms · About: xarray-datasette