Skip to content

DOC: suppress debug messages when displaying plots #38770

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 29, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions doc/source/user_guide/10min.rst
Original file line number Diff line number Diff line change
Expand Up @@ -730,7 +730,7 @@ The :meth:`~plt.close` method is used to `close <https://matplotlib.org/3.1.1/ap
ts = ts.cumsum()

@savefig series_plot_basic.png
ts.plot()
ts.plot();

On a DataFrame, the :meth:`~DataFrame.plot` method is a convenience to plot all
of the columns with labels:
Expand All @@ -743,10 +743,10 @@ of the columns with labels:

df = df.cumsum()

plt.figure()
df.plot()
plt.figure();
df.plot();
@savefig frame_plot_basic.png
plt.legend(loc='best')
plt.legend(loc='best');

Getting data in/out
-------------------
Expand Down