Nothing
## File Name: reglca_normalize_probabilities.R
## File Version: 0.04
reglca_normalize_probabilities <- function(parm)
{
eps <- 1E-10
probs <- cumsum(parm)
M <- max(probs)
if (M > 1){
probs <- probs / ( M + eps )
parm <- c( probs[1], diff(probs) )
}
return(parm)
}
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.