powered by
Round and format p-values
format_p(x, digits = 1)
a string
numeric vector of p-values
number of digits large p-values will be rounded to. Default is 2, and must be one of 1, 2, or 3.
p_vec <- c(0.00001, 0.01111, 0.0500000, 0.15, 0.99999) format_p(p_vec) format_p(p_vec, 2) format_p(p_vec, 3)
Run the code above in your browser using DataLab