R/varwiselogLik.R

Defines functions varwiselogLik

Documented in varwiselogLik

varwiselogLik <-
function(xx, D, glm.family) {
	n<-nrow(xx)
	fit<-vector("list", n)
	fit<-varwiselogLik.regression(xx=xx, D=D, glm.family=glm.family)
	# Extraktion log-Likelihood
	res<-matrix(NA, nrow=n, ncol=1)
	res[, 1]<-sapply(fit, function(x) {  deviance(x) })
	return(res)
}

Try the GlobalDeviance package in your browser

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

GlobalDeviance documentation built on May 2, 2019, 11:32 a.m.