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