home / github

Menu
  • GraphQL API
  • Search all tables

issue_comments

Table actions
  • GraphQL API for issue_comments

2 rows where author_association = "MEMBER" and issue = 30339447 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

  • shoyer 2

issue 1

  • Rename `DatasetArray` to `DataArray`? · 2 ✖

author_association 1

  • MEMBER · 2 ✖
id html_url issue_url node_id user created_at updated_at ▲ author_association body reactions performed_via_github_app issue
39059284 https://github.com/pydata/xarray/issues/85#issuecomment-39059284 https://api.github.com/repos/pydata/xarray/issues/85 MDEyOklzc3VlQ29tbWVudDM5MDU5Mjg0 shoyer 1217238 2014-03-31T07:12:52Z 2014-03-31T07:12:52Z MEMBER

Fixed by #73.

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Rename `DatasetArray` to `DataArray`? 30339447
38875079 https://github.com/pydata/xarray/issues/85#issuecomment-38875079 https://api.github.com/repos/pydata/xarray/issues/85 MDEyOklzc3VlQ29tbWVudDM4ODc1MDc5 shoyer 1217238 2014-03-27T23:48:05Z 2014-03-27T23:48:05Z MEMBER

For reference, I got the name "DataArray" from this Wes McKinney blog post: http://wesmckinney.com/blog/?p=77

I will add a pull-request with this name change, perhaps along with the focus -> name change. For now, it will include DatasetArray = DataArray to make the change backwards compatible.

It would also be nice to be create to a DataArray (including both dimensions and coordinate values) from scratch without making a Dataset first. Ideally, we could just write

python DataArray(data, x=np.arange(5), y=np.arange(10))

but unfortunately Python doesn't support inferring the order of keyword arguments.

Some options (not necessarily mutually exclusive), in descending (ascending) order of their machine (human) friendliness:

python DataArray(data, [('x', np.arange(5)), ('y', np.arange(10))]) DataArray(data, ['x', 'y'], [np.arange(5), np.arange(10)]) DataArray(data, 'x', np.arange(5), 'y', np.arange(10))

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Rename `DatasetArray` to `DataArray`? 30339447

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