Skip to content

Commit

Permalink
add examples [skip-ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
keewis committed Feb 5, 2021
1 parent 88fe863 commit 0daf42d
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions xarray/core/computation.py
Original file line number Diff line number Diff line change
Expand Up @@ -1170,6 +1170,49 @@ def apply_to_dataset(func, obj, *args, **kwargs):
Dataset.map
Dataset.pipe
DataArray.pipe
Examples
--------
>>> def f(ds):
... return xr.Dataset(
... {
... name: var * var.attrs.get("scale", 1)
... for name, var in ds.data_vars.items()
... },
... coords=ds.coords,
... attrs=ds.attrs,
... )
...
>>> ds = xr.Dataset(
... {"a": ("x", [3, 4], {"scale": 0.5}), "b": ("x", [-1, 1], {"scale": 1.5})},
... coords={"x": [0, 1]},
... attrs={"attr": "value"},
... )
>>> ds
<xarray.Dataset>
Dimensions: (x: 2)
Coordinates:
* x (x) int64 0 1
Data variables:
a (x) int64 3 4
b (x) int64 -1 1
Attributes:
attr: value
>>> xr.apply_to_dataset(f, ds)
<xarray.Dataset>
Dimensions: (x: 2)
Coordinates:
* x (x) int64 0 1
Data variables:
a (x) float64 1.5 2.0
b (x) float64 -1.5 1.5
Attributes:
attr: value
>>> xr.apply_to_dataset(f, ds.a)
<xarray.DataArray 'a' (x: 2)>
array([1.5, 2. ])
Coordinates:
* x (x) int64 0 1
"""
from .dataarray import DataArray

Expand Down

0 comments on commit 0daf42d

Please sign in to comment.