round_ps {afex} | R Documentation |
p-values are rounded in a sane way: .99 - .01 to two digits, < .01 to three digits, < .001 to four digits.
round_ps(x)
x |
a numeric vector |
A character vector with the same length of x.
Henrik Singmann
round_ps(runif(10)) round_ps(runif(10, 0, .01)) round_ps(runif(10, 0, .001)) round_ps(0.0000000099)