R/calculateBIC.R

Defines functions calculateBIC

Documented in calculateBIC

calculateBIC = function(nPara, clTimepoints, last.lik)
{
    invisible( (-2 * last.lik) + (nPara * log(sum(clTimepoints))) )
}

Try the ClusterVAR package in your browser

Any scripts or data that you put into this service are public.

ClusterVAR documentation built on April 4, 2025, 2:20 a.m.