Say I have a dataset having 100 columns and 25 columns having one or more null values.
How can I get the total counts of columns as the output say something like out of 100 columns 25 columns have null values and 75 has no null values?
As the following code gives me an error:
data[data.columns[data.isnull() == True]].shape[1]