Nothing
# not currently used internally or exported; can we remove it?
build_likelihood_function <- function(
cross_sectional_data,
longitudinal_parameter_samples,
noise_params,
antigen_isos = names(cross_sectional_data)) {
likelihood_function <- function(lambda) {
res <- 0
# add terms, e.g. for other antibodies
for (cur_antigen in antigen_isos)
{
res <- res +
f_dev(
lambda = lambda,
csdata = cross_sectional_data[[cur_antigen]],
lnpars = longitudinal_parameter_samples[[cur_antigen]],
cond = noise_params[[cur_antigen]]
)
}
return(res)
}
return(likelihood_function)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.