This function should be used when there were multiple time step in which biomarker quantities were observed
Usage
plot_obs_biomarkers_paired_sample(observed_biomarker_states)
Arguments
- observed_biomarker_states
The reshaped data set containing observed biomarker quantities for individuals at all time steps for each biomarker
Value
A plot of observed biomarker quantities for all individuals and biomarkers is returned
Examples
library(dplyr)
example_biomarker_states$observed <- example_biomarker_states$value
example_biomarker_states_subset <- example_biomarker_states %>% dplyr::filter(t %in% c(1,120))
plot_obs_biomarkers_paired_sample(example_biomarker_states_subset)