powered by
Vectorised conversion
as_formatted_p_value( x, decimal_places = 3, prefix = "p", less_than_cutoff = 0.001, remove_trailing_zeroes = T, alpha = 0.05, ns_replacement = NULL )
Numeric vector
Decimal places to display
Prefix to prepend (default "p=")
Cut-off for small p values. Values smaller than this will be displayed like "p<..."
If the required decimal places are less than decimal places, should resulting trailing zeros be removed?
Cut-off for assuming significance, usually 0.05
If p value is not significant (is > alpha), it will be replace by this string (e.g. "n.s.") If NULL (default), no replacement is performed.
Vectorised (in parallel) over x, prefix, less_than_cutoff, alpha and ns_replacement.
Character vector
# NOT RUN { as_formatted_p_value(0.02) # "p=0.02" as_formatted_p_value(0.00056) # "p<0.001" # }
Run the code above in your browser using DataLab