View source: R/plot_boostrap_model_frequency.R
plot_bootstrap_model_frequency | R Documentation |
From the results of a call to mobster_boostrap
, and
the results of a call to bootstrapped_statistics
, a barplot with
the model frequency is produced
plot_bootstrap_model_frequency(bootstrap_results, bootstrap_statistics)
bootstrap_results |
Results of a call to |
bootstrap_statisticsResults |
of a call to |
A barplot of the boostrapped model frequency
# Random small dataset
dataset = random_dataset(N = 200, seed = 123, Beta_variance_scaling = 100)
x = mobster_fit(dataset$data, auto_setup = 'FAST')
# Just 5 resamples of a nonparametric bootstrap run, disabling the parallel engine
options(easypar.parallel = FALSE)
boot_results = mobster_bootstrap(x$best, n.resamples = 5, auto_setup = 'FAST')
boot_stats = bootstrapped_statistics(x$best, boot_results)
plot_bootstrap_model_frequency(boot_results, boot_stats)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.