home / github

Menu
  • Search all tables
  • GraphQL API

issue_comments

Table actions
  • GraphQL API for issue_comments

4 rows where author_association = "MEMBER", issue = 256496917 and user = 10050469 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

  • fmaussion · 4 ✖

issue 1

  • Regression: time attributes on PeriodIndex · 4 ✖

author_association 1

  • MEMBER · 4 ✖
id html_url issue_url node_id user created_at updated_at ▲ author_association body reactions performed_via_github_app issue
329177780 https://github.com/pydata/xarray/issues/1565#issuecomment-329177780 https://api.github.com/repos/pydata/xarray/issues/1565 MDEyOklzc3VlQ29tbWVudDMyOTE3Nzc4MA== fmaussion 10050469 2017-09-13T14:03:06Z 2017-09-13T14:03:06Z MEMBER

Potentially we could some sort of API for surfacing this information, e.g., a pandas_dtype property to xarray.Variable.

It's probably cleaner, because the dtype of PeriodIndex can be several things, i.e. 'period[M]' in my case.

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Regression: time attributes on PeriodIndex 256496917
328637548 https://github.com/pydata/xarray/issues/1565#issuecomment-328637548 https://api.github.com/repos/pydata/xarray/issues/1565 MDEyOklzc3VlQ29tbWVudDMyODYzNzU0OA== fmaussion 10050469 2017-09-11T19:43:19Z 2017-09-11T19:43:19Z MEMBER

OK, so the problem is that when given to is_datetime_like here, the pd.PeriodIndex is already transformed into an array of dtype object.

Before @darothen 's https://github.com/pydata/xarray/pull/1356, the piece if code that was executed is date = ref_var.to_index(), which has the nice property to return a PeriodIndex, as shown here from my debugger:

```python

ref_var Out[1]: <xarray.IndexVariable 'time' (time: 12)> array([Period('2000-01', 'M'), Period('2000-02', 'M'), Period('2000-03', 'M'), Period('2000-04', 'M'), Period('2000-05', 'M'), Period('2000-06', 'M'), Period('2000-07', 'M'), Period('2000-08', 'M'), Period('2000-09', 'M'), Period('2000-10', 'M'), Period('2000-11', 'M'), Period('2000-12', 'M')], dtype=object) ref_var.to_index() Out[3]: PeriodIndex(['2000-01', '2000-02', '2000-03', '2000-04', '2000-05', '2000-06', '2000-07', '2000-08', '2000-09', '2000-10', '2000-11', '2000-12'], dtype='period[M]', name='time', freq='M') ```

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Regression: time attributes on PeriodIndex 256496917
328575741 https://github.com/pydata/xarray/issues/1565#issuecomment-328575741 https://api.github.com/repos/pydata/xarray/issues/1565 MDEyOklzc3VlQ29tbWVudDMyODU3NTc0MQ== fmaussion 10050469 2017-09-11T16:00:43Z 2017-09-11T16:00:43Z MEMBER

Indeed! Will look into it.

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Regression: time attributes on PeriodIndex 256496917
328469339 https://github.com/pydata/xarray/issues/1565#issuecomment-328469339 https://api.github.com/repos/pydata/xarray/issues/1565 MDEyOklzc3VlQ29tbWVudDMyODQ2OTMzOQ== fmaussion 10050469 2017-09-11T09:13:21Z 2017-09-11T09:13:21Z MEMBER

I was wondering which PR was responsible for the regression, but I guess I don't understand the internals well enough to classify this as "easy fix" for me ;)

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Regression: time attributes on PeriodIndex 256496917

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