I am in need of retrieving the default bins that were used for a histogram
generated by dataframe.hist
rather than plt.hist
.
I found this page on plt.hist
, but I also found out that dataframe.hist
returns a subplot while plt.hist
returns a tuple. I'm therefore unsure as to how I can retrieve the bin ranges for the dataframe.hist
.
What can I try next?