-
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
plt.pause uses removed start_event_loop_default
API
#79
Comments
I'm not sure sleep works for me because in my case I want to pause for matplotlib event handling. In my case I have code running in a loop that needs to periodically update the plot and get mouse events from the plot. Is this a problem in jupyter-matplotlib or in matplotlib in general? |
This is an issue trying to integrate multiple event loops (see matplotlib/matplotlib#4779 for very long discussion (I really need to finish that PR)).
|
@robtovey Hi,I have the same problem as you ,did you have some better solution? |
Hi @xilunaJumma, I'm afraid not. If I want to use dynamic plotting properly then I normally make a video but then I use the Agg backend anyway. Unfortunately I haven't found a particularly elegant way to replicate a 'slideshow' effect inside jupyter without having to change the backend. |
Same problem here. A practical solution, to run an animation using the plt.pause() methodology, could be:
It will open a pop-up window showing the animation. |
Hello All, Is there any solution to this issue? I encountered this problem when I was implementing a GUI embedded in a jupyter notebook. Here, a more detailed explanation can be found. Thanks for your help. |
It seems that the nbAgg backend just doesn't implement these methods: https://github.com/matplotlib/matplotlib/blob/bb71b00ac1a16c41054c2a5907d04f65da3e8565/lib/matplotlib/backends/backend_nbagg.py#L144 Inspired by that I found that just commenting these lines out: ipympl/ipympl/backend_nbagg.py Lines 254 to 258 in 8de1373
got rid of the error. The result is that no python code runs until the end of the pause period. Happily the browser event loop keeps running so that seems to satisfy both conditions of:
Though I can't say I fully understand what the expected behavior of plt.pause is, so this very well may have broken something else. |
Removing those methods is an acceptable fix. It will not fallback to the implementation in |
Has there been any effort to create a more permanent fix? I am currently having this issue with my jupyter notebooks. |
@Michael-Equi I think my proposed solution should work pretty well as a permanent fix. The issue is that it has remained as "proposed" and never made it all the way to implemented |
fixes: matplotlib#79. A potential ipympl specific improvement was mentioned in matplotlib#79 (comment)
As the title suggests, attempting to pause through matplotlib currently raises an error. The minimum working example is:
This raises an attribute error trying to call FigureCanvasBase.start_event_loop_default. A little googling suggests this function has been removed since version 3.0.
Taking inspiration from #17, I guess the simplest get around is using time.sleep but is there a better solution?
Thanks for your help.
The text was updated successfully, but these errors were encountered: