Skip to content

Commit 2cbf8b9

Browse files
committed
Use underscore
1 parent fadb71c commit 2cbf8b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/plotting/_misc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -633,7 +633,7 @@ def lag_plot(series: Series, lag: int = 1, ax: Axes | None = None, **kwds) -> Ax
633633
.. plot::
634634
:context: close-figs
635635
636-
>>> pd.plotting.lag_plot(s, lag=1)
636+
>>> _ = pd.plotting.lag_plot(s, lag=1)
637637
"""
638638
plot_backend = _get_plot_backend("matplotlib")
639639
return plot_backend.lag_plot(series=series, lag=lag, ax=ax, **kwds)

0 commit comments

Comments
 (0)