Advertisement
Nahid8195

Data Accuracy

Dec 13th, 2021
778
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.18 KB | None | 0 0
  1. import pandas as pd
  2. from pandas_profiling import ProfileReport
  3. df = pd.read_csv("Diabetes.csv")
  4. print(df)
  5.  
  6. profile = ProfileReport(df)
  7. profile.to_file(output_file = "Diabetes.html")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement