-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
display_width doesn't apply to dask-backed arrays #2528
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
Comments
xarray/xarray/core/formatting.py Lines 401 to 411 in 6d55f99
A good place to start might be dropping |
In order to maintain a list of currently relevant issues, we mark issues as stale after a period of inactivity If this issue remains relevant, please comment here or remove the |
As of #3211, we no longer include the redundant So I'm going to close this, though of course further improvements to the short repr would be welcome! |
The representation of dask-backed arrays in xarray's
__repr__
methods results in very long lines which often overflow the desired line width. Unfortunately, this can't be controlled or overridden withxr.set_options(display_width=...)
.Code Sample, a copy-pastable example if possible
Problem description
[this should explain why the current behavior is a problem and why the expected output is a better solution.]
Expected Output
We need to decide how to abbreviate dask arrays with something more concise. I'm not sure the best way to do this. Maybe
The text was updated successfully, but these errors were encountered: