R/load_data.R

Defines functions load_alldata

Documented in load_alldata

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