From 3eef5302fcf4d00eec72cf177e74ff5a5728f7bd Mon Sep 17 00:00:00 2001 From: puqnjzxop <862227014@qq.com> Date: Mon, 3 Jun 2024 16:26:57 +0800 Subject: [PATCH] Update data14_analysis.py --- data14_analysis.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data14_analysis.py b/data14_analysis.py index 274e3da..0f93bd4 100644 --- a/data14_analysis.py +++ b/data14_analysis.py @@ -32,7 +32,7 @@ def tem_curve(data): plt.text(tem_max_date + 0.15, tem_max + 0.15, str(tem_max), ha='center', va='bottom', fontsize=10.5) # 标出最高温度 plt.text(tem_min_date + 0.15, tem_min + 0.15, str(tem_min), ha='center', va='bottom', fontsize=10.5) # 标出最低温度 plt.xticks(x) - plt.title('未来14天高温低温变化曲线图') + plt.title('未来14天高温低温变化折线图') plt.xlabel('未来天数/天') plt.ylabel('摄氏度/℃') plt.show()