-
-
Notifications
You must be signed in to change notification settings - Fork 404
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
Feature request: converting HoloMap to DynamicMap #882
Comments
You should just be able to create a DynamicMap from a HoloMap using: hv.core.operation.DynamicFunction(hmap) However is there any reason not to simply use: %output widgets='live' Edit: Thinking about it, |
This is very slow and takes a few minutes before I see anything.
That is great! I'll try it out 😄 |
Thanks for the bug report, should be an easy fix. |
This function will be moved and renamed to |
|
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. |
I use
DynamicMap
s to show a lot of data, sometimes ~1000 plots with 7 variables.I love how easy it is to compose a
HoloMap
, but it's not useful because rendering it takes a very very long time.The
DynamicMap
offers a solution to this problem, but it's more cumbersome to write.Putting a 1000 plots in a
HoloMap
is still quite cheap (just a couple of seconds), therefore I would like if I could just applyhv.DynamicMap
on ahv.HoloMap
to get the ease of use of aHoloMap
, but at the speed of aDynamicMap
.The text was updated successfully, but these errors were encountered: