Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import pandas as pd
- from pandas_profiling import ProfileReport
- df = pd.read_csv("Diabetes.csv")
- print(df)
- profile = ProfileReport(df)
- profile.to_file(output_file = "Diabetes.html")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement