Nothing
# (O)bserved (Only)
logLikelihoodObservedOnly = function(specs, variables, data) {
return(rowSums(
vapply(
X = specs$observedVariables,
FUN = function(x, variables, data) {
return(variables[[x]]$likelihood(
data = data,
log = TRUE
))
},
FUN.VALUE = as.numeric(rep(NA, nrow(data))),
variables = variables,
data = data
),
na.rm = TRUE
))
}
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.