Solved – GLM model selection using AICc with Tweedie distribution

aicgeneralized linear modelmodel selectionrtweedie-distribution

I have two questions regarding use of Tweedie GLM in R. I am new in using this distribution and despite a thorough search on different forums, I could not find my answers.

I am now running several GLM models using Tweedie distribution because of compound Poisson-Gamma distribution of my data with a spike around zero.

I can successfully run the models but firstly, AIC is not provided in the model results. There is a command for AIC calculation (AICtweedie) but I could not find anything calculating AICc (as my data points are few). Is this just matter of lack of enough interest in Tweedie that such a command doesn't exist or there is some logical or technical constraints behind it?

Second, use of packages such as MuMin or glmulti is not possible when using Tweedie distribution (because AIC values are not calculated in Tweedie models). Has anyone got any similar packages to run multiple models and rank them based on AIC(c) when using Tweedie? Running around 500 models and type down the AIC values is not easily possible.

Best Answer

You can use AICtweedie directly in MuMIn's functions, just specify it as a rank argument. Alternatively, you could write a wrapper around AICtweedie.

Related Question