Skip to content
Prev Previous commit
Next Next commit
ENH: option to equalize histogram bin widths
  • Loading branch information
javadnoorb committed Aug 7, 2018
commit 2d003b4e90667d15a831975b5c96241191828cf3
3 changes: 3 additions & 0 deletions pandas/plotting/_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -2379,6 +2379,9 @@ def hist_frame(data, column=None, by=None, grid=True, xlabelsize=None,
bin edges are calculated and returned. If bins is a sequence, gives
bin edges, including left edge of first bin and right edge of last
bin. In this case, bins is returned unmodified.
equal_bins : boolean, default False
Uses the maximum and minimum of all groups and bins all groups equally.
This flag only works if bins==None or int.
**kwds
All other plotting keyword arguments to be passed to
:meth:`matplotlib.pyplot.hist`.
Expand Down