Created
October 15, 2019 06:47
-
-
Save MariaLavrovskaya/faeabd94919654c5b425b2c1f2cf123e to your computer and use it in GitHub Desktop.
airbnb_12
This file contains hidden or 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
print(df_1.isnull().values.sum()) | |
print(df_1.isnull().sum()) | |
#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