home / github

Menu
  • GraphQL API
  • Search all tables

issue_comments

Table actions
  • GraphQL API for issue_comments

2 rows where author_association = "MEMBER", issue = 546303413 and user = 14808389 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

  • keewis · 2 ✖

issue 1

  • Raise nice error when attempting to concatenate CFTimeIndex & DatetimeIndex · 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
571667543 https://github.com/pydata/xarray/issues/3666#issuecomment-571667543 https://api.github.com/repos/pydata/xarray/issues/3666 MDEyOklzc3VlQ29tbWVudDU3MTY2NzU0Mw== keewis 14808389 2020-01-07T16:38:04Z 2020-01-07T16:38:04Z MEMBER

it does. Also, no errors in either case, so the problem is with DatetimeIndex, CFTimeIndex or the way the data is converted.

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Raise nice error when attempting to concatenate CFTimeIndex & DatetimeIndex 546303413
571639956 https://github.com/pydata/xarray/issues/3666#issuecomment-571639956 https://api.github.com/repos/pydata/xarray/issues/3666 MDEyOklzc3VlQ29tbWVudDU3MTYzOTk1Ng== keewis 14808389 2020-01-07T15:38:57Z 2020-01-07T15:38:57Z MEMBER

I can reproduce this error with your files: python In [18]: files = glob.glob("*.nc") ...: datasets = [xr.open_dataset(file) for file in files] ...: xr.concat(datasets, dim="new_dim") RecursionError but sorting the files before concatenating results in a different error: python In [19]: files = glob.glob("*.nc") ...: datasets = [xr.open_dataset(file) for file in sorted(files)] ...: xr.concat(datasets, dim="new_dim") TypeError: cannot compare cftime.DatetimeNoLeap(1950-01-01 00:00:00) and Timestamp('1950-01-01 00:00:00') (different calendars) which might mean that there is a problem with the data.

Regardless, we might want to make sure the recursion does not happen.

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Raise nice error when attempting to concatenate CFTimeIndex & DatetimeIndex 546303413

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