We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af428c9 commit ddc0256Copy full SHA for ddc0256
doc/source/user_guide/10min.rst
@@ -730,7 +730,7 @@ The :meth:`~plt.close` method is used to `close <https://matplotlib.org/3.1.1/ap
730
ts = ts.cumsum()
731
732
@savefig series_plot_basic.png
733
- ts.plot()
+ ts.plot();
734
735
On a DataFrame, the :meth:`~DataFrame.plot` method is a convenience to plot all
736
of the columns with labels:
@@ -743,10 +743,10 @@ of the columns with labels:
743
744
df = df.cumsum()
745
746
- plt.figure()
747
- df.plot()
+ plt.figure();
+ df.plot();
748
@savefig frame_plot_basic.png
749
- plt.legend(loc='best')
+ plt.legend(loc='best');
750
751
Getting data in/out
752
-------------------
0 commit comments