Nothing
mse<-function(repstat, design){
v<-attr(repstat,"var")
center<-attr(v,"means")
if ((length(v)!=length(center)^2) && (length(v)==length(center))){
attr(repstat,"var")<-vcov(repstat)+(center-coef(repstat))^2*sum(design$rscales)*design$scale
} else {
attr(repstat,"var")<-as.matrix(vcov(repstat)+outer((center-coef(repstat)))*sum(design$rscales)*design$scale)
}
repstat
}
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.