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

ฉันจะพล็อตจุดเดียวใน Matplotlib Python ได้อย่างไร


ในการพล็อตจุดข้อมูลเดียวใน matplotlib เราสามารถทำตามขั้นตอนต่อไปนี้ -

  • เริ่มต้นรายการสำหรับ x และ y ด้วยค่าเดียว

  • จำกัดช่วงแกน X และ Y สำหรับ 0 ถึง 5

  • จัดวางตารางในรูปแบบเส้นปัจจุบัน

  • พล็อต x และ y โดยใช้วิธี plot() กับ marker="o", markeredgecolor="red", markerfacecolor="green" .

  • หากต้องการแสดงรูป ให้ใช้ show() วิธีการ

ตัวอย่าง

from matplotlib import pyplot as plt
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True
x = [4]
y = [3]
plt.xlim(0, 5)
plt.ylim(0, 5)
plt.grid()
plt.plot(x, y, marker="o", markersize=20, markeredgecolor="red", markerfacecolor="green")
plt.show()

ผลลัพธ์

ฉันจะพล็อตจุดเดียวใน Matplotlib Python ได้อย่างไร