-
Notifications
You must be signed in to change notification settings - Fork 8
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 operations to multiscale spatial image #103
Conversation
|
||
```python | ||
multiscale = multiscale.msi.transpose("y", "x", "c") | ||
``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lovely
README.md
Outdated
``` | ||
|
||
Other methods implemented this way are `reindex`, equivalent to the | ||
`xr.DataArray` reindex method and `assign_coords`, equivalent to `xr.Dataset` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we link to the Xarray reindex
and the assign_coords
documentation?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
jup, done
Co-authored-by: Matt McCormick <matt@mmmccormick.com>
Co-authored-by: Matt McCormick <matt@mmmccormick.com>
Co-authored-by: Matt McCormick <matt@mmmccormick.com>
With the latest xarray some of the operations like transpose were not available anymore on the
DataTree
level yet they are common operations within imaging.This PR adds a couple of these operations and makes them available through the
msi
accessor.