直方图和密度图
程序员文章站
2024-03-21 13:13:58
...
直方图
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
from pandas import Series,DataFrame
#直方图
s=Series(np.random.randn(1000))
#绘制直方图
plt.hist(s)
plt.show()
a=np.arange(10)
print(a)
#画出每一个数据区间的分布
plt.hist(a,rwidth=0.9)
plt.show()
re=plt.hist(s,rwidth=0.9)
type(re)
print(re[0])
print(re[1])
print(re[2])
plt.hist(s,rwidth=0.9,bins=20)
plt.show()
密度图
s.plot(kind='kde')
plt.show()
上一篇: 如何理解单链表?