アニメーショングラフの動画の保存先を変数を用いて保存したいです。
ネットで調べているとani.save(aaa/ "test.gif", writer="imagemagick")の
変数aaa/を"test.gif"の前に書けば保存できるとなっていたのですが、
TypeError: unsupported operand type(s) for /: 'str' and 'str'と
エラーがでて保存できません。
どうしたら指定したフォルダに保存できるでしょうか。
import numpy as np import matplotlib.pyplot as plt import matplotlib.animation as animation fig = plt.figure() #figure objectを取得. ax = fig.add_subplot(111) x = np.arange(0,10,1) ims = [] #Line2D objectを入れるリストを用意 for time in range(x.shape[0]): im = ax.plot(x[0:time] ,x[0:time] ** 2) #Line2D objectを取得 ims.append(im) #imsにappendする #ArtistAnimation機能で,imsの中の画像を繋ぎ合わせる. ani = animation.ArtistAnimation(fig, ims, interval = 100) aaa = 'C:\GS_APP\data\Graph_data' #imagemagickを使って,gif画像を保存 ani.save(aaa/ "test.gif", writer="imagemagick")
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。