使用matplotlib繪制天氣折線圖的基本步驟如下:
import matplotlib.pyplot as plt
fig, ax = plt.subplots()
time = [1, 2, 3, 4, 5] # 時間序列
weather = [20, 22, 19, 25, 23] # 天氣數據
ax.plot(time, weather)
ax.set_title('Weather Chart')
ax.set_xlabel('Time')
ax.set_ylabel('Temperature')
plt.show()
完整的代碼示例:
import matplotlib.pyplot as plt
# 創建圖表和子圖
fig, ax = plt.subplots()
# 準備數據
time = [1, 2, 3, 4, 5] # 時間序列
weather = [20, 22, 19, 25, 23] # 天氣數據
# 繪制折線圖
ax.plot(time, weather)
# 添加標題和坐標軸標簽
ax.set_title('Weather Chart')
ax.set_xlabel('Time')
ax.set_ylabel('Temperature')
# 顯示圖表
plt.show()
運行以上代碼,即可繪制出天氣折線圖。你可以根據實際情況修改時間序列和天氣數據,以及自定義圖表標題和坐標軸標簽。