issue_comments
2 rows where author_association = "CONTRIBUTOR" and issue = 811321550 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
issue 1
- Bottleneck and dask objects ignore `min_periods` on `rolling` · 2 ✖
id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
---|---|---|---|---|---|---|---|---|---|---|---|
791465015 | https://github.com/pydata/xarray/issues/4922#issuecomment-791465015 | https://api.github.com/repos/pydata/xarray/issues/4922 | MDEyOklzc3VlQ29tbWVudDc5MTQ2NTAxNQ== | bradyrx 8881170 | 2021-03-05T14:47:46Z | 2021-03-05T14:47:46Z | CONTRIBUTOR |
This is normally the case, but with Thanks for the pointer on #4977! |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Bottleneck and dask objects ignore `min_periods` on `rolling` 811321550 | |
790986252 | https://github.com/pydata/xarray/issues/4922#issuecomment-790986252 | https://api.github.com/repos/pydata/xarray/issues/4922 | MDEyOklzc3VlQ29tbWVudDc5MDk4NjI1Mg== | bradyrx 8881170 | 2021-03-04T22:21:37Z | 2021-03-04T22:32:01Z | CONTRIBUTOR | @dcherian, to add to the complexity here, it's even weirder than originally reported. See my test cases below. This might alter how this bug is approached. ```python import xarray as xr def _rolling(ds): return ds.rolling(time=6, center=False, min_periods=1).mean() Length 3 array to test that min_periods is called in, despite askingfor 6 time-steps of smoothingds = xr.DataArray([1, 2, 3], dims='time') ds['time'] = xr.cftime_range(start='2021-01-01', freq='D', periods=3) ``` 1. With
|
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Bottleneck and dask objects ignore `min_periods` on `rolling` 811321550 |
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