drop_col {hutils} | R Documentation |
Drop column or columns
Description
Drop column or columns
Usage
drop_col(DT, var, checkDT = TRUE)
drop_cols(DT, vars, checkDT = TRUE)
Arguments
DT |
A |
var |
Quoted column to drop. |
checkDT |
Should the function check |
vars |
Character vector of columns to drop. Only the intersection is dropped;
if any |
Value
DT
with specified columns removed.
Examples
if (requireNamespace("data.table", quietly = TRUE)) {
library(data.table)
DT <- data.table(x = 1, y = 2, z = 3)
drop_col(DT, "x")
}
[Package hutils version 1.8.1 Index]