pull_requests
2 rows where user = 222557
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
188800128 | MDExOlB1bGxSZXF1ZXN0MTg4ODAwMTI4 | 2152 | closed | 0 | ENH: Plotting for groupby_bins | maahn 222557 | DataArrays created with e.g. groupy_bins have coords arrays consisting of pd._libs.interval.Interval. Therefore, they cannot be plotted. The small patch replaces the the pd._libs.interval.Interval values with the interval's center point and adds `_center` to the label name. It looks like this: https://gist.github.com/maahn/91da0a8d299ef6567827749cbe2f1913 I don't think there is any need for additional documentation except the `whats-new.rst` or tests(?), but I'm also happy to add them if you think it is required. - [x] Tests added (for all bug fixes or enhancements) - [x] Tests passed (for all non-documentation changes) - [x] Fully documented, including `whats-new.rst` for all changes and `api.rst` for new API | 2018-05-17T16:53:33Z | 2018-10-23T15:20:40Z | 2018-10-23T08:19:23Z | 2018-10-23T08:19:23Z | 5ebed791db006075701c16b2e8eb9566207f2548 | 0 | 448d6b751379ef7ab67c9287ecbd5ce231a35c66 | 289b377129b18e7dc6da8336e958a85be868acbe | NONE | xarray 13221727 | https://github.com/pydata/xarray/pull/2152 | ||||
208041172 | MDExOlB1bGxSZXF1ZXN0MjA4MDQxMTcy | 2364 | closed | 0 | Faster unstack | maahn 222557 | - [x] Closes #1560 as proposed in issue discussion - [X] Tests added (for all bug fixes or enhancements) - [x] Tests passed (for all non-documentation changes) - [x] ASV benchmark added - [x] What's new added. | 2018-08-13T16:58:30Z | 2018-08-15T00:19:13Z | 2018-08-15T00:18:28Z | 2018-08-15T00:18:28Z | c27ca436321654a97e776aa0d055dfef357bc5a8 | 0 | d9c9e7ea95e400a6cf464475fdd0fcb2bda5b6cb | 846e28f8862b150352512f8e3d05bcb9db57a1a3 | NONE | xarray 13221727 | https://github.com/pydata/xarray/pull/2364 |
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]);