skip to content
barorin&?

plotlyのanimation_frameが動かない場合の対処法

/ 1 min read

問題

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