R/i_table.R

Defines functions i_table

Documented in i_table

#' Create a table for use in data.tables i slot
#'
#' @param .data data.table
#' @param x character; name of character columns

i_table <- function(.data, x) {
  .data[, x, with=FALSE ]
}
decisionpatterns/data.table.plus documentation built on June 15, 2020, 10:26 p.m.