home / github

Menu
  • Search all tables
  • GraphQL API

issue_comments

Table actions
  • GraphQL API for issue_comments

4 rows where author_association = "MEMBER", issue = 265344609 and user = 6815844 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

  • fujiisoup · 4 ✖

issue 1

  • Support autocompletion dictionary access in ipython. · 4 ✖

author_association 1

  • MEMBER · 4 ✖
id html_url issue_url node_id user created_at updated_at ▲ author_association body reactions performed_via_github_app issue
338478416 https://github.com/pydata/xarray/pull/1632#issuecomment-338478416 https://api.github.com/repos/pydata/xarray/issues/1632 MDEyOklzc3VlQ29tbWVudDMzODQ3ODQxNg== fujiisoup 6815844 2017-10-22T13:43:29Z 2017-10-22T13:43:29Z MEMBER

@shoyer Thanks. Updated.

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Support autocompletion dictionary access in ipython. 265344609
336637245 https://github.com/pydata/xarray/pull/1632#issuecomment-336637245 https://api.github.com/repos/pydata/xarray/issues/1632 MDEyOklzc3VlQ29tbWVudDMzNjYzNzI0NQ== fujiisoup 6815844 2017-10-14T14:10:18Z 2017-10-14T14:10:18Z MEMBER

I added a tab-completion support also for ds.coords and ds.data_vars.

I am getting to feel slight unnaturalness against the following behavior.

```python In [1]: import xarray as xr ...: da = xr.Dataset({'var1': ('x', [0, 1, 2])})

In [2]: 'x' in da Out[2]: False

In [3]: 'x' in da.keys() Out[3]: False

In [4]: da['x'] Out[4]: <xarray.DataArray 'x' (x: 3)> array([0, 1, 2]) Dimensions without coordinates: x ```

I understand that it is a designed behavior, but it looks a little bit unintuitive.

Maybe 'x' in da should be True?

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Support autocompletion dictionary access in ipython. 265344609
336504848 https://github.com/pydata/xarray/pull/1632#issuecomment-336504848 https://api.github.com/repos/pydata/xarray/issues/1632 MDEyOklzc3VlQ29tbWVudDMzNjUwNDg0OA== fujiisoup 6815844 2017-10-13T16:41:04Z 2017-10-13T16:41:04Z MEMBER

I think we can also have ds.coords['tem -> ds.coords['temperature'] and ds.data_vars['tem -> ds.data_vars['temperature']. I will update thsi PR later (maybe few days later).

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Support autocompletion dictionary access in ipython. 265344609
336501134 https://github.com/pydata/xarray/pull/1632#issuecomment-336501134 https://api.github.com/repos/pydata/xarray/issues/1632 MDEyOklzc3VlQ29tbWVudDMzNjUwMTEzNA== fujiisoup 6815844 2017-10-13T16:25:42Z 2017-10-13T16:26:22Z MEMBER

It would be really good if we could also have an autocompletion for the keyword argument, such as sel(tem -> sel(temperature=, but I have no idea ...

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Support autocompletion dictionary access in ipython. 265344609

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