collector is an R package for conducting interviews with subject matter experts (SMEs) on the risk scenarios facing an organization. It offers functions for the following stages of input collection:
Collector is now available on CRAN.
If you wish to run the development (and potentially bleeding edge) version, you can install directly from GitHub via the following remotes
command.
See the package website for reference. The basic flow for preparing for interviews with your SMEs, processing the results, and generating parameters for simulation via evaluator is:
Build questions and define SME expertise
Read in the question set. See read_questions()
for more information.
Generate materials for interviewing a SME.
Read in the responses from your SMEs. See read_responses()
documentation for more information.
Fit the SME answers to distributions.
Combine distributions into final parameters, applying weighting based on each SMEs level of calibration.
sme_weightings <- generate_weights(questions, responses)
scenario_parameters <- left_join(scenario_answers_fitted, sme_weightings, by = "sme") %>%
combine_scenario_parameters()
capability_parameters <- left_join(capability_answers_fitted, sme_weightings, by = "sme") %>%
combine_capability_parameters()
Build quantitative scenarios for evaluator.
This project is governed by a Code of Conduct. By participating in this project you agree to abide by these terms.
The MIT License applies.