issue_comments
7 rows where issue = 588126763 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
issue 1
- consecutive time selection · 7 ✖
id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
---|---|---|---|---|---|---|---|---|---|---|---|
605456013 | https://github.com/pydata/xarray/issues/3896#issuecomment-605456013 | https://api.github.com/repos/pydata/xarray/issues/3896 | MDEyOklzc3VlQ29tbWVudDYwNTQ1NjAxMw== | miniufo 9312831 | 2020-03-28T14:39:06Z | 2020-03-28T14:39:06Z | NONE |
You're right. That is used for debuging the intermediate results. Thanks again @keewis @max-sixty. |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
consecutive time selection 588126763 | |
605446570 | https://github.com/pydata/xarray/issues/3896#issuecomment-605446570 | https://api.github.com/repos/pydata/xarray/issues/3896 | MDEyOklzc3VlQ29tbWVudDYwNTQ0NjU3MA== | keewis 14808389 | 2020-03-28T13:19:46Z | 2020-03-28T13:19:46Z | MEMBER | sounds good. Minor comment / nit: you don't really need the I don't know about performance but if it does what you asked for then that's good? |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
consecutive time selection 588126763 | |
605395619 | https://github.com/pydata/xarray/issues/3896#issuecomment-605395619 | https://api.github.com/repos/pydata/xarray/issues/3896 | MDEyOklzc3VlQ29tbWVudDYwNTM5NTYxOQ== | miniufo 9312831 | 2020-03-28T05:02:59Z | 2020-03-28T05:02:59Z | NONE | Hi @keewis, this is really a smart way, using
sst = xr.DataArray( np.array( [0., 0., 0., 0., 0., 1., 1., 1., 1., 1., 0., 0., 1., 0., 0., 1., 1., 1., 1., 1., 1., 0., 0., 0.] ), dims="time", coords={"time": np.arange(24)}, name="sst", ) ElNino = continuous_meet(sst > 0.5, count=5, dim='time') sst.plot.step(linewidth=3)
sst.where(ElNino).plot.step(linewidth=2)
|
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
consecutive time selection 588126763 | |
605084864 | https://github.com/pydata/xarray/issues/3896#issuecomment-605084864 | https://api.github.com/repos/pydata/xarray/issues/3896 | MDEyOklzc3VlQ29tbWVudDYwNTA4NDg2NA== | keewis 14808389 | 2020-03-27T16:08:22Z | 2020-03-27T17:58:15Z | MEMBER | what about this?
|
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
consecutive time selection 588126763 | |
604779924 | https://github.com/pydata/xarray/issues/3896#issuecomment-604779924 | https://api.github.com/repos/pydata/xarray/issues/3896 | MDEyOklzc3VlQ29tbWVudDYwNDc3OTkyNA== | max-sixty 5635139 | 2020-03-27T02:18:48Z | 2020-03-27T02:18:48Z | MEMBER | OK, that's a bit harder but not impossible. You could take that, run |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
consecutive time selection 588126763 | |
604776072 | https://github.com/pydata/xarray/issues/3896#issuecomment-604776072 | https://api.github.com/repos/pydata/xarray/issues/3896 | MDEyOklzc3VlQ29tbWVudDYwNDc3NjA3Mg== | miniufo 9312831 | 2020-03-27T02:01:54Z | 2020-03-27T02:01:54Z | NONE | Hi @max-sixty, thanks for your kind help. But I found it works not as I expected. If the SST has the values |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
consecutive time selection 588126763 | |
604499916 | https://github.com/pydata/xarray/issues/3896#issuecomment-604499916 | https://api.github.com/repos/pydata/xarray/issues/3896 | MDEyOklzc3VlQ29tbWVudDYwNDQ5OTkxNg== | max-sixty 5635139 | 2020-03-26T15:35:19Z | 2020-03-26T15:35:19Z | MEMBER | IIUC, you could have, in order: - rolling 3 month SST - bool on whether that's above 0.5 - rolling 5 month count of that - bool on whether that's equal to 5 |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
consecutive time selection 588126763 |
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 3