I am Charmie

メモとログ

plotlyで作成するhtmlファイルのサイズ圧縮

plotlyを使って作成したhtmlファイルのファイルサイズが巨大になる問題の解決策がstakoverflowに投稿されていた.

  • ファイル出力する際に,plotlyjsのソースコードを出力ファイルに含めるためファイルサイズが巨大になってしまう
  • include_plotlyjsオプションの設定次第で3MB程度圧縮できる
filename = 'my_plotly.html'
# fig.write_html(filename)
with open(filename, 'w') as file:
    file.write(fig.to_html(full_html=False, include_plotlyjs='cdn'))