問題
plotlyのanimation_frameが動かなかったときの話です。
解決方法
animation_frame を読み込む前にレンダラーを notebook に設定することで動くようになりました。
import plotly.io as pio
pio.renderers.default = 'notebook'
参考
animation frame lineplot plotly doesn’t work (python) - Stack Overflow
plotlyのanimation_frameが動かなかったときの話です。
animation_frame を読み込む前にレンダラーを notebook に設定することで動くようになりました。
import plotly.io as pio
pio.renderers.default = 'notebook'
animation frame lineplot plotly doesn’t work (python) - Stack Overflow