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