Pandas Profiling
Create an Exploratory Data Analysis Report with Minimal Effort ( One Line of Code )
pip install pandas-profiling
The Pandas Profiling Report :
Basic Information about Data.
Number of Columns.
Number of Rows.
Data Size.
Percentage of Missing Values.
Data Type.
Detailed Analysis of Each Variables.
A Histogram for Continuous Variable.
A Bar Chart for Categorical Variable.
The Different Types of Correlations.
Numerical Variables : Pearson’s Correlation | Spearman’s Correlation | Kendall’s Correlation | Phik Correlation.
Categorical Variables : Cramer’s V Correlation.
If the Data Set is Very Large, It will take a Long Time to Create a Report (Could be Hours.)
We have a Basic Exploratory Data Analysis using a Profiling Package
Definitely not a Complete Exploration.