The Triangulator is a Shiny user interface designed to help derive consensus estimates of a population quantity (e.g. a population size, a proportion, a mean, etc.) from multiple empirical estimates. Underlying the application is a Bayesian multi-level model, and the steps of the consensus process proceed as follows:
- Gather experts and stakeholders.
- Obtain all available empirical estimates of the population quantity.
- Elicit from them their beliefs about the plausible values of the population quantity (i.e. the prior).
- With experts, evaluate the methodologies used to generate each estimate and assign it a "Study Confidence" from 0 to 100%.
- Enter the above information into the Shiny application and run the analysis to get a consensus estimate.
- Report the consensus estimate and its credible interval. Additionally, report information in the "Data and Input Parameters" field so that the estimate is reproducible and the stakeholder decisions are fully inspectable.
Check out the manual at https://fellstat.github.io/triangulator/
You can install the development version of triangulator from GitHub with:
# install.packages("devtools")
devtools::install_github("fellstat/triangulator")
Launch the Shiny application with:
library(triangulator)
launch_triangulator()