txtPval | R Documentation |
Gets formatted p-values. For instance
you often want 0.1234
to be 0.12
while also
having two values up until a limit,
i.e. 0.01234
should be 0.012
while
0.001234
should be 0.001
. Furthermore you
want to have < 0.001
as it becomes ridiculous
to report anything below that value.
txtPval(pvalues, lim.2dec = 10^-2, lim.sig = 10^-4, html = TRUE, ...)
pvalues |
The p-values |
lim.2dec |
The limit for showing two decimals. E.g.
the p-value may be |
lim.sig |
The significance limit for the less than sign, i.e. the ' |
html |
If the less than sign should be |
... |
Currently only used for generating warnings of deprecated call parameters. |
vector
Other text formatters:
txtInt()
,
txtMergeLines()
,
txtRound()
txtPval(c(0.10234,0.010234, 0.0010234, 0.000010234))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.