google colabでもjupyter labでもこんな感じで
dfを引数に入れるだけでデータの雰囲気を出してくれます
!pip install pandas_profiling
まずはpandas_profilingをインストール
import pandas_profiling as pdp
pdp.ProfileReport(train_df)
これで分析結果がhtmlで出力されるのでかなり便利です
Go to list of users who liked
More than 3 years have passed since last update.
google colabでもjupyter labでもこんな感じで
dfを引数に入れるだけでデータの雰囲気を出してくれます
!pip install pandas_profiling
まずはpandas_profilingをインストール
import pandas_profiling as pdp
pdp.ProfileReport(train_df)
これで分析結果がhtmlで出力されるのでかなり便利です
Register as a new user and use Qiita more conveniently
Go to list of users who liked