plot_infection_history_chains_time | R Documentation |
Plot MCMC trace for infections per year
plot_infection_history_chains_time(
inf_chain,
burnin = 0,
times = NULL,
n_alive = NULL,
pad_chain = TRUE
)
inf_chain |
the data table with infection history samples from |
burnin |
optionally remove all samp_no < burnin from the chain |
times |
vector of integers, if not NULL, only plots a subset of years (where 1 is the first year eg. 1968) |
n_alive |
if not NULL, then divides number of infections per year by number alive to give attack rates rather than total infections |
pad_chain |
if TRUE, pads the infection history MCMC chain to have entries for non-infection events |
a list of two ggplot objects - the MCMC trace and MCMC densities
plot_infection_history_chains_indiv
Other infection_history_plots:
calculate_infection_history_statistics()
,
plot_antibody_data()
,
plot_antibody_predictions()
,
plot_cumulative_infection_histories()
,
plot_estimated_antibody_model()
,
plot_individual_number_infections()
,
plot_infection_history_chains_indiv()
,
plot_model_fits()
,
plot_posteriors_infhist()
,
plot_total_number_infections()
## Not run:
data(example_inf_chain)
data(example_antibody_data)
data(example_antigenic_map)
times <- example_antigenic_map$inf_times
n_alive_group <- get_n_alive_group(example_antibody_data, possible_exposure_times,melt_dat = TRUE)
n_alive_group$j <- possible_exposure_times[n_alive_group$j]
plot_infection_history_chains_time(example_inf_chain, 0, sample(1:length(times),10),n_alive,FALSE)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.