TOSTnp-methods {TOSTER} | R Documentation |
Methods defined for objects returned from the wilcox_TOST function.
## S3 method for class 'TOSTnp' print(x, digits = 4, ...) ## S3 method for class 'TOSTnp' describe(x, digits = 3, ...)
x |
object of class |
digits |
Number of digits to print for p-values |
... |
further arguments passed through, see description of return value
for details.
|
print
Prints short summary of the tests.
describe
Verbose description of results.
# example code data(mtcars) res1 = wilcox_TOST(mpg ~ am,data = mtcars,eqb = 3) # PRINT print(res1) # DESCRIPTION describe(res1)