Nothing
referenceQuantiles <-
function(data){
sortedData <- apply(data, 2, sort, na.last=TRUE)
Reference.Quantiles <- rowMeans(sortedData, na.rm=TRUE)
indexNA <- which(is.na(Reference.Quantiles))
if(length(indexNA)>0) Reference.Quantiles <- Reference.Quantiles[-indexNA]
return(Reference.Quantiles)
}
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.