I m drawing a histogram with matplot and I m wondering whether it is possible to set set boundaries of each bin to an integer value. Because if I interpret the Output values
You can pass explicit bin edges to the plt.hist
function. For example,
bins = np.linspace(0, 700, 15)
plt.hist(counts.store_id.values, bins=bins)
In general, the number of bins will be equal to len(bins) - 1
. In this example, bins will be equally spaced starting with the first bin from 0 to 50 and the last bin from 650 to 700.