Models: The list of the fitted models

Description Format References Examples

Description

This dataset contains the 17 models used in the paper. These models have been fitted on the complete dataset!

Format

A list with the 17 outputs of the function fit_all_models.

References

This study.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
## The names of the models:
names(Models)

## The AIC of model 1:
Models[["mod1"]]$AIC

## The convergence status of model 1:
Models[["mod1"]]$message

## Studying the effect of potential convergence issues:
table(unlist(lapply(Models, function(mod) mod$convergence))) ## 1 = perfect convergence
### Conclusion: there is no sign of convergence issue.
### All 17 models fitted without any trouble.

## The estimates from model1:
data.frame(estimates = Models[["mod1"]]$param_matrix[, "value"])

courtiol/SileR documentation built on May 16, 2020, 8:10 p.m.