折线统计图是比较基础和常见的一类实验结果图了,用的地方很多。我觉得用python绘实验数据图的时候直接“现学现用”即可。
此处给出一个多折线统计图的例子,是我自己在模仿借鉴别人的代码基础上得出的。
import numpy as np
import matplotlib.pyplot as plt
#首先要引入这两个包
x1=np.array([10,20,30,40,50,60,70,80,90,100])
#横轴
y1=np.array([98.83,98.42,98.02,97.61,97.15,96.78,96.54,96.3,95.85,95.32])
#纵轴
plt.plot(x1, y1,'-', marker='o',color='blue',label='xxx')
#定义绘图的样式
x2=np.array([10,20,30,40,50,60,70,80,90,100])
y2=np.array([95.32,91.63,87.88,87.87,87.64,73.76,73.8,73.71,73.76])
plt.plot(x2, y2,'-', marker='*',color='red',label='yyy')
plt.xlabel('Number of users',fontsize=12)
plt.ylabel('Accuracy',fontsize=12)
#横轴纵轴命名及字体大小
plt.legend(loc="right",fontsize=12)
#图例的位置
plt.savefig('xxx.pdf',bbox_inches='tight', dpi=300,pad_inches=0.0)
#将绘制的图另存为目录下的.pdf格式文件;tight和pad