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
I tried running the example in Binder and locally and both versions had the same (lengthy) compilation error. I cut out the parts of the message that just referenced elements in conda, so here is the shortened one:
I assume that 11ecd7a fixes this issue, which was due to a matplotlib API change. The new handling might not be the most elegant, but we then can still use fill_between. New handling is: we give each fill_between one and the same label, and this can be found in a collection list, and once we found it, we can remove it. Currently, jupyter notebook seems to have problems with tornado, I had some flickering issues therefore in the animations. Downgrading to tornado 6.1 solved this.
I tried running the example in Binder and locally and both versions had the same (lengthy) compilation error. I cut out the parts of the message that just referenced elements in conda, so here is the shortened one:
Changing line 51 from
ax[0].collections.clear()
toax[0].clear()
fixed the compilation error, however I don't know if the result is the intended one.https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.subplots.html - the documentation for the command used to create the subplot of which the collection was tried to be deleted.
Thank you so much for providing this platform, it's much appreciated!
The text was updated successfully, but these errors were encountered: