Nothing
calculateRatio <- function(temp, lik, EMiteration, Conv, L2iterationReset)
{
if ((temp < lik) & (EMiteration > 3) & ( ! L2iterationReset))
{ # Likelihood decreased indicating precision has been reached (not due to having been reset in this iteration)
invisible(Conv)
}else
{
invisible(abs((temp - lik) / lik) )
}
}
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.