If you don't know how to analyze with code or don't have a time, you can simply use ProfileReport library.
The steps is very simple too.
Install
pip install ydata-profiling
Import and use it
import pandas as pd import numpy as np from ydata_profiling import ProfileReport df = pd.read_csv('data.csv') report = ProfileReport(df, title='Data analysis') report.to_file("Data_report.html")
It will be stored as 'Data_report.html'.
It automatically report these things.
It was very helpful to write a report quickly.
The above is the detailed content of If you want to analyze simply, use ProfileReport. For more information, please follow other related articles on the PHP Chinese website!