Plotting Functions
plot_beta(obj, base_theme = theme_grey, lab_list = NULL, theme_list = NULL)
obj
: A simrel objectbase_theme
: Base ggplot theme to applylab_list
: List of labs arguments such as x, y, title, subtitletheme_list
: List of theme arguments to apply in the plotA plot of true regression coefficients for the simulated data
sobj <- multisimrel() sobj %>% plot_beta( base_theme = ggplot2::theme_bw, lab_list = list( title = "Regression Coefficients", subtitle = "From Simulation", y = "True Regression Coefficients" ), theme_list = list( legend.position = "bottom" ) )