I have a dataframe, and I want to produce a table of summary statistics including number of valid numeric values, mean and sd by group for each of three columns. I can\'t seem
Does complete.cases (or sum(complete.cases)) do what you want?
complete.cases
sum(complete.cases)