R/LinearModel.R

setRefClass(Class = "PredictiveModel")

#' LinearModel
#'
#' Base class for linear models, adding a getCoefficients method to PredictiveModel
#'
#' @author Adam Margolin
#' @export
LinearModel <- setRefClass(Class="LinearModel",
                           contains="PredictiveModel",
                               methods = list(
                                  getCoefficients <- function(){
                                }
                              )
                           )
Sage-Bionetworks/predictiveModeling documentation built on May 9, 2019, 12:12 p.m.