Python数据分析之Matplotlib学习系列——绘制折线图01
程序员文章站
2024-03-07 17:42:45
...
import matplotlib.pyplot as plt
import numpy as np
import matplotlib
# 设置全局中文
font = {'family':'Microsoft YaHei'
}
matplotlib.rc("font", **font)
y = [np.random.randint(20, 35) for i in range(120)]
x = range(0, 120)
# 显示图片大小
plt.figure(figsize=(20, 8), dpi=80)
# 调整x轴的刻度
_x = list(x)[::5]
# x轴刻度
_x_labels = ["10点{}分".format(i) for i in range(60)]
_x_labels += ["11点{}分".format(i) for i in range(60)]
plt.xticks(_x, _x_labels, rotation=45)
plt.xlabel("时间")
plt.ylabel("温度 ℃")
plt.title("10点到12点温度变化图")
plt.plot(x, y)
plt.show()
上一篇: 用R进行meta分析(metafor包)
下一篇: 自然语言处理—文本情感分析