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
and shows a chart which suggests that it is immediately rendered after calling plot function.
In configurations I've seen and worked on, plot function does not render any chart immediately. Instead it returns Tuple[matplotlib.figure.Figure, matplotlib.axes._axes.Axes]. This means that we need to take first element of returned tuple and call .show() on it, so this example should rather be:
Hi!
I noticed that documentation is actually missing few important notes.
For instance, first example contains such snippet:
and shows a chart which suggests that it is immediately rendered after calling
plot
function.In configurations I've seen and worked on,
plot
function does not render any chart immediately. Instead it returnsTuple[matplotlib.figure.Figure, matplotlib.axes._axes.Axes]
. This means that we need to take first element of returned tuple and call.show()
on it, so this example should rather be:I can create a push request with such corrections if you're open for contribution
The text was updated successfully, but these errors were encountered: