-
-
Notifications
You must be signed in to change notification settings - Fork 403
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
Support (or warn) when using multi_y
with datashader
#5823
Comments
Assigning this to myself for 1.17.0 as this should be simple to implement. Also, I am giving myself a reminder to also update the docs to mention that |
In PR #5826 |
I believe the error |
Ok, yes, that works. How will users know to do that? Shouldn't that have been pinned in the release? |
@philippjfr I know the jupyter-client issue is a painful and general one affecting a lot of people across the ecosystem (and not just for HoloViz projects). Did we come to any conclusions about whether there is anything we can do about it? I'm assuming the plan wasn't to simply pin jupyter-client at the holoviews level at least! |
Classic notebook has been effectively broken since February for any operation that transfers a lot of data. This happened due to the removal of |
As noted above if you datashade each line separately this actually already works: c1 = hv.Curve(np.random.randn(10000).cumsum(), vdims='A')
c2 = hv.Curve(np.random.randn(10000).cumsum(), vdims='B')
(rasterize(c1, aggregator='any', line_width=1) *
rasterize(c2, aggregator='any', line_width=1).opts(cmap=['red'])).opts(
multi_y=True, responsive=True, min_height=300) The problem is that when datashading an Overlay the |
Agreed, this is probably the easiest and most sane approach. |
multi_y
with datashadermulti_y
with datashader
Given that the new
multi_y
option implies multiple data spaces (in y at least) which isn't supported, it might be worth having a warning saying that the datashader support is not ready (instead of warning about the streams which the user may not realize is a general issue relating to the datashader support)The text was updated successfully, but these errors were encountered: