【Python】直⽅图绘制代码#绘制直⽅图
def drawHist(heights):
#创建直⽅图
#第⼀个参数为待绘制的定量数据,不同于定性数据,这⾥并没有事先进⾏频数统计
#第⼆个参数为划分的区间个数
bins = np.arange(0,1.01,0.01)
n, bins, patches = pyplot.hist(heights, bins)
pyplot.xlabel('x轴')
pyplot.ylabel('y轴')
pyplot.title('标题')
pyplot.show()
return n, bins, patches
a = np.array([1,2,3])python新手代码画图
n, bins, patches = drawHist(a)

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。