aictabCustom(logL, K, modnames = NULL, second.ord = TRUE, nobs = NULL,
sort = TRUE, c.hat = 1)
NULL
, the function
uses the names in the cand.set list of candidate models (i.e., a named
list). If no names appearTRUE
, the function returns the second-order
Akaike information criterion (i.e., AICc).TRUE
, the model selection table is ranked according
to the (Q)AIC(c) values.c_hat
. Note that values of
c.hat
different from 1 are only appropriate for binomial GLM's
with trials > 1 (i.e., success/triaictabCustom
creates an object of class aictab
with the
following components:aictabCustom
constructs a model selection table based on one of
the four information criteria: AIC, AICc, QAIC, and QAICc. This
function is most useful when model input is imported into R from other
software (e.g., Program MARK, PRESENCE) or for model classes that are
not yet supported by aictab
.Burnham, K. P., Anderson, D. R. (2002) Model Selection and Multimodel Inference: a practical information-theoretic approach. Second edition. Springer: New York.
Dail, D., Madsen, L. (2011) Models for estimating abundance from repeated counts of an open population. Biometrics 67, 577--587.
Lebreton, J.-D., Burnham, K. P., Clobert, J., Anderson, D. R. (1992) Modeling survival and testing biological hypotheses using marked animals: a unified approach with case-studies. Ecological Monographs 62, 67--118.
MacKenzie, D. I., Nichols, J. D., Lachman, G. B., Droege, S., Royle, J. A., Langtimm, C. A. (2002) Estimating site occupancy rates when detection probabilities are less than one. Ecology 83, 2248--2255.
Mazerolle, M. J. (2006) Improving data analysis in herpetology: using Akaike's Information Criterion (AIC) to assess the strength of biological hypotheses. Amphibia-Reptilia 27, 169--180.
Royle, J. A. (2004) N-mixture models for estimating population size from spatially replicated counts. Biometrics 60, 108--115.
AICcCustom
, confset
, c_hat
,
evidence
, modavgCustom
##vector with model LL's
LL <- c(-38.8876, -35.1783, -64.8970)
##vector with number of parameters
Ks <- c(7, 9, 4)
##create a vector of names to trace back models in set
Modnames <- c("Cm1", "Cm2", "Cm3")
##generate AICc table
aictabCustom(logL = LL, K = Ks, modnames = Modnames, nobs = 121,
sort = TRUE)
Run the code above in your browser using DataLab