Python是一種功能強大的編程語言,可以用來進行各種任務,包括繪制圖形。下面將介紹如何使用Python繪制天氣圖。
import matplotlib.pyplot as plt import numpy as np # 下面的數據用于繪制虛構的天氣圖 temps = [20, 22, 24, 23, 18, 15, 12] precip = [0, 0, 0, 0, 0.2, 0.5, 1.2] months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul'] # 繪制線性圖 plt.plot(months, temps, label = 'Temperature') plt.plot(months, precip, label = 'Precipitation') # 添加標題和軸標簽 plt.title('Monthly Weather') plt.xlabel('Month') plt.ylabel('Temperature / Precipitation') # 添加圖例 plt.legend() # 顯示圖形 plt.show()
以上代碼使用了Python的Matplotlib庫來繪制線性圖。首先,我們定義了一些虛構的天氣數據。然后,通過plt.plot()函數繪制了溫度和降水量的線性圖。我們還添加了標題、軸標簽和圖例來增強視覺效果。
通過上述代碼,我們可以輕松地繪制漂亮的天氣圖,從而更好地了解某個地區的氣候狀況。