Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2019
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. data_file_path = '../input/heart-disease-uci/heart.csv'
  2. data_df = pd.read_csv(data_file_path)
  3.  
  4. #To get information on the number of entries and the datatypes of the features
  5. data_df.info()
  6.  
  7. #To check for missing values
  8. print(data_df.isnull().sum())
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement