R/likelihood.R

Defines functions get_lkf

## Functions for TidyLikelihood
## Edward J. Xu <edxu96@outlook.com>
## Feb 8, 2020


#' Function factory to produce the likelihood function
#'   with input being observation tibble and sub-likelihood function tibble
get_lkf <- function(obs, sub) {
  ## Check if obs tibble and lkf tibble match
  
  ## Define and return the likelihood function
  function(theta) {
    
  }
}
edxu96/tidynamics documentation built on Feb. 5, 2021, 11:31 p.m.