R/utils.R

Defines functions tibble

tibble <- function(...) {

  out <- data.frame(..., stringsAsFactors = FALSE)

  class(out) <- c("tbl_df", "tbl", "data.frame")

  out

}
hrbrmstr/scimple documentation built on April 9, 2020, 9:57 p.m.