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

การวางแผนเชิงโต้ตอบด้วย Python Matplotlib ผ่านบรรทัดคำสั่ง


ในการรับพล็อตแบบโต้ตอบ เราต้องเปิดใช้งานรูปนั้น ใช้ plt.ioff() และ plt.ion() เราสามารถดำเนินการโต้ตอบกับโครงเรื่องได้

เปิด Ipython เชลล์และป้อนคำสั่งต่อไปนี้บนเชลล์

ตัวอย่าง

In [1]: %matplotlib auto
Using matplotlib backend: GTK3Agg

In [2]: import matplotlib.pyplot as

In [3]: fig, ax = plt.subplots() # Diagram will pop up. Let’s interact.

In [4]: ln, = ax.plot(range(5))  # Drawing a line

In [5]: ln.set_color("orange")   # Changing drawn line to orange

In [6]: plt.ioff() # Stopped interaction

In [7]: ln.set_color("red")
# Since we have stopped the interaction in the last step

In [8]: plt.ion() # Started interaction

ผลลัพธ์

การวางแผนเชิงโต้ตอบด้วย Python Matplotlib ผ่านบรรทัดคำสั่ง