Nothing
coef.fda <-
function (object, ...)
{
fit <- object$fit
Coefs <- fit$coef
if (is.null(Coefs))
stop("No explicit coefficients in this formulation")
dimension <- object$dimension
Coefs <- Coefs %*% object$theta[, seq(dimension), drop = FALSE]
lambda <- object$values
alpha <- sqrt(lambda[seq(dimension)])
sqima <- sqrt(1 - lambda[seq(dimension)])
Coefs <- scale(Coefs, FALSE, sqima * alpha)
attr(Coefs,"scaled:scale")=NULL
Coefs
}
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.