View source: R/string.utilities.R
| fixed.pval | R Documentation |
This is a thin wrapper around format.pval() that guarantees fixed
(not scientific) notation, links (by default) the eps argument to
the digits argument and vice versa, and sets nsmall to equal
digits.
fixed.pval(
pv,
digits = max(1, getOption("digits") - 2),
eps = 10^-digits,
na.form = "NA",
...
)
pv, digits, eps, na.form, ... |
see |
A character vector.
pvs <- 10^((0:-12)/2)
# Jointly:
fpf <- fixed.pval(pvs, digits = 3)
fpf
format.pval(pvs, digits = 3) # compare
# Individually:
fpf <- sapply(pvs, fixed.pval, digits = 3)
fpf
sapply(pvs, format.pval, digits = 3) # compare
# Control eps:
fpf <- sapply(pvs, fixed.pval, eps = 1e-3)
fpf
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.