I couldn't get them via normal methods.
> x <- rnorm(1000, 10, 1)
> y <-rgamma(1000, shape=1, rate=x)
> myfit <- vglm(y~x, family=gammaff(link="reciprocal"))
> summary(myfit)
Call:
vglm(formula = y ~ x, family = gammaff(link = "reciprocal"))
Pearson residuals:
Min 1Q Median 3Q Max
1/mu -6.4126 -0.404 0.32118 0.69281 0.99917
Coefficients:
Estimate Std. Error z value
(Intercept) 0.050464 2.9415 0.017156
x 0.987358 0.2974 3.320015
Number of linear predictors: 1
Name of linear predictor: 1/mu
(Estimated) Dispersion Parameter for gammaff family: 0.96865
Residual deviance: 1106.494 on 998 degrees of freedom
Number of iterations: 6
> AIC(myfit)
numeric(0)
> showMethods("AIC")
Function: AIC (package stats)
object="ANY"
object="cao"
object="qrrvglm"
object="rrvglm"
object="vgam"
object="vglm"
object="vlm"
Here it referes to AIC.vglm
, but that doesn't even exist.
The closest function I found is AICrrvglm
or AICvgam
, neither works.
The problem seems to be that
logLik.vlm(myfit)
returnsNULL
. In the details of?logLik.vlm
, it states thatIn your case the log-likelihood is not computed: It is documented in ?"vglmff-class" about the loglikelihood:
Apparently
gammaff
does not contain this optional slot and therefore the loglikelihood was not computed and so the AIC cannot be computed either.