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
When I reduce the x axis of a Raster object, the direction of the Y axis is swapped.
Reducing the Y axis works fine:
%%opts Raster [colorbar=True] img = hv.Raster(np.rot90(np.meshgrid(*[np.arange(5)]*2)[1][::-1])) img+img.sample(y=2)+img.reduce(y=np.mean).to.curve('x','z')
While reducing the X axis fails:
%%opts Raster [colorbar=True] img = hv.Raster(np.meshgrid(*[np.arange(5)]*2)[1][::-1]) img+img.sample(x=2)+img.reduce(x=np.mean).to.curve('y','z')
The text was updated successfully, but these errors were encountered:
Fixed in #672. Closing.
Sorry, something went wrong.
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
No branches or pull requests
When I reduce the x axis of a Raster object, the direction of the Y axis is swapped.
Reducing the Y axis works fine:
While reducing the X axis fails:
The text was updated successfully, but these errors were encountered: