目录
plot
bar
pie
plot
plot可以绘制点图和线图
?plt.plot #使用?查看plot详细信息
x=[1,2,3,4,5]
y=[16,17,18,19,20]
plt.plot(x,y)
import numpy as np
x=np.arange(0,10)
y=x*x
plt.plot(x,y)
x=np.arange(5,15,0.1)
y=np.sin(x)
plt.plot(x,y,'ro') #red circle markers
plt.plot(x,y,color='#00ff00',linestyle='dashed',linewidth=4)
#六位井号代表颜色(r,g,b),数字越大颜色越浅
bar
bar可以绘制柱状图
x=['a','b','c','d']
y=[20,74,35,10]
plt.bar(x,y)
pie
pie可以绘制饼图
label=['a','b','c','d','e','f']
values=[10,60,20,40,35,20]
plt.pie(values,labels=label,autopct='%.1f%%') #autopcd为每部分比例