Skip to content

Instantly share code, notes, and snippets.

@purva91
Created September 10, 2019 12:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save purva91/ce0f562e1431152f3731df212a947963 to your computer and use it in GitHub Desktop.
Save purva91/ce0f562e1431152f3731df212a947963 to your computer and use it in GitHub Desktop.
data_file_path = '../input/heart-disease-uci/heart.csv'
data_df = pd.read_csv(data_file_path)
#To get information on the number of entries and the datatypes of the features
data_df.info()
#To check for missing values
print(data_df.isnull().sum())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment