Nothing
QuantileNorm=function(Data, Quantile){
if(ncol(Data)==1)stop("Only 1 sample!")
QtilePt=apply(Data, 2, function(i)quantile(i, Quantile))
# Size= QtilePt * prod(QtilePt) ^ (-1/ncol(Data))
Size=10^(log10(QtilePt)-sum(log10(QtilePt))*(1/ncol(Data)) )
Size
}
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.