R/modelList.R

Defines functions modelList

Documented in modelList

#' @title Model List
#' @description Provide a list of currently implemented methods 
#' for OmicsMarkeR.
#' @return A data.frame containing:
#' \item{methods}{The abbreviated code for the method}
#' \item{description}{Full name of the method}
#' @author Charles Determan Jr.
#' @examples modelList()
#' @export
modelList <- function(){
    methods <- c(
        "plsda",
        "svm",
        "rf",
        "gbm",
        "glmnet",
        "pam")
    
    description <- c(
        "Partial Least Squares Discriminant Analysis",
        "Support Vector Machines",
        "Random Forest",
        "Gradient Boosting Machines",
        "Elastic-net regularized models",
        "Predication Analysis of Microarrays")
    
    out <- data.frame(methods = methods,
                      description = description)
    return(out)
}

Try the OmicsMarkeR package in your browser

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

OmicsMarkeR documentation built on April 28, 2020, 6:54 p.m.