Nothing
residuals.ellipsesummary <- function(object,...){
g <- object
resid.x <-g$pred.x-g$x
resid.y <-g$pred.y-g$y
resid.geometric <- sqrt(resid.x^2+resid.y^2)
return(data.frame("input"=resid.x,"output"=resid.y,"geometric"=resid.geometric))
}
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.