### START FUNCTION def total_missing(df,column_name): return sum(df[column_name].isnull()) ### END FUNCTION