Skip to content

Instantly share code, notes, and snippets.

@MariaLavrovskaya
Created June 14, 2019 11:54
Show Gist options
  • Save MariaLavrovskaya/71e101bc28e5bcb1918bd68312c4d302 to your computer and use it in GitHub Desktop.
Save MariaLavrovskaya/71e101bc28e5bcb1918bd68312c4d302 to your computer and use it in GitHub Desktop.
#Dropping missing values from my dataset
df_1.dropna(how='any', inplace=True)
print(df_1.isnull().values.sum()) #checking for missing values after the dropna()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment