Nothing
#' @export
fitted.efp <- function(object, type = "p", ...) {
type <- match.arg(type, c("p", "pi", "both", "lpmatrix"))
if (type == "p") {
object$p
} else if (type == "pi") {
object$pi
} else if (type == "both") {
object[c("p", "pi")]
} else if (type == "lpmatrix") {
object$G
}
}
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.