其他分享
首页 > 其他分享> > plt.hist绘制直方图

plt.hist绘制直方图

作者:互联网

import matplotlib.pyplot as plt
x = pdf.loc[:, 'sway_intention']
plt.hist(x, bins=10, range=(0, 1), density=True, stacked=True, weights=None, cumulative=False, bottom=None, histtype=u'bar', align=u'mid', orientation=u'vertical', rwidth=0.6, log=False, color=None, label=None)

 

标签:None,plt,False,hist,直方图,True
来源: https://www.cnblogs.com/syw-home/p/15043507.html