Nothing
quantMask<-function(x,quant=.7){
if(length(dim(x))>3){x<-colMedian(arrMat(x))}
if(length(dim(x))==2){x<-colMedian(x)}
if(length(dim(x))==3){x<-as.vector(x)}
if(is.vector(x)){maskThresh<-quantile(x,quant)}
maskvec<-ifelse(x <= maskThresh,0,1)
return(maskvec)
}
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.