#' @title A `SurvivalModel` Sub-class Designed to Hold A Survival Model Generated
#' Using the `genefu` R package.
#'
#' @md
#' @export
.GeneFuModel <- setClass('GeneFuModel', contains='SurvivalModel')
#' `GeneFuModel` Constructor Method
#'
#' @param trainCohorts A `CohortList` or `SurvivalExperiment` containing
#' training data for the genefu model. If you don't have training data,
#' but have a trained model this will default to an empty `SurvivalExperiment`.
#' You can then assign the model using the `models` setter method.
#' @param minDaysSurvived An `integer` specifying the minimum days survived
#' to be considered in the 'good' survival prognosis group.
#' @param ... Fall through paramater to `SurvivalModel` constructor.
#' @param randomSeed An `integer` randomSeed that was used to train the model.
#' Users should specify this when initializing a model to ensure
#' reproducibilty.
#'
#' @return A `GeneFuModel` object, with model parameters in the
#'
#' @examples
#' set.seed(1987)
#' geneFuModel <- GeneFuModel(randomSeed=1987)
#'
#' @md
#' @export
GeneFuModel <- function(trainCohorts=SurvivalExperiment(),
minDaysSurvived=365, ..., randomSeed)
{
funContext <- .context(1)
if (missing(randomSeed)) stop(.errorMsg(funContext, 'No random seed was ',
'specied for your model. Please include the value used for set.seed ',
'when training this model! This ensures other can reproduce your ',
'results.'))
survModel <- SurvivalModel(trainCohorts, minDaysSurvived=minDaysSurvived,
..., randomSeed=randomSeed)
return(.GeneFuModel(survModel))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.