I am unable to change number of bins when using geom_histogram() function. There is nothing in the documention, except some examples where binwidth=X is used (which is how R:ggplot2 uses it). However, this parameter seems to have no effect on the actual output.
Version: ggplot 0.10.4, Python 3.5 64bit
So for example:
import matplotlib.pyplot as plt
plt.figure()
dataframe['column'].plot.hist(bins=30)
plt.show()
works as expected and draws 30 bins. Meanwhile:
from ggplot import *
gg = ggplot(dataframe, aes(x='column')) + geom_histogram(binwidth=300)
print(gg)
does not change number of bins (I understand that binwidth sets interval for one bin), and have tried multiple values and/or datasets
geom_histogram(bins=30), notbinwidth, which refers to the width of each bin and cannot be used in combination withbins. (By default,bins=30by the way,) $\endgroup$