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

หยุดการโต้ตอบโดยทางโปรแกรมสำหรับฟิกเกอร์เฉพาะในสมุดบันทึก Jupyter


หากต้องการหยุดการโต้ตอบกับตัวเลขเฉพาะในสมุดบันทึก Jupyter โดยทางโปรแกรม เราสามารถใช้ plt.off() เพื่อหยุดการโต้ตอบหลังจากนั้น

ดำเนินการคำสั่งต่อไปนี้ตามลำดับ -

  • %matplotlib อัตโนมัติ
  • นำเข้า matplotlib.pyplot เป็น plt
  • plt.rcParams["figure.figsize"] =[7.50, 3.50]
  • plt.rcParams["figure.autolayout"] =จริง
  • สร้างร่างและชุดแผนย่อย
  • พล็อตเส้นบนแกน (จากขั้นตอนที่ 5)
  • ปิดการโต้ตอบ
  • หากต้องการแสดงรูป ให้ใช้ show() วิธีการ

ตัวอย่าง

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

In [2]: import matplotlib.pyplot as plt

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

In [4]: fig, ax = plt.subplots()

In [5]: ax.plot([2, 4, 7, 5, 4, 1])
Out[5]: [<matplotlib.lines.Line2D at 0x7fa6e00f5e48>]

In [6]: plt.ioff()
In [7]: ax.plot([1, 1, 2, 1, 2, 2])
Out[7]: [<matplotlib.lines.Line2D at 0x7fa6e0063ef0>]

In [8]: fig.show()

In [9]:

ผลลัพธ์

หยุดการโต้ตอบโดยทางโปรแกรมสำหรับฟิกเกอร์เฉพาะในสมุดบันทึก Jupyter