Learn R Programming

radiant.data (version 0.9.5)

format_df: Format a data.frame with a specified number of decimal places

Description

Format a data.frame with a specified number of decimal places

Usage

format_df(tbl, dec = NULL, perc = FALSE, mark = "", ...)

Arguments

tbl

Data.frame

dec

Number of decimals to show

perc

Display numbers as percentages (TRUE or FALSE)

mark

Thousand separator

...

Additional arguments for format_nr

Value

Data.frame for printing

Examples

Run this code
# NOT RUN {
data.frame(x = c("a", "b"), y = c(1L, 2L), z = c(-0.0005, 3)) %>%
  format_df(dec = 4)
data.frame(x = c(1L, 2L), y = c(0.05, 0.8)) %>%
  format_df(dec = 2, perc = TRUE)

# }

Run the code above in your browser using DataLab