Exporting @interact
Is there a simple solution to export trully a @interact cell ?
There have been some proof-of-concept, see for example https://jakevdp.github.io/blog/2013/1...
Unfortunately, StaticInteractno longer exists, and the feature-request is still open : https://github.com/jupyter-widgets/ip...
In any case, the interact should not have too much states, since all of them have to be pre-computed and exported as an image, so while this should work with sliders and buttons, do not expect an interact where the user can enter her own values.
Asked: 2020-04-07 09:00:29 +0100
Seen: 1,023 times
Last updated: Apr 07 '20
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.
It should be doable, as long as there is not much states in the interact, since, by removing the computational engine, we will have to store each result for each state. So, could you please procide an example of a typical interact you want to export ?
I will show an exemple very soon