pythonでpandas_profilingを使ってデータの雰囲気を掴む


google colabでもjupyter labでもこんな感じで
dfを引数に入れるだけでデータの雰囲気を出してくれます

!pip install pandas_profiling

まずはpandas_profilingをインストール

import pandas_profiling as pdp
pdp.ProfileReport(train_df)

これで分析結果がhtmlで出力されるのでかなり便利です