# Count total missing values in a dataframe
df.isnull().sum().sum()
# Gives a integer value
#Count non null values in a pandas dataframe
df.notnull().sum().sum()
#Retreieve boolean values of whether or not the given cells of a dataframe are
#null
df.isnull()