Package: EcoDiet 2.0.1
EcoDiet: Estimating a Diet Matrix from Biotracer and Stomach Content Data
Biotracers and stomach content analyses are combined in a Bayesian hierarchical model to estimate a probabilistic topology matrix (all trophic link probabilities) and a diet matrix (all diet proportions). The package relies on the JAGS software and the 'jagsUI' package to run a Markov chain Monte Carlo approximation of the different variables.
Authors:
EcoDiet_2.0.1.tar.gz
EcoDiet_2.0.1.tar.gz(r-4.5-noble)EcoDiet_2.0.1.tar.gz(r-4.4-noble)
EcoDiet_2.0.1.tgz(r-4.4-emscripten)EcoDiet_2.0.1.tgz(r-4.3-emscripten)
EcoDiet.pdf |EcoDiet.html✨
EcoDiet/json (API)
NEWS
# Install 'EcoDiet' in R: |
install.packages('EcoDiet', repos = 'https://cloud.r-project.org') |
Bug tracker:https://github.com/pyhernvann/ecodiet/issues
- mcmc_output_example - The MCMC output for running the example dataset
Last updated 1 years agofrom:ccbbaba659. Checks:3 OK. Indexed: no.
Target | Result | Latest binary |
---|---|---|
Doc / Vignettes | OK | Mar 21 2025 |
R-4.5-linux | OK | Mar 21 2025 |
R-4.4-linux | OK | Mar 21 2025 |
Exports:diagnose_modelplot_dataplot_priorplot_resultspreprocess_datarun_modelwrite_model
Dependencies:clicodacolorspacecpp11crayondplyrfansifarverforcatsgenericsGGallyggmcmcggplot2ggstatsgluegtablehmsisobandjagsUIlabelinglatticelifecyclemagrittrMASSMatrixmgcvmunsellnlmepatchworkpillarpkgconfigplyrprettyunitsprogresspurrrR6RColorBrewerRcpprjagsrlangscalesstringistringrtibbletidyrtidyselectutf8vctrsviridisLitewithr
Introduction - How to use EcoDiet
Rendered fromintroduction_EcoDiet.Rmd
usingknitr::rmarkdown
on Mar 21 2025.Last update: 2024-03-26
Started: 2020-03-05
EcoDiet explored on a realistic example
Rendered fromrealistic_example.Rmd
usingknitr::rmarkdown
on Mar 21 2025.Last update: 2024-03-26
Started: 2020-03-05
How to deal with convergence problems
Rendered fromconvergence_problems.Rmd
usingknitr::rmarkdown
on Mar 21 2025.Last update: 2023-01-06
Started: 2020-03-05
Citation
To cite EcoDiet in publications use:
Pierre-Yves Hernvann, Didier Gascuel, Dorothee Kopp, Marianne Robert, Etienne Rivot (2022). EcoDiet: A hierarchical Bayesian model to combine stomach, biotracer, and literature data into diet matrix estimation.
To know more about the EcoDiet project, go see https://www.researchgate.net/project/EcoDiet-model-Incorporating-multiple-data-types-into-the-estimation-of-diet-matrices
Corresponding BibTeX entry:
@Article{, title = {EcoDiet: A hierarchical Bayesian model to combine stomach, biotracer, and literature data into diet matrix estimation}, author = {Pierre Yves Hernvann and Didier Gascuel and Dorothee Kopp and Marianne Robert and Etienne Rivot}, journal = {Ecological Applications}, year = {2022}, volume = {32}, number = {2}, pages = {e2521}, url = {https://doi.org/10.1002/eap.2521}, }
Readme and manuals
EcoDiet

Description
The EcoDiet
package estimates a probabilistic topology matrix (all trophic link probabilities) and a diet matrix (all diet proportions) for food webs by combining biotracer and stomach content analyses in a Bayesian hierarchical model.
The full model and its application to a real dataset are described in Hernvann et al. (in press). When using EcoDiet
, please cite both Hernvann et al. and the package (citation("EcoDiet")
):
Hernvann, P. Y., Gascuel, D., Kopp, D., Robert, M., & Rivot, E. (2022). EcoDiet: A hierarchical Bayesian model to combine stomach, biotracer, and literature data into diet matrix estimation. Ecological Applications, 32(2), e2521.
Théro, H., Rivot, E., Robert, M., Guitton, J., Kopp, D., Gascuel, D., et Hernvann, P.Y. (2020) EcoDiet. R package. doi: 10.5281/zenodo.4081537
To access the citation and DOI of the latest development version, check the Zenodo repository
Using EcoDiet
R installation
EcoDiet
is a R package so, first and foremost, you should download and install/update R.
JAGS installation
EcoDiet
relies on the JAGS software, so you also need to download and install/update JAGS. You should install the last version of JAGS so that your model will run at maximal speed.
For Windows users
Download JAGS from here, then follow the indications.
For MacOS and Linux users
Try this command if you are on MacOS:
sudo brew update
sudo brew install jags
or this command if you are on Linux:
sudo apt-get update
sudo apt-get install jags
If you get an error message during installation, check this post from Yu-Sung Su's blog.
EcoDiet installation
To download the EcoDiet
package from GitHub, you need to use the install_github
function from the devtools
package to load it. First, install the devtools
package:
install.packages("devtools")
Once devtools
has been installed, you can load the EcoDiet package:
devtools::install_github("pyhernvann/EcoDiet", build_vignettes = TRUE, dependencies = TRUE)
Since the 6th of May 2020 EcoDiet
is also available on the CRAN. You can directly install it from R and load it:
install.packages("EcoDiet")
library("EcoDiet")
Learn how to use EcoDiet
Several vignettes explain how to use the package. Run the following in R and click on the HTML button next to "1. Introduction - How to use EcoDiet":
browseVignettes("EcoDiet")
Or use this if the former does not work:
vignette("introduction_EcoDiet")
Help Manual
Help page | Topics |
---|---|
Diagnose EcoDiet model | diagnose_model |
Example biotracer data | example_biotracer_data |
Example literature diets | example_literature_diets |
Example stomach data | example_stomach_data |
The MCMC output for running the example dataset | mcmc_output_example |
Plot the input data | plot_data |
Plot the prior means or probability distribution(s) | plot_prior |
Plot the posterior means or probability distribution(s) | plot_results |
Check and preprocess the data | preprocess_data |
Realistic biotracer data | realistic_biotracer_data |
Realistic literature diets | realistic_literature_diets |
Realistic stomach data | realistic_stomach_data |
Run the EcoDiet model | run_model |
Write the EcoDiet model in BUGS | write_model |