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 Sept. 6, 2019, 3 a.m.