compareModels: Compare Two Mathematical Models Represented as 'S4' Objects

Description Usage Arguments Value Examples

Description

Compare Two Mathematical Models Represented as S4 Objects

Usage

1
compareModels(model1, model2, ...)

Arguments

model1

A S4 object representing some kind of mathematical model.

model2

A S4 object representing some kind of mathematical model.

...

Allow new parameters to be defined for this generic.

Value

A S4 object with statistics about the performance of each model.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
data(sampleValPCOSPmodel)
data(sampleClinicalModel)
data(sampleCohortList)

# Set parallelization settings
BiocParallel::register(BiocParallel::SerialParam())

# Train the model
trainedClinicalModel <- trainModel(sampleClinicalModel)

# Predict risk/risk-class
ClinicalPredPCSI <- predictClasses(sampleCohortList[c('PCSI', 'TCGA')],
  model=trainedClinicalModel)

# Validate the models
validatedClinicalModel <- validateModel(trainedClinicalModel,
  valData=ClinicalPredPCSI)

# Compare the models
modelComp <- compareModels(sampleValPCOSPmodel, validatedClinicalModel)
head(modelComp)

bhklab/PanCuRx documentation built on Dec. 30, 2021, 4:59 p.m.