使用Matplotlib 在獨立軸上繪製時間
將時間戳轉換為日期時間物件並使用plot_date() 進行繪圖
將時間戳轉換為日期時間物件並使用plot_date() 進行繪圖In為了使用Matplotlib 在x 軸上繪製時間,有必要先轉換時間戳數組到Python日期時間對象。利用 datetime.strptime 完成此轉換。 隨後,使用 date2num 將日期轉換為 matplotlib 格式。 最後,利用plot_date函數來視覺化日期及其對應的值。
import matplotlib.pyplot as plt import matplotlib.dates from datetime import datetime # Datetime Objects as Independent Variable time_strs = ['00:00:00.000000', '01:00:00.000000', '02:00:00.000000'] x_values = [datetime.strptime(t, '%H:%M:%S.%f') for t in time_strs] # Corresponding y-axis values y_values = [0.1, 0.2, 0.3] # Convert dates to matplotlib format dates = matplotlib.dates.date2num(x_values) # Plot Time vs. Values plt.plot_date(dates, y_values) plt.xlabel('Time') plt.ylabel('Value') plt.show()此程式碼將有效地將時間繪製為 x 軸上的自變量,以及對應的 y 軸所代表的值。
以上是如何使用 Matplotlib 在 X 軸上繪製時間?的詳細內容。更多資訊請關注PHP中文網其他相關文章!