import pandas as pd
import matplotlib.pyplot as ply
import seaborn as sns
sns.set()
url = "https://datascienceschools.github.io/Exploratory_Data_Analysis/HR_Analytics.csv"
df = pd.read_csv(url)
df.head()
The pandas-profiling library generates a report having:
!pip install pandas-profiling
from pandas_profiling import ProfileReport
profile = ProfileReport(df, explorative=True)
profile.to_file("output.html")
The Sweetviz library generates a report having:
!pip install sweetviz
import sweetviz as sv
sweet_report = sv.analyze(df)
sweet_report.show_html("output_sweetViz.html")
The Autoviz library generates a report having:
!pip install autoviz
!pip install xlrd
from autoviz.AutoViz_Class import AutoViz_Class
autoviz = AutoViz_Class().AutoViz(url)
!pip install dtale
import dtale
dtale.show(df)