创建具有1000随机数的人工数据集,并画出其条形图
书上给出的代码
import numpy as np
data=np.random.randn(1000)
import matplotlib.pyplot as plt
plt.figure()
hist1,edges1=np.histogram(datal)
plt.bar(edges1[:-1],hist1,width=edges1[1:]-edgesq[:-1]
但是我不是很理解,也不知道顺序,望解答
创建具有1000随机数的人工数据集,并画出其条形图
书上给出的代码
import numpy as np
data=np.random.randn(1000)
import matplotlib.pyplot as plt
plt.figure()
hist1,edges1=np.histogram(datal)
plt.bar(edges1[:-1],hist1,width=edges1[1:]-edgesq[:-1]
但是我不是很理解,也不知道顺序,望解答
import numpy as np
data=np.random.randn(1000) #生成数据
hist1,edges1=np.histogram(data) #是一个生成直方图的函数
print(hist1)
print(edges1)
import matplotlib.pyplot as plt
plt.figure() #创建展示的结构
plt.bar(edges1[:-1],hist1,width=edges1[1:]-edges1[:-1])
#格式 plt.bar(x, height, width=0.8, bottom=None,color)
# x → 为一个标量序列,确定x轴刻度数目
# height → 确定y轴的刻度
# width → 单个直方图的宽度
# bottom → 设置y边界坐标轴起点
# color → 设置直方图颜色(只给出一个值表示全部使用该颜色,若赋值颜色列表则会逐一染色,若给出颜色列表数目少于直方图数目则会循环利用)
plt.show() #画图