I am trying to find the total count of all missing values including NA, "", and NULL per column in a data frame. The summary() function only shows the NA values and even the VIM package does the same.
In the PASWR::titanic3 dataset, there are factor columns with empty string which is not being captured in my missingness analysis.
What is a good approach to include the counts of these missing values? Additionally, is there a way to show all the types/frequency of missing values?
Thanks in advance.
NAbefore usingsummary()