Exporting @interact
Is there a simple solution to export trully a @interact
cell ?
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, StaticInteract
no 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.
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2020-04-07 09:00:29 +0100
Seen: 565 times
Last updated: Apr 07 '20
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