Nothing
print.intervalEstimateCensored <-
function (x, conf.cov.sig.digits = .Options$digits, limits.sig.digits = .Options$digits,
...)
{
ncxn <- nchar(x$name)
if (!is.null(x$parameter)) {
cat(x$name, " Interval for:", space(33 - ncxn - 14),
x$parameter, "\n\n", sep = "")
}
if (!is.null(x$sample.size))
cat("Assumed Sample Size:", space(13), format(x$sample.size,
..., nsmall = 0), "\n\n", sep = "")
if (x$name == "Tolerance") {
cat(x$name, " Interval Coverage:", space(33 - ncxn -
19), paste(format(100 * x$coverage, digits = conf.cov.sig.digits),
"%", sep = ""), "\n\n", sep = "")
cat("Coverage Type:", space(19), x$coverage.type, "\n\n",
sep = "")
}
if (!is.null(x$method)) {
cat(x$name, " Interval Method:", space(33 - ncxn - 17),
x$method, "\n\n", sep = "")
if (x$method == "Bootstrap") {
cat("Number of Bootstraps:", space(12), x$n.bootstraps,
"\n\n", sep = "")
if (!is.null(x$no.cen.obs.count)) {
cat(paste("Number of Bootstrap Samples\n", "With No Censored Values:",
space(9), sep = ""), x$no.cen.obs.count, "\n\n",
sep = "")
}
if (!is.null(x$too.few.obs.count)) {
cat(paste("Number of Times Bootstrap\n", "Repeated Because Too Few\n",
"Uncensored Observations:", space(9), sep = ""),
x$too.few.obs.count, "\n\n", sep = "")
}
}
if (x$method == "Generalized Pivotal Quantity")
cat("Number of Monte Carlos:", space(10), x$nmc,
"\n\n", sep = "")
}
cat(x$name, " Interval Type:", space(33 - ncxn - 15), x$type,
"\n\n", sep = "")
if (!is.null(x$conf.level)) {
cat("Confidence Level:", space(16), paste(format(100 *
x$conf.level, digits = conf.cov.sig.digits), "%",
sep = ""), "\n\n", sep = "")
}
if (!is.null(x$limit.ranks))
cat(paste(x$name, " Limit Rank(s):", space(33 - ncxn -
16), sep = ""), x$limit.ranks, "\n\n", sep = " ")
if (x$name == "Prediction") {
rule <- x$rule
standard.rule <- is.null(rule) || rule == "k.of.m"
names.x <- names(x)
if (is.element("r", names.x) && x$r > 1) {
simultaneous <- TRUE
string1 <- paste("\n(per Sampling Occasion):", space(9),
sep = "")
string2 <- string1
}
else {
simultaneous <- FALSE
string1 <- paste(":", space(9), sep = "")
string2 <- paste(":", space(13), sep = "")
}
if ((!is.null(x$n.sum) && x$n.sum == 1) || (!is.null(x$n.mean) &&
x$n.mean == 1)) {
if (standard.rule) {
if (is.element("m", names.x) && x$k < x$m) {
cat("Minimum Number of\nFuture Observations\n",
"Interval Should Contain", string1, x$k,
"\n\n", sep = "")
cat("Total Number of\nFuture Observations",
string2, x$m, "\n\n", sep = "")
}
else {
cat("Number of Future Observations:", space(3),
x$k, "\n\n", sep = "")
}
if (simultaneous) {
cat("Number of Future\nSampling Occasions:",
space(14), x$r, "\n\n", sep = "")
}
}
else {
cat("Maximum Number of\nFuture Observations",
string2, x$m, "\n\n", sep = "")
if (simultaneous) {
cat("Number of Future\nSampling Occasions:",
space(14), x$r, "\n\n", sep = "")
}
}
}
else {
if (!is.null(x$n.sum)) {
if (is.element("m", names.x) && x$k < x$m) {
cat("Minimum Number of\nFuture Sums\n", "Interval Should Contain",
string1, x$k, "\n\n", sep = "")
cat("Total Number of\nFuture Sums", string2,
x$m, "\n\n", sep = "")
}
else {
cat("Number of Future Sums:", space(11), x$k,
"\n\n", sep = "")
}
if (simultaneous) {
cat("Number of Future\nSampling Occasions:",
space(14), x$r, "\n\n", sep = "")
}
cat("Sample Size for Sums:", space(12), x$n.sum,
"\n\n", sep = "")
}
else {
if (is.element("m", names.x) && x$k < x$m) {
cat("Minimum Number of\nFuture Averages\n",
"Interval Should Contain", string1, x$k,
"\n\n", sep = "")
cat("Total Number of\nFuture Averages", string2,
x$m, "\n\n", sep = "")
}
else {
cat("Number of Future Averages:", space(7),
x$k, "\n\n", sep = "")
}
if (simultaneous) {
cat("Number of Future\nSampling Occasions:",
space(14), x$r, "\n\n", sep = "")
}
cat("Sample Size for Averages:", space(8), x$n.mean,
"\n\n", sep = "")
}
}
}
cat(x$name, " Interval:", space(33 - ncxn - 10), paste(paste(format(names(x$limits),
justify = "left"), format(x$limits, digits = limits.sig.digits,
nsmall = 0), sep = " = "), collapse = paste("\n", space(33),
sep = "")), "\n\n", sep = "")
invisible(x)
}
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.