Nothing
plotPredIntLnormAltTestPowerCurve <-
function (n = 8, df = n - 1, n.geomean = 1, k = 1, cv = 1, range.ratio.of.means = c(1,
5), pi.type = "upper", conf.level = 0.95, plot.it = TRUE,
add = FALSE, n.points = 20, plot.col = "black", plot.lwd = 3 *
par("cex"), plot.lty = 1, digits = .Options$digits, ...,
main = NULL, xlab = NULL, ylab = NULL, type = "l")
{
pi.type <- match.arg(pi.type, c("upper", "lower"))
if (is.null(range.ratio.of.means) || !all(is.finite(range.ratio.of.means)) ||
!is.vector(range.ratio.of.means, mode = "numeric") ||
length(range.ratio.of.means) != 2)
stop(paste("'range.ratio.of.means' must be a numeric vector of length 2",
"with no missing (NA), infinite(-Inf, Inf), or undefined(NaN) values"))
min.x <- range.ratio.of.means[1]
max.x <- range.ratio.of.means[2]
if (min.x >= max.x)
stop("The second element of 'range.ratio.of.means' must be larger than the first")
if (!is.vector(n.points, mode = "numeric") || length(n.points) !=
1 || n.points != trunc(n.points) || n.points < 2)
stop("'n.points' must be an integer larger than 1")
if (is.null(n) || !is.finite(n) || !is.vector(n, mode = "numeric") ||
length(n) != 1 || n < 2 || n != trunc(n))
stop("'n' must be an integer greater than 1")
if (is.null(df) || !is.finite(df) || !is.vector(df, mode = "numeric") ||
length(df) != 1 || df != trunc(df) || any(df < 1))
stop("'df' must be a positive integer")
if (is.null(k) || !is.finite(k) || !is.vector(k, mode = "numeric") ||
length(k) != 1 || k != trunc(k) || any(k < 1))
stop("'k' must be a positive integer")
if (is.null(n.geomean) || !is.finite(n.geomean) || !is.vector(n.geomean,
mode = "numeric") || length(n.geomean) != 1 || n.geomean !=
trunc(n.geomean) || any(n.geomean < 1))
stop("'n.geomean' must be a positive integer")
if (is.null(cv) || !is.finite(cv) || length(cv) != 1 || cv <=
.Machine$double.eps)
stop("'cv' must be a positive scalar")
if (is.null(conf.level) || !is.finite(conf.level) || !is.vector(conf.level,
mode = "numeric") || length(conf.level) != 1 || conf.level <=
.Machine$double.eps || conf.level >= 1 - .Machine$double.eps) {
stop("'conf.level' must be a scalar between 0 and 1")
}
ratio.string <- "(Future Mean) / (Background Mean)"
pi.string <- switch(pi.type, lower = "(Lower One-Sided PI)",
upper = "(Upper One-Sided PI)")
n.string <- paste("n =", n)
if (df != n - 1)
n.string <- paste(n.string, ", df = ", df, sep = "")
if (n.geomean != 1)
n.string <- paste(n.string, ", n.geomean = ", n.geomean,
sep = "")
k.string <- paste("k =", k)
cv.string <- paste("CV =", format(cv, digits = digits))
if (plot.it)
gen.gp.list <- checkGraphicsPars(...)$gen.gp.list
x <- seq(min.x, max.x, length = n.points)
y <- predIntLnormAltTestPower(n = n, df = df, n.geomean = n.geomean,
k = k, ratio.of.means = x, cv = cv, pi.type = pi.type,
conf.level = conf.level)
if (is.null(xlab))
xlab <- ratio.string
if (is.null(ylab))
ylab <- "Power"
if (is.null(main))
main <- paste("Power vs. Ratio of Means for Lognormal Prediction Interval with\n",
n.string, ", ", k.string, ", ", cv.string, ", and Confidence Level = ",
format(conf.level, digits = digits), " ", pi.string,
sep = "")
if (plot.it) {
if (!add) {
plot(x, y, type = "n", main = "", sub = "", ...,
xlab = xlab, ylab = ylab)
arg.list <- c(gen.gp.list, list(main = main))
do.call("title", arg.list)
arg.list <- c(list(x = x, y = y), gen.gp.list, list(type = type,
col = plot.col, lwd = plot.lwd, lty = plot.lty))
do.call("lines", arg.list)
}
else {
arg.list <- c(list(x = x, y = y), gen.gp.list, list(type = type,
col = plot.col, lwd = plot.lwd, lty = plot.lty))
do.call("lines", arg.list)
}
}
ret.list <- list(x, y)
names(ret.list) <- c("ratio.of.means", "power")
invisible(ret.list)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.