PredictABEL (version 1.2-4)

predRisk: Function to compute predicted risks for all individuals in the dataset.

Description

Function to compute predicted risks for all individuals in the (new)dataset.

Usage

predRisk(riskModel, data, cID, filename)

Arguments

riskModel

Name of logistic regression model that can be fitted using the function fitLogRegModel.

data

Data frame or matrix that includes the ID number and predictor variables.

cID

Column number of ID variable. The ID number and predicted risks will be saved under filename. When cID is not specified, the output is not saved.

filename

Name of the output file in which the ID number and estimated predicted risks will be saved. The file is saved in the working directory as a txt file. Example: filename="name.txt". When no filename is specified, the output is not saved.

Value

The function returns a vector of predicted risks.

Details

The function computes predicted risks from a specified logistic regression model. The function fitLogRegModel can be used to construct such a model.

See Also

fitLogRegModel, plotCalibration, plotROC, plotPriorPosteriorRisk

Examples

Run this code
# NOT RUN {
# specify dataset with outcome and predictor variables
data(ExampleData)
# specify column number of the outcome variable
cOutcome <- 2
# specify column number of ID variable
cID <- 1
# specify column numbers of non-genetic predictors
cNonGenPred <- c(3:10)
# specify column numbers of non-genetic predictors that are categorical
cNonGenPredCat <- c(6:8)
# specify column numbers of genetic predictors
cGenPred <- c(11,13:16)
# specify column numbers of genetic predictors that are categorical
cGenPredCat <- c(0)

# fit logistic regression model
riskmodel <- fitLogRegModel(data=ExampleData, cOutcome=cOutcome,
cNonGenPreds=cNonGenPred, cNonGenPredsCat=cNonGenPredCat,
cGenPreds=cGenPred, cGenPredsCat=cGenPredCat)

# obtain predicted risks 
predRisk <- predRisk(riskModel=riskmodel)
# }

Run the code above in your browser using DataLab