We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I'd like to use ticks without labels. At the moment that is not possible:
>>> DataArray([1, 2], [(None, ('a', 'b'))]) <snip> ValueError: ticks only supported when Axis has a label
Well, it is possible:
>>> dar = DataArray([1, 2], [('tmp', ('a', 'b'))]) >>> dar.set_label(0, None) >>> dar.axes (Axis(label=None, index=0, ticks=('a', 'b')),)
The text was updated successfully, but these errors were encountered:
I am not sure why this throws an exception, does anyone? The tests all pass if we remove this restriction.
Sorry, something went wrong.
No branches or pull requests
I'd like to use ticks without labels. At the moment that is not possible:
Well, it is possible:
The text was updated successfully, but these errors were encountered: