Python; Matplotlib: Set boundaries of Bins to integer values

前端 未结 1 508
感动是毒
感动是毒 2021-01-16 01:51

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

相关标签:
1条回答
  • 2021-01-16 02:35

    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.

    0 讨论(0)
提交回复
热议问题