afex (version 0.26-0)

round_ps: Helper function which rounds p-values

Description

p-values are rounded in a sane way: .99 - .01 to two digits, < .01 to three digits, < .001 to four digits.

Usage

round_ps(x)

Arguments

x

a numeric vector

Value

A character vector with the same length of x.

Examples

Run this code
# NOT RUN {
round_ps(runif(10))

round_ps(runif(10, 0, .01))

round_ps(runif(10, 0, .001))

round_ps(0.0000000099)

# }

Run the code above in your browser using DataCamp Workspace