home / github

Menu
  • Search all tables
  • GraphQL API

pull_requests

Table actions
  • GraphQL API for pull_requests

5 rows where user = 8833517

✎ View and edit SQL

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
382655897 MDExOlB1bGxSZXF1ZXN0MzgyNjU1ODk3 3821 closed 0 removed mention that 'dims' are inferred from 'coords'-dict when omit… sjvrijn 8833517 …ted in DataArray - [x] Closes #3820 2020-03-02T23:09:33Z 2020-03-03T00:38:05Z 2020-03-03T00:38:05Z 2020-03-03T00:38:05Z a333a5c73db078fa34324475f9d74d71d74d4659     0 6627ce4b7030267deb5c38e289e88de0619fa390 1c5e1cd022a0ff91275c50a50d1c6f88a7abff7d CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/3821  
454785390 MDExOlB1bGxSZXF1ZXN0NDU0Nzg1Mzkw 4245 closed 0 Fix DataArray.copy documentation: remove confusing mention of 'dataset' (Gh3606) sjvrijn 8833517 - [x] Closes #3606 - [x] User visible changes (including notable bug fixes) are documented in `whats-new.rst` 2020-07-21T22:48:26Z 2020-08-05T09:40:49Z 2020-07-24T19:20:45Z 2020-07-24T19:20:45Z 98d2829be50318dbbcced6451627be3788db4504     0 0ae1e67912018caea0e864e60dd1fde1cf590eef 6c1203afbbeb25251705a3bf19c7a7bbe5c0bbf4 CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/4245  
455728734 MDExOlB1bGxSZXF1ZXN0NDU1NzI4NzM0 4258 closed 0 Removed skipna argument from count, any, all [GH755] sjvrijn 8833517 - [x] Closes #755 - [x] User visible changes (including notable bug fixes) are documented in `whats-new.rst` Could not confirm in the web-based documentation (see #4257), but manually confirmed to work: ```python >>> import xarray as xr >>> help(xr.DataArray.count) Help on function count in module xarray.core.common: count(self, dim=None, axis=None, **kwargs) Reduce this DataArray's data by applying `count` along some dimension(s). Parameters ---------- dim : str or sequence of str, optional Dimension(s) over which to apply `count`. axis : int or sequence of int, optional Axis(es) over which to apply `count`. Only one of the 'dim' and 'axis' arguments can be supplied. If neither are supplied, then `count` is calculated over axes. keep_attrs : bool, optional If True, the attributes (`attrs`) will be copied from the original object to the new one. If False (default), the new object will be returned without attributes. **kwargs : dict Additional keyword arguments passed on to the appropriate array function for calculating `count` on this object's data. Returns ------- reduced : DataArray New DataArray object with `count` applied to its data and the indicated dimension(s) removed. ``` 2020-07-23T13:59:27Z 2020-07-24T17:38:23Z 2020-07-24T16:09:26Z 2020-07-24T16:09:25Z 6c1203afbbeb25251705a3bf19c7a7bbe5c0bbf4     0 ae5291567fb95f137d32033708fc98b50a7b01fc 0b706a428208305372553e354d08086ab23da3df CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/4258  
465075983 MDExOlB1bGxSZXF1ZXN0NDY1MDc1OTgz 4327 closed 0 DOC: fix typo argmin -> argmax in DataArray.argmax docstring sjvrijn 8833517 Just a small typo 2020-08-08T21:23:57Z 2020-08-08T21:56:17Z 2020-08-08T21:56:17Z 2020-08-08T21:56:17Z f02ca53714de06a4fc035f9dbc75b55be6fa3297     0 be2601383b18c306f91f47b1eb9b25ce8c82265c 6e9edff57e22c02aa45163ca00732259eb53c0a7 CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/4327  
677400644 MDExOlB1bGxSZXF1ZXN0Njc3NDAwNjQ0 5528 closed 0 Undeprecate dict argument for coords in DataArray (#5527) sjvrijn 8833517 Discussed this in #3820, would have been possible a year ago... Better late than never 😅 - [x] Closes #5527 - [x] Tests added - [x] Passes `pre-commit run --all-files` - [x] User visible changes (including notable bug fixes) are documented in `whats-new.rst` 2021-06-24T20:02:04Z 2023-02-17T22:40:35Z 2021-07-04T16:21:52Z 2021-07-04T16:21:52Z 80905135d1c9dea93c6263c40e4c903536193f7c     0 5d77f5774fe1530d2ea4b87e8274db9fd0a3c2c0 5ccb06951cecd59b890c1457e36ee3c2030a67aa CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/5528  

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 19.209ms · About: xarray-datasette