home / github

Menu
  • GraphQL API
  • Search all tables

issue_comments

Table actions
  • GraphQL API for issue_comments

2 rows where issue = 811321550 and user = 2448579 sorted by updated_at descending

✎ View and edit SQL

This data as json, CSV (advanced)

These facets timed out: author_association, issue

user 1

  • dcherian · 2 ✖
id html_url issue_url node_id user created_at updated_at ▲ author_association body reactions performed_via_github_app issue
791011542 https://github.com/pydata/xarray/issues/4922#issuecomment-791011542 https://api.github.com/repos/pydata/xarray/issues/4922 MDEyOklzc3VlQ29tbWVudDc5MTAxMTU0Mg== dcherian 2448579 2021-03-04T23:02:48Z 2021-03-04T23:02:48Z MEMBER

```

Just apply rolling to the base array.

ds.rolling(time=6, center=False, min_periods=1).mean() ```

I feel like this should not work i.e. rolling window length (6) < size along axis (3). So the bottleneck error seems right.

The chunk size error in the last example should go away with #4977

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Bottleneck and dask objects ignore `min_periods` on `rolling` 811321550
781571084 https://github.com/pydata/xarray/issues/4922#issuecomment-781571084 https://api.github.com/repos/pydata/xarray/issues/4922 MDEyOklzc3VlQ29tbWVudDc4MTU3MTA4NA== dcherian 2448579 2021-02-18T19:08:44Z 2021-02-18T19:08:44Z MEMBER

Maybe the padding is breaking down for length-1 arrays?

I would look at padded in this function https://github.com/pydata/xarray/blob/c9b9eec73a033e275b6012e7d391dd42591ccf52/xarray/core/rolling.py#L461-L463

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Bottleneck and dask objects ignore `min_periods` on `rolling` 811321550

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