ম্যাটপ্লটলিবে কনট্যুর সহ অ্যানিমেট করতে, আমরা নিম্নলিখিত পদক্ষেপগুলি নিতে পারি
পদক্ষেপ
-
চিত্রের আকার সেট করুন এবং সাবপ্লটগুলির মধ্যে এবং চারপাশে প্যাডিং সামঞ্জস্য করুন৷
-
কনট্যুর প্লটের জন্য ডেটা তৈরি করুন।
-
একটি চিত্র এবং সাবপ্লটের একটি সেট তৈরি করুন৷
-
একটি ফাংশনকে বারবার কল করে একটি অ্যানিমেশন তৈরি করুন *অ্যানিমেট* যেখানে অ্যানিমেট() পদ্ধতি কনট্যুর ডেটা পয়েন্ট পরিবর্তন করে।
-
চিত্রটি প্রদর্শন করতে, দেখান() ব্যবহার করুন পদ্ধতি।
উদাহরণ
import numpy as np import matplotlib.pyplot as plt import matplotlib.animation as animation # Set the figure size plt.rcParams["figure.figsize"] = [7.00, 3.50] plt.rcParams["figure.autolayout"] = True # Random data for the contour plot data = np.random.randn(800).reshape(10, 10, 8) # Create a figure and a set of subplots fig, ax = plt.subplots() # Method to change the contour data points def animate(i): ax.clear() ax.contourf(data[:, :, i], cmap='plasma') # Call animate method ani = animation.FuncAnimation(fig, animate, 5, interval=50, blit=False) # Display the plot plt.show()প্রদর্শন করুন
আউটপুট
এটি নিম্নলিখিত আউটপুট তৈরি করবে -