Matplotlib绘图
程序员文章站
2022-03-01 15:51:50
...
1、 matplotlib.pyplot模块
import matplotlib.pyplot as plt
修改图形的大小与保存图片
plt.figure(figsize=(), dpi=)
figsize:指定图的长宽
dpi:图像的清晰度
返回fig对象
plt.savefig(path)
折线图
- 准备x,y坐标
plt.plot(x, y)
自定义x,y刻度以及显示中文
plt.xticks(x, **kwargs)
x:要显示的刻度值
plt.yticks(y, **kwargs)
y:要显示的刻度值
增加标题,x轴y轴描述信息
plt.xlabel("时间")
plt.ylabel("温度")
plt.title("中午11点0分到12点之间的温度变化图示")
# 添加图形注释
plt.legend(loc="best")
多个坐标系显示-plt.subplots
matplotlib.pyplot.subplots(nrows=1, ncols=1, **fig_kw) 创建一个带有多个坐标系的图
Parameters:
nrows, ncols : int, optional, default: 1, Number of rows/columns of the subplot grid.
**fig_kw : All additional keyword arguments are passed to the figure() call.
Returns:
fig : 图对象
ax :
设置标题等方法不同:
set_xticks
set_yticks
set_xlabel
set_ylabel
上一篇: matplotlib 绘图