R/calcul_BIC_theta.R

Defines functions calcul_BIC_theta

# ' Calcul bic local
# ' 
calcul_BIC_theta <- function(theta = theta, X = X, Y = Y, k = k) { # ici k est la complexit? totale
  return(-2 * log_likelihood(theta = theta, Y = Y, X = X) + (k * log(length(Y))))
}

Try the CorReg package in your browser

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

CorReg documentation built on Feb. 20, 2020, 5:07 p.m.