R/load_data.R

Defines functions load_kami_excel

Documented in load_kami_excel

#' Load data from all range of Excel sheet as character
#'
#' @inheritParams readxl::read_excel
#' @export
load_kami_excel <- function(path, sheet) {
  suppressMessages(
    readxl::read_excel(path      = path,
                       sheet     = sheet,
                       col_names = FALSE,
                       col_types = "text")
  )
}
Rindrics/colrectr documentation built on Nov. 12, 2021, 1:01 p.m.