Nothing
#' Get list of parents of all nodes in a model
#'
#' @inheritParams CausalQueries_internal_inherit_params
#' @return A \code{list} of parents in a DAG
get_parents <- function(model) {
parents <- lapply(model$nodes, function(j) {
paste(model$dag$parent)[paste(model$dag$children) == j]
})
names(parents) <- model$nodes
return(parents)
}
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.