ইন্টারেক্টিভ প্লট পেতে, আমাদের চিত্রটি সক্রিয় করতে হবে। plt.ioff() ব্যবহার করা হচ্ছে এবং plt.ion() , আমরা একটি প্লট দিয়ে ইন্টারেক্টিভ ক্রিয়া সম্পাদন করতে পারি।
Ipython খুলুন shell এবং শেলে নিম্নলিখিত কমান্ড লিখুন।
উদাহরণ
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 আউটপুট
