Nothing
#' @export
#' @keywords internal
print.SIR_threshold_opt <- function(x,...) {
if (!inherits(x, "SIR_threshold_opt"))
stop("Only use with \"SIR_threshold_opt\" obects")
cat("\nCall:\n", deparse(x$call), "\n", sep = "")
res <- matrix(x$b, ncol = 1)
if (!is.null(colnames(x$b))) {
rownames(res) <- colnames(x$b)
} else {
rownames(res) <- paste("X", 1:x$p, sep = "")
}
colnames(res) <- "Estimated direction"
cat("\nResults of EDR directions estimation:\n")
cat("\n")
prmatrix(signif(res, 3))
cat("\n")
}
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.