We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
numfocus
Learn more about funding links in repositories.
Report abuse
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
DataTree
There are still missing methods on DataTree and I did not find an issue tracking those.
e.g.:
(I am sure there are more but these are the ones I need.)
No response
We could use map_over_datasets(xr.Dataset.transpose, dt) but (1) that's annoying, (2) obj.transpose() would work for DataTree and Dataset etc.
map_over_datasets(xr.Dataset.transpose, dt)
obj.transpose()
Dataset
The text was updated successfully, but these errors were encountered:
Here is a more complete list (code-generated):
I think these are not available because they where defined directly on Dataset, while DataTree uses mixins to define reductions and binary ops...
import xarray as xr dt_methods = set(m for m in dir(xr.DataTree) if not m.startswith("_")) ds_methods = set(m for m in dir(xr.Dataset) if not m.startswith("_")) for m in sorted(ds_methods - dt_methods): print(f"- [ ] {m}")
Sorry, something went wrong.
No branches or pull requests
Is your feature request related to a problem?
There are still missing methods on
DataTree
and I did not find an issue tracking those.e.g.:
(I am sure there are more but these are the ones I need.)
Describe the solution you'd like
No response
Describe alternatives you've considered
We could use
map_over_datasets(xr.Dataset.transpose, dt)
but (1) that's annoying, (2)obj.transpose()
would work forDataTree
andDataset
etc.Additional context
No response
The text was updated successfully, but these errors were encountered: