pull_requests
2 rows where user = 5802846
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date), closed_at (date), merged_at (date)
id ▼ | node_id | number | state | locked | title | user | body | created_at | updated_at | closed_at | merged_at | merge_commit_sha | assignee | milestone | draft | head | base | author_association | auto_merge | repo | url | merged_by |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
351354928 | MDExOlB1bGxSZXF1ZXN0MzUxMzU0OTI4 | 3607 | open | 0 | Strided rolling | niowniow 5802846 | This PR adds a stride parameter to the rolling function of DataArray and Dataset . It basically extends the stride functionality being available for `core.rolling.DataArrayRolling.construct` and `core.rolling.DatasetRolling.construct` to the other methods of `DataArrayRolling` and `DatasetRolling`. Note: it makes the arguments of `DataArrayRolling` and `DatasetRolling` inconsistent with the respective `rolling` arguments of pandas Series and DataFrame (They do not support stride). Moreover, it does not solve the issue addressed in [this pandas issue](https://github.com/pandas-dev/pandas/issues/15354) (Efficient stride computation). - [x] Tests added - [x] Passes `black . && mypy . && flake8` - [x] Fully documented, including `whats-new.rst` for all changes and `api.rst` for new API | 2019-12-10T12:05:54Z | 2023-03-09T20:37:56Z | 787b36eb6f2a2650ec26c9f52000a0c8a7189df6 | 0 | 53f56b23dfa2f36f84d8f5b4f883963a7223fa85 | d1e4164f3961d7bbb3eb79037e96cae14f7182f8 | CONTRIBUTOR | xarray 13221727 | https://github.com/pydata/xarray/pull/3607 | ||||||
351784799 | MDExOlB1bGxSZXF1ZXN0MzUxNzg0Nzk5 | 3610 | closed | 0 | Fix zarr append with groups | niowniow 5802846 | Fixes the issue that `xarray.core.dataset.Dataset.to_zarr` produced errors when using `append_dim` and `group` simultaneously. The issue was that during appending, the zarr store was opened without the group information. - [x] Closes #3170 - [x] Tests added - [x] Passes `black . && mypy . && flake8` - [x] Fully documented, including `whats-new.rst` for all changes and `api.rst` for new API | 2019-12-11T08:24:44Z | 2020-03-02T12:19:17Z | 2020-03-02T12:19:17Z | 2020-03-02T12:19:16Z | 8512b7bf498c0c300f146447c0b05545842e9404 | 0 | e9c01eff1fd830b79431fdd3e94be6717e53fe99 | 18e34cc8746ea2ce7be785edcaeee0bd7d4a0200 | CONTRIBUTOR | xarray 13221727 | https://github.com/pydata/xarray/pull/3610 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE [pull_requests] ( [id] INTEGER PRIMARY KEY, [node_id] TEXT, [number] INTEGER, [state] TEXT, [locked] INTEGER, [title] TEXT, [user] INTEGER REFERENCES [users]([id]), [body] TEXT, [created_at] TEXT, [updated_at] TEXT, [closed_at] TEXT, [merged_at] TEXT, [merge_commit_sha] TEXT, [assignee] INTEGER REFERENCES [users]([id]), [milestone] INTEGER REFERENCES [milestones]([id]), [draft] INTEGER, [head] TEXT, [base] TEXT, [author_association] TEXT, [auto_merge] TEXT, [repo] INTEGER REFERENCES [repos]([id]), [url] TEXT, [merged_by] INTEGER REFERENCES [users]([id]) ); CREATE INDEX [idx_pull_requests_merged_by] ON [pull_requests] ([merged_by]); CREATE INDEX [idx_pull_requests_repo] ON [pull_requests] ([repo]); CREATE INDEX [idx_pull_requests_milestone] ON [pull_requests] ([milestone]); CREATE INDEX [idx_pull_requests_assignee] ON [pull_requests] ([assignee]); CREATE INDEX [idx_pull_requests_user] ON [pull_requests] ([user]);