Nothing
truncquant <- function(prop,q=0.9){
qmax <- stats::quantile(prop,q)
qmin <- stats::quantile(prop,1-q)
prop[prop >= qmax] <- qmax
prop[prop<=qmin] <- qmin
return(prop)
}
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.