#' Create a \code{TMB::ADFun} object for the gamma likelihood.
#'
#' @param x Vector of observations.
#' @return A list as returned by \code{TMB::MakeADFun} representing the negative loglikelihood of a gamma distribution.
#' @export
gamma_ADFun <- function(x) {
TMB::MakeADFun(data = list(model = "GammaNLL", x = x),
parameters = list(alpha = 1, beta = 1),
DLL = "{{pkg}}_TMBExports", silent = TRUE)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.