R/classes.R

##' Common class representation for normalization models.
##'
##' @title Normalization model
##' @docType class
##' @aliases nFit nFit-class
##' @exportClass nFit
##' @name nFit
##' @author Henning Redestig 
setClass("nFit",
         representation(method="character",
                        model="list",
			sFit="list"),
         prototype(method=NULL,
                   model=NULL))
setAs("NULL", "nFit",
      function(from, to) {
        new(to)
      })

Try the crmn package in your browser

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

crmn documentation built on March 26, 2020, 8:35 p.m.