Remove empty Columns from a Data Frame
Arguments
- x
data frame
- drop
if
TRUEand only one column remains the column is returned as a vector- FUN
function called on each column to determine if all values in the column are empty. Default:
function(x) all(is.na(x))- dbg
if
TRUEdebug messages are shown