From 3883d0738060704cb08f5ebc10ff27f06f43beed Mon Sep 17 00:00:00 2001 From: manlattan Date: Thu, 18 Jan 2024 18:58:03 +0530 Subject: [PATCH] DOC: Remove references to AxesSubPlot #56876 --- pandas/plotting/_core.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pandas/plotting/_core.py b/pandas/plotting/_core.py index 96609fdc1671b..9f1d5387ffdee 100644 --- a/pandas/plotting/_core.py +++ b/pandas/plotting/_core.py @@ -98,7 +98,7 @@ def hist_series( Returns ------- - matplotlib.AxesSubplot + matplotlib.Axes A histogram plot. See Also @@ -227,7 +227,7 @@ def hist_frame( Returns ------- - matplotlib.AxesSubplot or numpy.ndarray of them + matplotlib.Axes or numpy.ndarray of them See Also -------- @@ -1374,7 +1374,7 @@ def hist( Returns ------- - class:`matplotlib.AxesSubplot` + class:`matplotlib.Axes` Return a histogram plot. See Also @@ -1794,7 +1794,7 @@ def hexbin( Returns ------- - matplotlib.AxesSubplot + matplotlib.Axes The matplotlib ``Axes`` on which the hexbin is plotted. See Also