R Coding
Coding in R
A few snipits of code that are always useful:
Finding which column has NA values:
unlist(lapply(dataframe , function(x) any(is.na(x))))
A few snipits of code that are always useful:
unlist(lapply(dataframe , function(x) any(is.na(x))))