You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks Adam. The use of plt.close() throughout is vestigial and habitual from my usual use of %matplotlib widget outside of training notebooks. Unfortunately necessary for my usual use cases until matplotlib/ipympl#4 gets resolved! All fixed up now.
You shouldn't start a new plot by using
plt.close()
If anything you can use
plt.show()
at the end of a plot which avoids showing the output line (shown in yellow below):Please remove all instances of
plt.close()
in the documentation.The text was updated successfully, but these errors were encountered: