Skip to content

Commit a83389c

Browse files
partevluckyvs1
authored andcommitted
DOC: suppress debug messages when displaying plots (pandas-dev#38770)
1 parent 7e21d3a commit a83389c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

doc/source/user_guide/10min.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -730,7 +730,7 @@ The :meth:`~plt.close` method is used to `close <https://matplotlib.org/3.1.1/ap
730730
ts = ts.cumsum()
731731
732732
@savefig series_plot_basic.png
733-
ts.plot()
733+
ts.plot();
734734
735735
On a DataFrame, the :meth:`~DataFrame.plot` method is a convenience to plot all
736736
of the columns with labels:
@@ -743,10 +743,10 @@ of the columns with labels:
743743
744744
df = df.cumsum()
745745
746-
plt.figure()
747-
df.plot()
746+
plt.figure();
747+
df.plot();
748748
@savefig frame_plot_basic.png
749-
plt.legend(loc='best')
749+
plt.legend(loc='best');
750750
751751
Getting data in/out
752752
-------------------

0 commit comments

Comments
 (0)