标签:orange top pyplot port pre 饼状图 使用 imp nump
#numpy使用matplotlib实现可视化绘图
import numpy as np
import matplotlib.pyplot as plt
#线性图
x= np.linspace(-10,10,100)
y = np.sin(x)
plt.plot(x,y)
plt.show()
#饼状图
arr=np.array([15,30,45,10])
lables=np.array([‘apple‘,‘orange‘,‘grape‘,‘strawberry‘])
plt.pie(arr,labels=lables,autopct=‘%1.1f%%‘)
plt.show()
#直方图
arr=np.array([15,30,45,10])
lables=np.array([‘apple‘,‘orange‘,‘grape‘,‘strawberry‘])
plt.bar(lables,arr)
plt.show()
标签:orange top pyplot port pre 饼状图 使用 imp nump
原文地址:https://www.cnblogs.com/wenchengqingfeng/p/13236606.html