Matplotlib
Matplotlib 是 Python 常用的第三方 2D 绘图库,是 Python 中最受欢迎的数据可视化软件包之一
plt.plot(x, y, color, linestyle, linewidth, marker, markerfacecolor, markersize, label)
-
用于创建二维折线图
-
x
:x 轴数据,数组或列表 -
y
:y 轴数据,数组或列表 -
color
:线条颜色,示例:'r'
、'b'
、'g'
等 -
linestyle
:线条样式,示例:'-'
(实线)、'--'
(虚线)、'-.'
(点划线)、':'
(点线) -
linewidth
:线条宽度,示例:2
、4
等 -
marker
:标记样式,示例:'o'
、'^'
、's'
(方块)等 -
markerfacecolor