Find out how many rows are missing in the column 'your_column' code example
Example: Find out how many rows are missing in the column 'your_column'
print(df['your_column'].isnull().sum())
print(df['your_column'].isnull().sum())