@@ -2156,10 +2156,18 @@ def hist_frame(data, column=None, by=None, grid=True, xlabelsize=None,
2156
2156
The size of the figure to create in inches by default
2157
2157
layout : tuple, optional
2158
2158
Tuple of (rows, columns) for the layout of the histograms
2159
- bins : integer, default 10
2160
- Number of histogram bins to be used
2159
+ bins : integer or sequence, default 10
2160
+ Number of histogram bins to be used. If an integer is given, bins + 1
2161
+ bin edges are calculated and returned. If bins is a sequence, gives
2162
+ bin edges, including left edge of first bin and right edge of last
2163
+ bin. In this case, bins is returned unmodified.
2161
2164
`**kwds` : other plotting keyword arguments
2162
2165
To be passed to hist function
2166
+
2167
+ See Also
2168
+ --------
2169
+ matplotlib.axes.Axes.hist : Plot a histogram using matplotlib.
2170
+
2163
2171
"""
2164
2172
_converter ._WARN = False
2165
2173
if by is not None :
@@ -2219,14 +2227,19 @@ def hist_series(self, by=None, ax=None, grid=True, xlabelsize=None,
2219
2227
rotation of y axis labels
2220
2228
figsize : tuple, default None
2221
2229
figure size in inches by default
2230
+ bins : integer or sequence, default 10
2231
+ Number of histogram bins to be used. If an integer is given, bins + 1
2232
+ bin edges are calculated and returned. If bins is a sequence, gives
2233
+ bin edges, including left edge of first bin and right edge of last
2234
+ bin. In this case, bins is returned unmodified.
2222
2235
bins: integer, default 10
2223
2236
Number of histogram bins to be used
2224
2237
`**kwds` : keywords
2225
2238
To be passed to the actual plotting function
2226
2239
2227
- Notes
2228
- -----
2229
- See matplotlib documentation online for more on this
2240
+ See Also
2241
+ --------
2242
+ matplotlib.axes.Axes.hist : Plot a histogram using matplotlib.
2230
2243
2231
2244
"""
2232
2245
import matplotlib .pyplot as plt
0 commit comments