LoginSignup
2
1

More than 3 years have passed since last update.

pandas-profilingで相関グラフ描写をSkipする方法

Last updated at Posted at 2020-04-03

概要

pandas-profilingを実行するにあたり、correlationsやdynamic binningなど高負荷な処理をSkipしたいケースに使える引数があったので備忘としてメモ。

コード

skip_conf
profile = ProfileReport(large_dataset, minimal=True)
profile.to_file(output_file="output.html")

minimal=Trueを入れる

ケース

・サイズの大きいデータセットにpandas-profilingかけたい時
・pandas-profilingがcorrelationsやdynamic binningでエラーが発生する時

参照

https://github.com/pandas-profiling/pandas-profiling#large-datasets

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1