read.cash Log in
h@hbkedge more from that month

龍家俊教你 機器學習 day16 import matplotlib.pyplot as plt import random # 畫出溫度變化圖 # 0.準備x, y坐標的數據 x = range(60) y_t = [random.uniform(16, 23) for i in x] # 1.創建畫布 plt.figure(figsize=(20, 8), dpi=80) # 2.繪製折線圖 plt.plot(x, y_t) # 3.顯示圖像 plt.show()

No comments yet

Log in to join in Reading is open to everyone. Replying needs an account.