-
Notifications
You must be signed in to change notification settings - Fork 225
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
ipympl not working nicely with interact #36
Comments
On a second look, this seems to happen because this small example (and nearly all in the |
My method for this is to generate the figure and axis objects outside interact, and then clearing the axes and redrawing the plot. It is slightly more convenient then generating the line objects first and then updating them. The interactive mode has to be activated for this to work (plt.ion()), in the previous iteration (%matplotlib notebook), it seems the interactive mode was enabled by default. Maybe the example notebook could contain the canonical method for plotting with interact?
|
Great idea to include an example. The interact decorator is really designed for output that is regenerated every time controls change, so it's awkward to use it with ipympl. ipympl works better if it is shown once and then updated when controls change, which is a different approach. I think it would be great to have an easier way to set up a set of controls and trigger a side effect like updating an ipympl plot, sort of like |
Not sure if this is related, but I recently tried the Lorentz-attactor example from here: This works fine in Jupyter notebook (i.e. shows both the slider widgets and the plot). However the slider widgets do not show up in Jupyter lab (this happens both with Is there a recommend fix for this issue? |
@RemiLehe, this issue with Jupyterlab should be fixed if you update the You probably have a version from before the beta? |
Thanks for the prompt answer! Thanks for your help! |
Edit: Confusion, see below. I tried the original code without the
And it almost works perfectly: first the plot is not shown, but the first update shows it and from there it's OK. I'm using latest JupyterLab and npm extensions. In general, I feel that it's difficult to know when do we need Edit: My confusion is only related to |
@Juanlu001 I do not get a plot without invoking the magic commands (%matplotlib ipympl / inline). Are you certain that you get this, especially if you restart the kernel first? |
@thomasaarholt you're right, I double checked and one still needs either a |
I implemented just this in https://github.com/ianhi/mpl-interactions. It has a function I had also proposed incorporating that function into ipympl in #251 but currently have settled on keeping in a separate library so I can more easily change(accidentally break...) things. It's on pypi as well now for convenience. p.s. I feel deeply weird posting the above as it feels somewhat self promotional. But I'm trying to get over that feeling so that I can effectively share the solution I found to the problem we are all suffering. In that spirit does it it make sense to include an example using |
Trying to follow some simple examples of Jupyter widgets with matplotlib, but I'm having issues when using the
ipympl
backend. The first update to a plot produces a second plot (overplotted), and the second update just erases the figure window altogether. This does not happen when usinginline
.Here's some simple code to reproduce the issue:
If I use
inline
, this will update the line plot. Withipympl
it fails.I am using ipympl 0.1.0 from Anaconda, together will other packages:
The text was updated successfully, but these errors were encountered: