format_p.ade {epade} | R Documentation |
Formating p-values
Description
Format a p-value for pretty printing.
Usage
format_p.ade(x, pgits=4, digits=2)
Arguments
x |
|
pgits |
Number of digits after decimal for cutoff of the p-value, 4 means, all under 0.0001 will be shown like <0.0001 |
digits |
how many significant digits are to be used. (bevore the cut with pgits) |
Details
if used a half-integer for pgits, like 3.5 the p-value will be shown like <0.0005
Value
An object of similar structure to x containing character representations of the elements of x in a common format
See Also
Examples
format_p.ade(0.045825, 4, 3)
format_p.ade(0.000025, 4)
format_p.ade(0.000025, 3.5)
[Package epade version 0.5.1 Index]