loadAnalyses | R Documentation |
This function loads an analysis performed with
performAnalyses
loadAnalyses( scenario_numbers, analysis_numbers = rep(1, length(scenario_numbers)), load_path = tempdir() )
scenario_numbers |
A (vector of) positive integer(s) for the scenario number(s) |
analysis_numbers |
A (vector of) positive integer(s) for the analysis number(s),
Default: |
load_path |
A string providing a path where the scenarios are being stored,
Default: |
Returns an object of class analysis_list
Stephan Wojciekowski
performAnalyses
saveAnalyses
tempfile
trial_data <- createTrial( n_subjects = c(10, 20, 30), n_responders = c(1, 2, 3)) analysis_list <- performAnalyses( scenario_list = trial_data, target_rates = rep(0.5, 3), n_mcmc_iterations = 100) save_info <- saveAnalyses(analysis_list) analysis_list <- loadAnalyses(scenario_numbers = save_info$scenario_numbers, analysis_numbers = save_info$analysis_numbers, load_path = save_info$path)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.