R/dataframe.R

Defines functions fashion.data.frame

#' @export
fashion.data.frame <- function(x, decimals = 2, leading_zeros = FALSE, na_print = "") {
  x <- purrr::map(
    x,
    fashion,
    decimals = decimals,
    leading_zeros = leading_zeros,
    na_print = na_print
  )
  noquote(as.data.frame(x))
}

Try the corrr package in your browser

Any scripts or data that you put into this service are public.

corrr documentation built on Aug. 17, 2022, 1:05 a.m.