R/build_model_class.R

Defines functions buildModelClass

Documented in buildModelClass

#' It builds an object of a pre-specified class.
#' 
#' @description  \code{buildModelClass} is generic function that calls a method
#'               to create a object base on model's name.
#' 
#' @param x is an empty object of a class requested.
#' 
#' @inheritParams hybridModel
#' 
#' @return An object of the class requested.
#' 
#' @export
#' @references .
buildModelClass <- function(x, var.names, init.cond, model.parms, probWeights,
                            emigrRule, prop.func = NULL, state.var = NULL,
                            infl.var = NULL, state.change.matrix = NULL) UseMethod("buildModelClass")

Try the hybridModels package in your browser

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

hybridModels documentation built on July 1, 2020, 7:51 p.m.