graph_loglik | R Documentation |
Graph log-likelihood of data
graph_loglik(
pop_data,
curve_params,
noise_params,
antigen_isos = pop_data %>% get_biomarker_levels(),
x = 10^seq(-3, 0, by = 0.1),
highlight_points = NULL,
highlight_point_names = "highlight_points",
log_x = FALSE,
previous_plot = NULL,
curve_label = paste(antigen_isos, collapse = " + "),
...
)
pop_data |
a |
curve_params |
a
|
noise_params |
a
|
antigen_isos |
Character vector listing one or more antigen isotypes.
Values must match |
x |
sequence of lambda values to graph |
highlight_points |
a possible highlighted value |
highlight_point_names |
labels for highlighted points |
log_x |
should the x-axis be on a logarithmic scale ( |
previous_plot |
if not NULL, the current data is added to the existing graph |
curve_label |
if not NULL, add a label for the curve |
... |
Arguments passed on to
|
a ggplot2::ggplot()
library(dplyr)
library(tibble)
# Load cross-sectional data
xs_data <-
sees_pop_data_pk_100
# Load curve parameters and subset for the purposes of this example
curve <-
typhoid_curves_nostrat_100 %>%
filter(antigen_iso %in% c("HlyE_IgA", "HlyE_IgG"))
# Load noise parameters
cond <- tibble(
antigen_iso = c("HlyE_IgG", "HlyE_IgA"),
nu = c(0.5, 0.5), # Biologic noise (nu)
eps = c(0, 0), # M noise (eps)
y.low = c(1, 1), # Low cutoff (llod)
y.high = c(5e6, 5e6)) # High cutoff (y.high)
# Graph the log likelihood
lik_HlyE_IgA <- # nolint: object_name_linter
graph_loglik(
pop_data = xs_data,
curve_params = curve,
noise_params = cond,
antigen_isos = "HlyE_IgA",
log_x = TRUE
)
lik_HlyE_IgA # nolint: object_name_linter
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.