R/AnalysisModel.MultAdjProc.R

######################################################################################################################

# Function: AnalysisModel.MultAdjProc
# Argument: MultAdjProc object.
# Description: This function is called by default if the class of the argument is a MultAdjProc object.
#' @export
AnalysisModel.MultAdjProc = function(multadjproc, ...) {

  analysismodel = AnalysisModel()
  analysismodel = analysismodel + multadjproc

  args = list(...)
  if (length(args)>0) {
    for (i in 1:length(args)){
      analysismodel = analysismodel + args[[i]]
    }
  }
  return(analysismodel)

}

Try the Mediana package in your browser

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

Mediana documentation built on May 8, 2019, 5:04 p.m.