home / github

Menu
  • GraphQL API
  • Search all tables

pull_requests

Table actions
  • GraphQL API for pull_requests

4 rows where user = 223250

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: state, 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
252555941 MDExOlB1bGxSZXF1ZXN0MjUyNTU1OTQx 2767 closed 0 Add `Dataset.drop_dims` kmsquire 223250 <!-- Feel free to remove check-list items aren't relevant to your change --> - [x] Closes #1949 - [x] Tests added - [x] Fully documented, including `whats-new.rst` for all changes and `api.rst` for new API 2019-02-13T04:15:04Z 2019-04-12T07:26:07Z 2019-03-03T19:39:40Z 2019-03-03T19:39:40Z e8eb83bd730f3697b7026d9e5ef770a5235020e3     0 2cc10bd610ae543b2a0f2a5d6d32c50574ae0f2a 627a881fd3dacf941af062f556c29d5f46411f22 CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/2767  
279568261 MDExOlB1bGxSZXF1ZXN0Mjc5NTY4MjYx 2967 closed 0 Fix rolling.constuct() example kmsquire 223250 The example was using the wrong name for the function (to_datarray), and used the wrong dimension for the window. Cc: @fujiisoup, who added this in #1837 2019-05-16T15:50:17Z 2019-05-16T15:55:16Z 2019-05-16T15:55:16Z 2019-05-16T15:55:16Z 66581084a89f75476b581ef74e5226eae2d62a84     0 d6c83dd11388bc301326a542cca24e4df78c04eb bd78b7f1f46a0fb0a0b0f2d4f4bdbacba55be93d CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/2967  
279578380 MDExOlB1bGxSZXF1ZXN0Mjc5NTc4Mzgw 2968 closed 0 Add examples for `DataArrayRolling.reduce()` kmsquire 223250 * ~~When reducing over a rolling window, `DataArrayRolling.reduce()` only returns values where the complete rolling window is fully conatined within the base array; the remaining locations where the window overlaps the array border are filled with `NaN`~~ * ~~However, in some situations, it is desirable to obtain values from the reducer function for all locations. This commit adds a keyword argument, `include_border`, to `DataArrayRolling.reduce()` and `DataSetRolling.reduce()` to allow this behavior.~~ ~~If this seems okay, I have some questions:~~ ~~1. Should this behavior be added to specific reducing functions (sum, mean, etc.)? As an alternative, all of the specialized functions for `DataArrayRolling` have corresponding numpy `nan*` functions, so support could be added for those. (The current PR is still useful for other reducing functions, which is my use case.)~~ ~~2. I don't use dask, so I don't know if this is needed/desired for the dask versions of these functions.~~ As @mathause pointed out, the functionality desired already exists by passing `min_periods=1` to `DataArray.rolling()`. So this MR has been updated to simply include some examples for `DataArrayRolling.reduce()` 2019-05-16T16:17:00Z 2019-06-04T14:47:09Z 2019-06-04T14:47:08Z 2019-06-04T14:47:08Z f84c514175f4858caf7dbf2afd2d8fe551208fa0     0 03890602c837418cb6fbcdf56c0f5de20dbba61c 5b3a41d5761edb2240df5a4475196e4939b33719 CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/2968  
690153645 MDExOlB1bGxSZXF1ZXN0NjkwMTUzNjQ1 5603 open 0 Allow no padding for rolling windows kmsquire 223250 <!-- Feel free to remove check-list items aren't relevant to your change --> - [x] Fixes #4743 - [x] Tests added - [x] Passes `pre-commit run --all-files` - [ ] User visible changes (including notable bug fixes) are documented in `whats-new.rst` Related to #2007. 2021-07-14T19:04:55Z 2024-03-21T02:42:46Z     53a96479cfbb0b1f1a60648e5a54d475097f92c6     0 072e87ccf85b89d0a147191f6546da8488dd220f 84dc96136ce04d953746d9e251753ba61d0779f0 CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/5603  

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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]);
Powered by Datasette · Queries took 14.162ms · About: xarray-datasette