plot_levels_seq_exp_4: Plot kernel density of samples in sequential tree

Description Usage Arguments Value Examples

View source: R/analysis_exp_4.R

Description

This function plots the kernel densities of the samples in the sequential tree (in red) and the tempered target densities that they were targetting (in blue)

Usage

1
2
plot_levels_seq_exp_4(seq_result, from, to, plot_rows, plot_columns,
  bw = rep("nrd0", length(seq_result$samples)))

Arguments

from, to

the range over which the function will be plotted: integer (if want to have it constant throughout) or vector of length L, where L is the number of levels in the hierarchy

plot_rows

number of rows in plot (should make is so plot_rows x plot_columns = L)

plot_columns

number of rows in plot (should make is so plot_rows x plot_columns = L)

bw

the smoothing bandwidth used: integer (if want to have it constant throughout) or vector of length L, where L is the number of levels in the hierarchy

hier_result

sequential Monte Carlo fusion result

whole

boolean value: defaults to F, determines whether or not to plot kde for all samples in the level or for each node (T)

Value

none

Examples

1
2
3
4
5
6
input_samples <- base_rejection_sampler_exp_4(beta = 1/4, nsamples = 100000,  proposal_mean = 0, proposal_sd = 1.5, dominating_M = 1.4)
test <- parallel_sequential_fusion_TA_exp_4(N_schedule = rep(10000, 3), global_T = 1,
                                            start_beta = 1/4, base_samples = input_samples, study = T)

# plot results
plot_levels_seq_exp_4(test, from = -3, to = 3, plot_rows = 2, plot_columns = 2)

rchan26/exp4FusionRCPP documentation built on Nov. 6, 2019, 7:01 p.m.