python作图——线型图,饼形图

线性二维图

import numpy as np
import matplotlib.pyplot as  plt
plt.figure()
x=np.linspace(0,2*np.pi,50)
y=np.sin(x)
plt.plot(x,y,'bp--')#蓝色带星虚线
plt.show()

python作图——线型图,饼形图_第1张图片

饼型图

import matplotlib.pyplot as plt
label = ['Frogs', 'Hogs', 'Dogs', 'Logs']
sizes= [15,30,45,10]
explode=(0,0.1,0,0)
colors=['yellowgreen','gold','lightskyblue','lightcoral']#coral珊瑚
plt.pie(sizes,labels=label,explode=explode,colors=colors, autopct='%1.2f%%',shadow=True,startangle=90)
plt.axis=('equal')
plt.legend()
plt.show()

python作图——线型图,饼形图_第2张图片

你可能感兴趣的:(python作图,饼形图,线型图)