This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#' Read xlsx files | |
#' | |
#' @param file The path to xlsx file | |
#' @param keep_sheets A vector of sheet name | |
#' @param header Whether include the head in the sheet | |
#' @param empty_row Whether to remove the empty rows | |
#' @export | |
xlsxToR <- function(file, keep_sheets = NULL, header = TRUE, empty_row = TRUE) | |
{ | |
suppressWarnings(file.remove(tempdir())) |