R/clipdt.r

Defines functions clipdt

Documented in clipdt

#' Import from clipboard to data.table
#'
#' @param ...   Arguments to `as.data.table()`
#'
#' @export

clipdt <- function(...) {
  read.table('clipboard') |> as.data.table(...)
}
pbreheny/breheny documentation built on May 21, 2024, 1:54 p.m.