LoginSignup
1
0

More than 3 years have passed since last update.

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

Posted at

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

!pip install pandas_profiling

まずはpandas_profilingをインストール

import pandas_profiling as pdp
pdp.ProfileReport(train_df)

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

1
0
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
1
0