#' Static Likelihood Factor
#'
#' Likelihood factor for a variable that only has one value with probability 1. This is used for static interventions.
#' Inherits from \code{\link{LF_base}}; see that page for documentation on likelihood factors in general.
#'
#' @importFrom R6 R6Class
#' @importFrom uuid UUIDgenerate
#' @importFrom methods is
#' @family Likelihood objects
#' @keywords data
#'
#' @return \code{LF_base} object
#'
#' @format \code{\link{R6Class}} object.
#'
#' @section Constructor:
#' \code{define_lf(LF_static, name, type, value, ...)}
#'
#' \describe{
#' \item{\code{name}}{character, the name of the factor. Should match a node name in the nodes specified by \code{\link{tmle3_Task}$npsem}
#' }
#' \item{\code{type}}{character, either "density", for conditional density or, "mean" for conditional mean
#' }
#' \item{\code{value}}{the static value
#' }
#' \item{\code{...}}{Not currently used.
#' }
#' }
#'
#' @section Fields:
#' \describe{
#' \item{\code{value}}{the static value.}
#' }
#'
#' @export
LF_static <- R6Class(
classname = "LF_static",
portable = TRUE,
class = TRUE,
inherit = LF_base,
public = list(
initialize = function(name, type = "density", value, ...) {
super$initialize(name, ..., type = type)
private$.value <- value
private$.variable_type <- variable_type("constant", value)
},
get_mean = function(tmle_task, fold_number) {
return(rep(self$value, tmle_task$nrow))
},
get_density = function(tmle_task, fold_number) {
observed <- tmle_task$get_tmle_node(self$name)
likelihood <- as.numeric(self$value == observed)
return(likelihood)
},
cf_values = function(tmle_task) {
cf_values <- rep(self$value, tmle_task$nrow)
return(cf_values)
},
sample = function(tmle_task, n_samples = NULL, fold_number = "full") {
# TODO: fold
# TODO: option to return task
if (is.null(n_samples)) {
return(tmle_task)
}
values <- replicate(n_samples, rep(self$value, tmle_task$nrow))
return(values)
}
),
active = list(
value = function() {
return(private$.value)
}
),
private = list(
.name = NULL,
.value = NULL,
.is_degenerate = TRUE
)
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.