Nothing
coef.ipsecr <- function (object, alpha=0.05, ...) {
beta <- object$beta
if (!is.null(object$beta.vcv))
sebeta <- suppressWarnings(sqrt(diag(object$beta.vcv)))
else sebeta <- rep(NA, length(beta))
z <- abs(qnorm(1-alpha/2))
temp <- data.frame(
row.names = object$betanames,
beta = beta,
SE.beta = sebeta,
lcl = beta - z*sebeta,
ucl = beta + z*sebeta
)
attr(temp, 'alpha') <- alpha
temp
}
############################################################################################
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.