Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

จะแสดงวันที่และเวลาบนแกน X ใน Matplotlib ได้อย่างไร


ในการแสดงวันที่และเวลาบนแกน X ใน Matplotlib เราสามารถทำตามขั้นตอนต่อไปนี้ -

  • กำหนดขนาดรูปและปรับช่องว่างภายในระหว่างและรอบๆ แผนผังย่อย
  • สร้างรายการ วันที่ และ ค่า
  • รับแกนปัจจุบัน
  • ตั้งค่าตัวจัดรูปแบบวันที่หลักและตัวระบุตำแหน่ง
  • พล็อต x และ ค่าโดยใช้ plot() วิธีการ
  • หากต้องการแสดงรูป ให้ใช้ show() วิธีการ

ตัวอย่าง

from datetime import datetime as dt
from matplotlib import pyplot as plt, dates as mdates

plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True

dates = ["01/02/2020", "01/03/2020", "01/04/2020"]
x_values = [dt.strptime(d, "%m/%d/%Y").date() for d in dates]
y_values = [1, 2, 3]
ax = plt.gca()

formatter = mdates.DateFormatter("%Y-%m-%d")
ax.xaxis.set_major_formatter(formatter)
locator = mdates.DayLocator()
ax.xaxis.set_major_locator(locator)
plt.plot(x_values, y_values)

plt.show()

ผลลัพธ์

จะแสดงวันที่และเวลาบนแกน X ใน Matplotlib ได้อย่างไร