Matplotlib में आकृति के साथ चेतन करने के लिए, हम निम्नलिखित कदम उठा सकते हैं
कदम
-
फिगर साइज सेट करें और सबप्लॉट्स के बीच और आसपास पैडिंग को एडजस्ट करें।
-
कंटूर प्लॉट के लिए डेटा बनाएं।
-
एक आकृति और सबप्लॉट का एक सेट बनाएं।
-
किसी फ़ंक्शन को बार-बार कॉल करके एनिमेशन जेनरेट करें *animate* जहां चेतन () विधि समोच्च डेटा बिंदुओं को बदल देती है।
-
आकृति प्रदर्शित करने के लिए, दिखाएँ () . का उपयोग करें विधि।
उदाहरण
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()
आउटपुट
यह निम्नलिखित आउटपुट देगा -