home / github

Menu
  • Search all tables
  • GraphQL API

issue_comments

Table actions
  • GraphQL API for issue_comments

2 rows where issue = 463841931 sorted by updated_at descending

✎ View and edit SQL

This data as json, CSV (advanced)

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

user 2

  • amueller 1
  • shoyer 1

author_association 2

  • MEMBER 1
  • NONE 1

issue 1

  • Question: Guaranteed zero-copy round-trip from numpy? · 2 ✖
id html_url issue_url node_id user created_at updated_at ▲ author_association body reactions performed_via_github_app issue
508785516 https://github.com/pydata/xarray/issues/3077#issuecomment-508785516 https://api.github.com/repos/pydata/xarray/issues/3077 MDEyOklzc3VlQ29tbWVudDUwODc4NTUxNg== amueller 449558 2019-07-05T14:58:12Z 2019-07-05T14:58:12Z NONE

Thank you @shoyer, that's very useful input. It seems that xarray would fulfill our requirements and so at least is a reasonable candidate for us.

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Question: Guaranteed zero-copy round-trip from numpy? 463841931
508574137 https://github.com/pydata/xarray/issues/3077#issuecomment-508574137 https://api.github.com/repos/pydata/xarray/issues/3077 MDEyOklzc3VlQ29tbWVudDUwODU3NDEzNw== shoyer 1217238 2019-07-04T20:48:40Z 2019-07-04T20:48:40Z MEMBER

Xarray currently only converts NumPy arrays with very particular dtypes: - object arrays will sometimes get converted to more specific dtypes (using pandas's rules) - datetime64 and timedelta64 arrays get converted into ns precision

I imagine we might add special cases like this in the future for esoteric dtypes, but numeric arrays will always be guaranteed to use views, both when creating a DataArray and casting it into a NumPy array.

(Pandas not being able to guarantee this was one of my motivations for writing xarray in the first place...)

{
    "total_count": 1,
    "+1": 1,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Question: Guaranteed zero-copy round-trip from numpy? 463841931

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