home / github

Menu
  • Search all tables
  • GraphQL API

commits

Table actions
  • GraphQL API for commits

3 rows where author = 1386642 sorted by author_date descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: raw_committer, committer, author_date (date), committer_date (date)

repo 1

  • xarray 3

author 1

  • nbren12 · 3 ✖
sha message author_date ▲ committer_date raw_author raw_committer repo author committer
bc5c79e5f79d8d7fbb1ed593a5413028a1bdfb36 Improve typehints of xr.Dataset.__getitem__ (#4144) * Improve typehints of xr.Dataset.__getitem__ Resolves #4125 * Add overload for Mapping behavior Sadly this is not working with my version of mypy. See https://github.com/python/mypy/issues/7328 * Overload only Hashable inputs Given mypy's use of overloads, I think this is all we can do. If the argument is not Hashable, then return the Union type as before. * Lint * Quote the DataArray to avoid error in py3.6 * Code review Co-authored-by: crusaderky <crusaderky@gmail.com> 2020-06-15T11:25:52Z 2020-06-15T11:25:52Z Noah D Brenowitz cac54aaf99307ae2c1b0a9d378f9016e48d1796c GitHub cd792325681cbad9f663f2879d8b69f1edbb678f xarray 13221727 nbren12 1386642 web-flow 19864447
9c0fb6c6ca4a4da52ba5b0c2b17c12573a66def0 Add methods for combining variables of differing dimensionality (#1597) * Add stack_cat and unstack_cat methods This partially resolves #1317. Change names of methods stack_cat -> to_stacked_array unstack_cat -> to_unstacked_dataset Test that the dtype of the stacked dimensions is preserved This is not passing at the moment because concatenating None with a dimension that has values upcasts the combined dtype to object Fix dtypes of stacked dimensions This commit ensures that the dtypes of the stacked coordinate match the input dimensions. Use new index variable rather than patching the old one I didn't like the inplace modification of a private member. Handle variable_dim correctly I also fixed 1. f-string formatting issue 2. Use an OrderedDict as @jhamman recommends Add documentation to api.rst and reshaping.rst I also added appropriate See Also sections to the docstrings for to_stacked_array and to_unstacked_dataset. Add changes to whats-new Fixing style errors. Split up lengthy test Remove "physical variable" from docs This is in response to Joe's "nit" * Fix to_stacked_array with new master An error arose when checking for the precence of a dimension in array. The code 'dim in data' no longer works. Replaced this with 'dim in data.dims' * Move entry in whats-new to most recent release * Fix code styling errors It needs to pass `pycodestyle xarray` * Improve docstring of to_stacked_array Added example and additional description. * Move "See Also" section to end of docstring * Doc and comment improvements. * Improve documented example @benbovy pointed out that the old example was confusing. * Add name argument to to_stacked_array and test * Allow level argument to be an int or str * Remove variable_dim argument of to_unstacked_array * Actually removed variable_dim * Change function signature of to_stacked_array Previously, this function was passed a list of dimensions which should be stacked toge… 2019-07-05T00:32:50Z 2019-07-05T00:32:50Z Noah D Brenowitz cac54aaf99307ae2c1b0a9d378f9016e48d1796c Stephan Hoyer f10b21bed2846b879806f87039b77245b18e7671 xarray 13221727 nbren12 1386642 shoyer 1217238
be27319bcf6a754f1655918fac45c1cd2cfa0cec Warn when pcolormesh coordinate is not sorted (#1885) Raise when pcolormesh coordinate is not sorted 2018-02-18T19:06:30Z 2018-02-18T19:06:30Z Noah D Brenowitz cac54aaf99307ae2c1b0a9d378f9016e48d1796c Stephan Hoyer f10b21bed2846b879806f87039b77245b18e7671 xarray 13221727 nbren12 1386642 shoyer 1217238

Advanced export

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

CSV options:

CREATE TABLE [commits] (
   [sha] TEXT PRIMARY KEY,
   [message] TEXT,
   [author_date] TEXT,
   [committer_date] TEXT,
   [raw_author] TEXT REFERENCES [raw_authors]([id]),
   [raw_committer] TEXT REFERENCES [raw_authors]([id]),
   [repo] INTEGER REFERENCES [repos]([id]),
   [author] INTEGER REFERENCES [users]([id]),
   [committer] INTEGER REFERENCES [users]([id])
);
CREATE INDEX [idx_commits_committer]
    ON [commits] ([committer]);
CREATE INDEX [idx_commits_author]
    ON [commits] ([author]);
CREATE INDEX [idx_commits_repo]
    ON [commits] ([repo]);
CREATE INDEX [idx_commits_raw_committer]
    ON [commits] ([raw_committer]);
CREATE INDEX [idx_commits_raw_author]
    ON [commits] ([raw_author]);
Powered by Datasette · Queries took 15.195ms · About: xarray-datasette