gtoxAICProb | R Documentation |
gtoxAICProb
Calculates the probability that the model best represents
the data based on the AIC value for each model.
gtoxAICProb(...)
... |
Numeric vectors of AIC values |
The function takes vectors of AIC values. Each vector represents the model AIC values for multiple observation sets. Each vector must contain the same number and order of observation sets. The calculation assumes every possible model is accounted for, and the results should be interpreted accordingly.
A vector of probability values for each model given, as a list.
gtoxFit
, AIC
for more information
about AIC values.
## Returns the probability for each model, given models with AIC values
## ranging from 80 to 100
gtoxAICProb(80, 85, 90, 95, 100)
## Also works for vectors
m1 <- c(95, 195, 300) ## model 1 for three different observations
m2 <- c(100, 200, 295) ## model 2 for three different observations
gtoxAICProb(m1, m2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.