Nothing
cond.index <- function(formula, data, ...)
{
reg<-lm(formula, data, x=TRUE, ...)
x.scale <- reg$x%*%diag(1/sqrt(colSums(reg$x^2)))
x.scale.svd<- svd(t(x.scale)%*%x.scale)
ci <- sqrt(max(x.scale.svd$d)/x.scale.svd$d)
return(ci)
}
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.