home / github

Menu
  • GraphQL API
  • Search all tables

pull_requests

Table actions
  • GraphQL API for pull_requests

2 rows where user = 29051639

✎ 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
533071862 MDExOlB1bGxSZXF1ZXN0NTMzMDcxODYy 4653 closed 0 corrected a minor spelling mistake AyrtonB 29051639 What it says on the tin, changed `xarrray.open_dataset` to `xarray.open_dataset`. The mistake was in documentation so no changes to any code have been made 2020-12-05T18:16:41Z 2020-12-05T19:18:10Z 2020-12-05T19:03:27Z 2020-12-05T19:03:26Z 8bef0694562f8a4c2f65c3dc0f29e2e189f3b04f     0 779385a3f613d49f6383fe70eac5d205de959b77 f4783359f8d3bcbaaca1d9e9b0946b9fa216dd0b CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/4653  
533752412 MDExOlB1bGxSZXF1ZXN0NTMzNzUyNDEy 4659 open 0 xr.DataArray.from_dask_dataframe feature AyrtonB 29051639 This feature allows users to convert Dask DataFrames (of a single type) into a DataArray that uses a Dask array. This solves a gap in the Python ecosystem around saving Dask DataFrames to Zarr which is currently not possible without loading the full dataset into memory. This feature specifically handles the case where a DataFrame is of a single type, a xr.Dataset.from_dask_dataframe could be developed in future to handle the multi-type case. - [x] Closes #4650, closes #3929 - [x] Tests added - [x] Passes `isort . && black . && mypy . && flake8` - [x] User visible changes (including notable bug fixes) are documented in `whats-new.rst` - [x] New functions/methods are listed in `api.rst` 2020-12-07T15:22:52Z 2023-06-08T20:25:58Z     43dd10bec54d6564e35429c5e533ff603cc89641     0 e73de0eb1af0096c57b764bb6b64ad395f49dd52 d1e4164f3961d7bbb3eb79037e96cae14f7182f8 CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/4659  

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