home / github

Menu
  • Search all tables
  • GraphQL API

issue_comments

Table actions
  • GraphQL API for issue_comments

2 rows where author_association = "MEMBER", issue = 129919128 and user = 1217238 sorted by updated_at descending

✎ View and edit SQL

This data as json, CSV (advanced)

user 1

  • shoyer · 2 ✖

issue 1

  • Implement vnorm for xarray with dask support · 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
177362496 https://github.com/pydata/xarray/issues/735#issuecomment-177362496 https://api.github.com/repos/pydata/xarray/issues/735 MDEyOklzc3VlQ29tbWVudDE3NzM2MjQ5Ng== shoyer 1217238 2016-01-31T02:22:53Z 2016-01-31T02:22:53Z MEMBER

Looks like it would be worth writing a cross-compatible vnorm in xarray/core/ops.py. Take a look at that module for examples of how we wrote custom wrapper -- this should be pretty straightforward

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Implement vnorm for xarray with dask support 129919128
177035840 https://github.com/pydata/xarray/issues/735#issuecomment-177035840 https://api.github.com/repos/pydata/xarray/issues/735 MDEyOklzc3VlQ29tbWVudDE3NzAzNTg0MA== shoyer 1217238 2016-01-30T01:02:10Z 2016-01-30T01:02:18Z MEMBER

I would be OK adding a norm method, although I don't think there's a super strong need for it -- usually I've been happy writing expressions like (x ** 2).sum(['shapes', 'x']) ** 0.5 instead.

You would either need to implement this all in xarray, or preferably write da.linalg.norm in dask and use that take. Take a look at the scipy source code for this function -- I suspect you could port this almost directly to dask.

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Implement vnorm for xarray with dask support 129919128

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