SPreFu: A function for selecting an optimal predictive function for a...

Description Usage Arguments Value Author(s) References See Also Examples

Description

This function uses the LME model and the estimated data characteristics to predict the accuracy (for binary direct classifiers) or transformed Brier score (for binary probabilistic classifiers) or transformed integrated Brier scores (for survival predictions).

Usage

1
SPreFu(dataCha, restModel)

Arguments

dataCha

an object returned by estimateDataCha and contains estimates of the data characteristics.

restModel

an object returned by fitLMEModel and contains the fitted LME model to be used for predictions.

Value

A list containing:

dataCha

a data frame of the estimated data characteristics, the predictive functions and their predicted performance

type

is the type of prediction (Accuracy, Probability or Survival) and determines what kind of plots to be produced by plotSPreFu

Author(s)

Victor Lih Jong

References

Jong VL, Novianti PW, Roes KCB & Eijkemans MJC. Selecting a classification function for class prediction with gene expression data. Bioinformatics (2016) 32(12): 1814-1822;

See Also

estimateDataCha, fitLMEModel and plotSPreFu

Examples

1
2
3
4
5
6
7
8
#Let us consider a single simulated train data as our real-life dataset
myCov<-covMat(pAll=100, lambda=2, corrDE=0.75, sigma=0.25);
myData<-generateGED(covAll=myCov, nTrain=30, nTest=10);
data<-myData[[1]]$trainData;
dataY<-myData[[1]]$trainLabels;
myDataCha<-estimateDataCha(data, dataY);
myFit<-fitLMEModel();  #Takes roughly 250 Sec
myPred<-SPreFu(myDataCha, myFit);

SPreFuGED documentation built on May 2, 2019, 9:40 a.m.