Skip to content

Remove skipna=False from the Xarray examples #706

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

Merged
merged 2 commits into from
Mar 17, 2025
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions cubed/array/overlap.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ def selection_function(out_key):
boundary=boundary,
numblocks=x.numblocks,
has_block_id_kw=has_block_id_kw,
**kwargs,
)


Expand Down
2 changes: 1 addition & 1 deletion docs/examples/xarray.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ This will run a computation that loads the input data and writes it out to a Zar
We can also use Xarray's API to run computations on the dataset using Cubed. Here we find the mean air temperature over time, for each location:

```{code-cell} ipython3
mean = ds.air.mean("time", skipna=False)
mean = ds.air.mean("time")
mean
```

Expand Down
1,833 changes: 668 additions & 1,165 deletions examples/pangeo-1-vorticity.ipynb

Large diffs are not rendered by default.

832 changes: 299 additions & 533 deletions examples/pangeo-2-quadratic-means.ipynb

Large diffs are not rendered by default.

1,569 changes: 796 additions & 773 deletions examples/pangeo-3-tem.ipynb

Large diffs are not rendered by default.

Loading
Loading