R/Generics.R

Defines functions fit triangulate

Documented in fit triangulate

## Generic functions used in gRbase, gRain, gRim

fit <- function(object, ...)
{
  UseMethod("fit")
}

triangulate <- function(object, ...)
{
  UseMethod("triangulate")
}

compile <- function (object, ...) 
{
    UseMethod("compile")
}

propagate <- function (object, ...) 
{
    UseMethod("propagate")
}

compareModels <- function (object, object2, ...) 
{
    UseMethod("compareModels")
}

Try the gRbase package in your browser

Any scripts or data that you put into this service are public.

gRbase documentation built on May 2, 2019, 4:51 p.m.