saveAnalyses {bhmbasket}R Documentation

saveAnalyses

Description

This function saves an object of class analysis_list

Usage

saveAnalyses(analyses_list, save_path = tempdir(), analysis_numbers = NULL)

Arguments

analyses_list

An object of class analysis_list, as created with performAnalyses

save_path

A string for the path where the scenarios are being stored, Default: tempfile

analysis_numbers

A positive integer naming the analysis number. If NULL, the function will look for the number of saved analyses of the scenario in the directory and add 1, Default: NULL

Value

A named list of length 3 of vectors with scenario and analysis numbers and the save_path

Author(s)

Stephan Wojciekowski

See Also

performAnalyses loadAnalyses tempfile

Examples

  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)

[Package bhmbasket version 0.9.5 Index]