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
dm1 = hv.DynamicMap(lambda x, y: hv.Curve(np.random.rand(10)), kdims=[hv.Dimension('x', values=[0, 1]), hv.Dimension('y', values=[0, 1])]) dm2 = hv.DynamicMap(lambda x, y: hv.Curve(np.random.rand(10)), kdims=[hv.Dimension('x', values=[1, 2]), hv.Dimension('y', values=[0, 1])]) dm2 * dm1
compare with dm1 * dm2
dm1 * dm2
Plots are being generated for x values, even though they don't exist.
x
The text was updated successfully, but these errors were encountered:
To make it a bit more clear, I would expect the same result as:
hv.HoloMap({i: hv.Curve(np.random.rand(10)) for i in [0, 1]}) * hv.HoloMap({i: hv.Curve(np.random.rand(10)) for i in [1, 2]})
Sorry, something went wrong.
Thanks for explaining it. The behavior you describe is what I would expect as well.
I've assigned myself to this issue. Shouldn't be too hard to fix as I just need to raise an appropriate KeyError in the right place.
KeyError
This has now been fixed, please reopen if you encounter any issues.
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.
jlstevens
No branches or pull requests
compare with
dm1 * dm2
Plots are being generated for
x
values, even though they don't exist.The text was updated successfully, but these errors were encountered: