Nothing
Meanrobust=function(x, p=10,na.rm=TRUE){
if(p>=1){
p=p/100
}
if(is.matrix(x)){
mhat<-c()
for(i in 1:dim(x)[2]){
mhat[i]<-mean(x[,i],trim=p,na.rm=na.rm)
}
} else mhat<-mean(x,trim=p,na.rm=na.rm)
return (mhat)
}
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.