print.mpe.test {MKinfer} | R Documentation |
Print Method for MPE Hypothesis Test
Description
Printing objects of class "mpe.test"
by simple print
methods.
Usage
## S3 method for class 'mpe.test'
print(x, digits = getOption("digits"), prefix = "\t", ...)
Arguments
x |
object of class |
digits |
number of significant digits to be used. |
prefix |
string, passed to |
... |
further arguments to be passed to or from methods. |
Details
The print
method is based on the respective method print.htest
of package stats.
Value
the argument x
, invisibly, as for all print
methods.
Note
The function first appeared in package mpe, which is now archived on CRAN.
Author(s)
Srinath Kolampally, Matthias Kohl Matthias.Kohl@stamats.de
See Also
print.power.htest
, mpe.z.test
,
mpe.t.test
.
Examples
library(mvtnorm)
delta <- c(0.25, 0.5)
Sigma <- matrix(c(1, 0.75, 0.75, 1), ncol = 2)
n <- 50
X <- rmvnorm(n=n, mean = delta, sigma = Sigma)
Y <- rmvnorm(n=n, mean = rep(0, length(delta)), sigma = Sigma)
mpe.t.test(X = X, Y = Y)
[Package MKinfer version 1.2 Index]