Nothing
lda_train <- function(data){
new.frm <- data.frame(data)
z <- lda(formula=as.formula(paste("X", ncol(data), " ~ .", sep="")), data = new.frm, tol = sqrt(.Machine$double.eps))#, prior = rep(1, dimension)/dimension)
return (z)
}
lda_classify <- function(objects, lda){
z <- predict(lda, data.frame(objects))$class
return (z)
}
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.