Show plot until next update #131
-
Hi! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
If you're calling the drawing functions in a loop, just remove |
Beta Was this translation helpful? Give feedback.
-
Thanks! I guess, I want some sort of a "live plotting". My application is plotting beliefs and I want to visualize how these beliefs change in an online inference setting. If I |
Beta Was this translation helpful? Give feedback.
Thanks! I guess, I want some sort of a "live plotting". My application is plotting beliefs and I want to visualize how these beliefs change in an online inference setting.
If I
show()
only once at the end, it basically just shows the final belief. However, if Ishow()
each time, it waits for the user to press Enter. One thing I can do is do all the plotting in a separate thread, but then I'd still need to somehow bypass the "press Enter to continue" step. Any thoughts?