powered by
Remove columns from a data.frame object
removeColumns(data.frame, columns, drop = FALSE)
data.frame with specified columns removed
data.frame
names of columns to be removed
Logical, whether the matrix should be dropped to vector if only one column is left
Jitao David Zhang <jitao_david.zhang@roche.com>
The function is equivalent to the subsetting operation with brackets. It provides a tidy programming interface to manupulate data.frames.
clubs <- data.frame(Points=c(21,23,28,24), Name=c("BVB", "FCB", "HSV", "FCK"), games=c(12,11,11,12)) removeColumns(clubs,c("Name"))
Run the code above in your browser using DataLab