R/AICweights.R

Defines functions AICweights

Documented in AICweights

	AICweights <- function(AIC){
	delta <- AIC - min(AIC)
	w <- exp(-(1/2) * delta)
	weight <- w/sum(w)
	list(AIC = AIC, delta = delta, weight = weight)
}

Try the spiderDev package in your browser

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

spiderDev documentation built on May 2, 2019, 5:23 p.m.