Created
June 14, 2019 11:54
-
-
Save MariaLavrovskaya/71e101bc28e5bcb1918bd68312c4d302 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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