I have fitted different probability distributions to my data. To compare the goodness-of-fit (GOF) and decide the best distribution, I use AIC as the criteria. While I can easily extract GOF for the "fitdist" objects e.g.
fit.gamma <- fitdist(x, "gamma")
fit.norm <- fitdist(x, "norm")
aic.gamma <- fit.gamma$aic
shape.gamma <- fit.gamma$estimate[1]
and so on ...
But for
fit.gev = fevd(x ,type="GEV") # this uses fevd (from 'extRemes')
while we can display fevd's objects using 'summary(fit.gev)', there does not seem a way to extract those individual parameters (AIC or scale etc) for their use in subsequent calculations.
Any help will be greatly appreciated. Thank you.