#' RLSModel Class Definition
#'
#' @export
.RLSModel <- setClass('RLSModel', contains='SurvivalModel')
#'
#' RandomLabelShufflingModel Constructor
#'
#' @inherit SurvivalModel
#'
#' @examples
#' data(sampleICGCmicro)
#' set.seed(1987)
#' RLSmodel <- RLSModel(sampleICGCmicro, minDaysSurvived=365, randomSeed=1987)
#'
#' @aliases RLSModel
#' @export
RandomLabelShufflingModel <- function(trainCohorts, minDaysSurvived=365, ...,
randomSeed)
{
RLSModel <- .RLSModel(SurvivalModel(trainCohorts, minDaysSurvived,
randomSeed=randomSeed))
return(RLSModel)
}
#' @export
RLSModel <- RandomLabelShufflingModel
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.