基本用法

  1. import matplotlib.pyplot as plt
  2. plt.figure(1)
  3. # bins调节横坐标分区个数,alpha参数用来设置透明度
  4. plt.hist(data, bins=30, alpha=0.5)
  5. plt.show()