Nothing
## #' @title Coerce model object to Bayesian netowork
## #'
## #' @param x A `dmod` object
## #'
## #'
## #' @examples
## #'
## #' fm <- dmod(~.^., data=lizard) |> stepwise()
## #' fm |> formula()
## #' bn <- as.grain(fm)
## #' bn
## #'
## #' @export
## as.grain <- function(x){
## UseMethod("as.grain")
## }
## #' @export
## as.grain.dModel <- function(x){
## uu <- ug(terms(x))
## out <- gRain::grain(uu, data=x$datainfo$data)
## return(out)
## }
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.