View source: R/log_likelihood.R
log_likelihood | R Documentation |
Calculates the log-likelihood of a set of cross-sectional antibody response
data, for a given incidence rate (lambda
) value.
log_likelihood(
lambda,
pop_data,
curve_params,
noise_params,
antigen_isos = get_biomarker_levels(pop_data),
verbose = FALSE,
...
)
lambda |
a numeric vector of incidence parameters, in events per person-year |
pop_data |
a |
curve_params |
a
|
noise_params |
a
|
antigen_isos |
Character vector listing one or more antigen isotypes.
Values must match |
verbose |
logical: if TRUE, print verbose log information to console |
... |
additional arguments passed to other functions (not currently used). |
the log-likelihood of the data with the current parameter values
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 params
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)
# Calculate log-likelihood
ll_AG <- log_likelihood(
pop_data = xs_data,
curve_params = curve,
noise_params = cond,
antigen_isos = c("HlyE_IgG", "HlyE_IgA"),
lambda = 0.1
) %>% print()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.