R/show_in_excel.R

Defines functions show_in_excel

Documented in show_in_excel

#' show_in_excel
#'
#' @param dat
#'
#' @return
#' @export
#'
#' @examples
show_in_excel <- function(.data){

  tmp <- paste0(tempfile(), ".csv")

  write.csv(.data, tmp)

  fs::file_show(path = tmp)

}
dpashouwer/dpash documentation built on March 21, 2022, 4:29 p.m.