print.mpe.test | R Documentation |
Printing objects of class "mpe.test"
by simple print
methods.
## S3 method for class 'mpe.test'
print(x, digits = getOption("digits"), prefix = "\t", ...)
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. |
The print
method is based on the respective method print.htest
of package stats.
the argument x
, invisibly, as for all print
methods.
The function first appeared in package mpe, which is now archived on CRAN.
Srinath Kolampally, Matthias Kohl Matthias.Kohl@stamats.de
print.power.htest
, mpe.z.test
,
mpe.t.test
.
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.