私はデータフレームフォーマット(xarray、Pandasに似ています)でデータを保存していますので、pcolormeshでアニメーション化します。matplotlibはmatplotlibのFuncAnimationコマンドを使用してデータフレーム内のデータをアニメーション化します
import sys
import numpy as np
import matplotlib.pyplot as plt
from matplotlib.animation import FuncAnimation
fig = plt.figure()
ax1 = fig.add_subplot(1,1,1)
def animate(i):
graph_data = mytest.TMP_P0_L1_GLL0[i]
ax1.pcolormesh(graph_data)
FuncAnimation(plt,animate,frames=100)
何らかの理由で動作しません(エラーはありませんが、図がアニメーション化していないことを示しています)。
データがレイアウトされている方法は、そのpcolormesh(mytest.TMP_P0_L1_GLL0 [0])が出力quadmesh、pcolormesh(mytest.TMP_P0_L1_GLL0 [1])が出力さ若干異なるquadmesh ...等である
ご協力いただきありがとうございます!