-
Notifications
You must be signed in to change notification settings - Fork 6
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
Give the option to show the figure after plot() #36
Comments
We have the boolean option |
Using the example in the Jupyter notebook doing the following in the make plot section:
will not show the extra point because plt.show() has been called prevously |
Currently, because plt.show() is called by default in plot() the figure is created there and this prevents the user to add more data in the plots after function returns.
It would be usefull to select plt.show() with a key.
The text was updated successfully, but these errors were encountered: