Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add drop_sel, drop_vars, map to api.rst #3506

Merged
merged 1 commit into from
Nov 9, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions doc/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ Dataset contents
Dataset.rename_dims
Dataset.swap_dims
Dataset.expand_dims
Dataset.drop
Dataset.drop_vars
Dataset.drop_dims
Dataset.set_coords
Dataset.reset_coords
Expand All @@ -118,6 +118,7 @@ Indexing
Dataset.loc
Dataset.isel
Dataset.sel
Dataset.drop_sel
Dataset.head
Dataset.tail
Dataset.thin
Expand Down Expand Up @@ -154,7 +155,7 @@ Computation
.. autosummary::
:toctree: generated/

Dataset.apply
Dataset.map
Dataset.reduce
Dataset.groupby
Dataset.groupby_bins
Expand Down Expand Up @@ -263,7 +264,7 @@ DataArray contents
DataArray.rename
DataArray.swap_dims
DataArray.expand_dims
DataArray.drop
DataArray.drop_vars
DataArray.reset_coords
DataArray.copy

Expand All @@ -283,6 +284,7 @@ Indexing
DataArray.loc
DataArray.isel
DataArray.sel
DataArray.drop_sel
DataArray.head
DataArray.tail
DataArray.thin
Expand Down Expand Up @@ -542,10 +544,10 @@ GroupBy objects
:toctree: generated/

core.groupby.DataArrayGroupBy
core.groupby.DataArrayGroupBy.apply
core.groupby.DataArrayGroupBy.map
core.groupby.DataArrayGroupBy.reduce
core.groupby.DatasetGroupBy
core.groupby.DatasetGroupBy.apply
core.groupby.DatasetGroupBy.map
core.groupby.DatasetGroupBy.reduce

Rolling objects
Expand All @@ -566,7 +568,7 @@ Resample objects
================

Resample objects also implement the GroupBy interface
(methods like ``apply()``, ``reduce()``, ``mean()``, ``sum()``, etc.).
(methods like ``map()``, ``reduce()``, ``mean()``, ``sum()``, etc.).

.. autosummary::
:toctree: generated/
Expand Down