model.comp | R Documentation |
Calculate the AIC and BIC
model.comp(m1 = NULL, m2 = NULL)
m1 |
The asreml object |
m2 |
The asreml object |
The AIC and BIC of m1
and m2
Dave <Dave@vsni.co.uk>
asreml.lrt
library(asreml)
library(vsnc)
data(oats,package = "asreml")
head(oats)
m1 <- asreml(yield ~ 1, random=~Nitrogen*Variety, data=oats)
m2 <- asreml(yield ~ 1, random=~Nitrogen*Variety+Blocks, data=oats)
m3 <- asreml(yield ~ 1, random=~Nitrogen*Variety+Blocks/Wplots, data=oats)
model.comp(m1)
model.comp(m3,m2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.