I would like to see if including some covariates will give me an AIC which is smaller than the null model, while working with conditional logistic regression in R (discrete choice).
I realize I can build a model, such as
mymodel <- clogit(choice ~ dark+soft+nuts + strata(ID), data=candy)
and get the AIC by using
extractAIC(mymodel)[2]
But I am a little unsure as to how I can create a null model to compare this against. Any advice would be greatly appreciated.