home / github

Menu
  • Search all tables
  • GraphQL API

issue_comments

Table actions
  • GraphQL API for issue_comments

2 rows where issue = 512205079 and user = 10554254 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

  • friedrichknuth · 2 ✖

issue 1

  • Merge fails when sparse Dataset has overlapping dimension values · 2 ✖

author_association 1

  • NONE 2
id html_url issue_url node_id user created_at updated_at ▲ author_association body reactions performed_via_github_app issue
551359502 https://github.com/pydata/xarray/issues/3445#issuecomment-551359502 https://api.github.com/repos/pydata/xarray/issues/3445 MDEyOklzc3VlQ29tbWVudDU1MTM1OTUwMg== friedrichknuth 10554254 2019-11-08T02:41:13Z 2019-11-08T02:41:13Z NONE

@El-minadero from the sparse API page I'm seeing two methods for combining data:

```python import sparse import numpy as np

A = sparse.COO.from_numpy(np.array([[1, 2], [3, 4]])) B = sparse.COO.from_numpy(np.array([[5, 9], [6, 8]])) sparse.stack([A,B]).todense()

Out[1]: array([[[1, 2], [3, 4]], [[5, 9], [6, 8]]])

sparse.concatenate([A,B]).todense()

Out[2]: array([[1, 2], [3, 4], [5, 9], [6, 8]]) `` Since this is an issue withsparse` and merging data doesn't seem to be supported at this time, you might consider closing this issue out here and raising it over at sparse.

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Merge fails when sparse Dataset has overlapping dimension values 512205079
550516745 https://github.com/pydata/xarray/issues/3445#issuecomment-550516745 https://api.github.com/repos/pydata/xarray/issues/3445 MDEyOklzc3VlQ29tbWVudDU1MDUxNjc0NQ== friedrichknuth 10554254 2019-11-06T21:51:31Z 2019-11-06T21:51:31Z NONE

Note that dataset1 = xr.concat([data_array1,data_array2],dim='source') or dim='receiver' seem to work, however, concat also fails if time is specified as the dimension.

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Merge fails when sparse Dataset has overlapping dimension values 512205079

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 13.662ms · About: xarray-datasette