一、绘制折线图
使用plot()绘制折线图
1.plot()函数语法格式如下:
plot(*args, scalex=True, scaley=True, data=None, **kwargs)
*args: 无关键字参数(以列表或者元组的形式传参)
**kwargs: 有关键字参数(以字典形式传参)
2.示例代码:
#导入模块
import matplotlib.pyplot as plt
import numpy as np
#创建画布
fig = plt.figure()
#在画布上添加绘图区域
ax = fig.add_subplot(111)
#准备数据
x = np.array([1,2,3,4,5])
y = np.array([20,16,11,15,14])
#绘制折线图
plt.plot(x,y)
plt.show()
运行结果:
3.多条折线图的绘制
示例代码