issue_comments
1 row where author_association = "MEMBER" and issue = 369751771 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
issue 1
- Enable add/sub operations involving a CFTimeIndex and a TimedeltaIndex · 1 ✖
| id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 429540715 | https://github.com/pydata/xarray/issues/2484#issuecomment-429540715 | https://api.github.com/repos/pydata/xarray/issues/2484 | MDEyOklzc3VlQ29tbWVudDQyOTU0MDcxNQ== | spencerkclark 6628425 | 2018-10-13T13:10:33Z | 2018-10-13T13:20:35Z | MEMBER | Adding a TimedeltaIndex to a CFTimeIndex would also make sense: ``` In [1]: import xarray as xr; import pandas as pd In [2]: a = xr.cftime_range('2000', periods=5) In [3]: deltas = pd.TimedeltaIndex([pd.Timedelta(days=1) for _ in range(5)]) In [4]: a + deltas Out[4]: CFTimeIndex([2000-01-02 00:00:00, 2000-01-03 00:00:00, 2000-01-04 00:00:00, 2000-01-05 00:00:00, 2000-01-06 00:00:00], dtype='object') In [5]: deltas + a
Out[5]:
CFTimeIndex([2000-01-02 00:00:00, 2000-01-03 00:00:00, 2000-01-04 00:00:00,
2000-01-05 00:00:00, 2000-01-06 00:00:00],
dtype='object')
|
{
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
Enable add/sub operations involving a CFTimeIndex and a TimedeltaIndex 369751771 |
Advanced export
JSON shape: default, array, newline-delimited, object
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]);
user 1