| plot.maxtest {maxstat} | R Documentation |
Printing and ploting method of objects of class maxtest
plot(x, xlab=NULL, ylab=NULL, ...)
print{x, ...}
x |
an object of class maxtest. |
xlab |
label of x-axis. |
ylab |
label of y-axis. |
... |
additional arguments to plot or print.htest. |
The standardized statistics are plotted. If alpha was given in
maxstat.test the appropriate significance bound is plotted as
a red line. print.maxtest is just a wrapper to print.htest.
x <- sort(runif(20)) y <- rbinom(20, 1, 0.5) mod <- maxstat.test(y ~ x, smethod="Median", pmethod="HL", alpha=0.05) print(mod) plot(mod)