issue_comments
2 rows where issue = 269297904 and user = 2443309 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
issue 1
- Could a DataArrayRolling object compute an arbitrary function on rolling windows? · 2 ✖
| id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 340923959 | https://github.com/pydata/xarray/issues/1666#issuecomment-340923959 | https://api.github.com/repos/pydata/xarray/issues/1666 | MDEyOklzc3VlQ29tbWVudDM0MDkyMzk1OQ== | jhamman 2443309 | 2017-10-31T22:16:07Z | 2017-10-31T22:16:07Z | MEMBER | @ziofil - We don't support indexing on the rolling iterator at the moment. You could just grab the windows you want in this way: ```Python w1 = 2 w2 = 7 for i, (k, v) in enumerate(r): if i > w1 and i <= w2: print(k.item(), v.values) 3 [2 3] 4 [3 4] 5 [4 5] 6 [5 6] 7 [6 7] ``` By the way, I think we'd be happy to see some feature development on this front if you are interested in developing the rolling objects out further. |
{
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
Could a DataArrayRolling object compute an arbitrary function on rolling windows? 269297904 | |
| 340241366 | https://github.com/pydata/xarray/issues/1666#issuecomment-340241366 | https://api.github.com/repos/pydata/xarray/issues/1666 | MDEyOklzc3VlQ29tbWVudDM0MDI0MTM2Ng== | jhamman 2443309 | 2017-10-29T06:46:01Z | 2017-10-29T06:46:01Z | MEMBER | @shoyer - this is really odd. Its probably coming from https://github.com/pydata/xarray/blob/master/xarray/core/rolling.py#L149-L150 but I don't remember exactly what/why we're trying to accomplish here. |
{
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
Could a DataArrayRolling object compute an arbitrary function on rolling windows? 269297904 |
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