Tell me please what to do
Try:
df.Undergraduate Population.isnull().sum()
The above may not work due to the space in the feature name.
Try:
df[‘Undergraduate Population’].isnull().sum()
Try:
df.Undergraduate Population.isnull().sum()
The above may not work due to the space in the feature name.
Try:
df[‘Undergraduate Population’].isnull().sum()