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")
  )
}
luciphr/colrectr documentation built on Dec. 21, 2021, 12:41 p.m.