home / github

Menu
  • GraphQL API
  • Search all tables

issue_comments

Table actions
  • GraphQL API for issue_comments

3 rows where issue = 1217566173 sorted by updated_at descending

✎ View and edit SQL

This data as json, CSV (advanced)

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

user 3

  • dcherian 1
  • max-sixty 1
  • Illviljan 1

issue 1

  • cumsum drops index coordinates · 3 ✖

author_association 1

  • MEMBER 3
id html_url issue_url node_id user created_at updated_at ▲ author_association body reactions performed_via_github_app issue
1111443907 https://github.com/pydata/xarray/issues/6528#issuecomment-1111443907 https://api.github.com/repos/pydata/xarray/issues/6528 IC_kwDOAMm_X85CP0nD max-sixty 5635139 2022-04-27T20:21:12Z 2022-04-27T20:21:12Z MEMBER

There was some discussion a while ago about how to handle reduce on things that aren't reductions. There's some overlap with https://github.com/pydata/xarray/issues/1618, and that has some links to other issues.

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  cumsum drops index coordinates 1217566173
1111392810 https://github.com/pydata/xarray/issues/6528#issuecomment-1111392810 https://api.github.com/repos/pydata/xarray/issues/6528 IC_kwDOAMm_X85CPoIq dcherian 2448579 2022-04-27T19:23:36Z 2022-04-27T19:23:36Z MEMBER

Since cumsum is not really a reduction, should we create a new method instead of reduce? I guess it would look very similar to reduce though.

:+1: I think we should add cumsum to generate_reductions.py. which maybe should become generate_aggregations.py

{
    "total_count": 1,
    "+1": 1,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  cumsum drops index coordinates 1217566173
1111363546 https://github.com/pydata/xarray/issues/6528#issuecomment-1111363546 https://api.github.com/repos/pydata/xarray/issues/6528 IC_kwDOAMm_X85CPg_a Illviljan 14371165 2022-04-27T18:51:07Z 2022-04-27T18:52:26Z MEMBER

https://github.com/pydata/xarray/blob/7173bd3f6b76e92f77f4156236fd2b3fe546c9c2/xarray/core/dataset.py#L5239-L5240 If you comment out this if-check so it always add the variable at least the example seems to work.

Not sure how to handle this: * Add a new keyword argument to reduce? keepcoords or can keepdims be expanded to handle this as well? * Since cumsum is not really a reduction, should we create a new method instead of reduce? I guess it would look very similar to reduce though.

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  cumsum drops index coordinates 1217566173

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