Learn R Programming

DriveML (version 0.1.5)

predictAutoMAR: Extract predictions and MAR columns from autoMAR objects

Description

this function can be used for autoMAR objects to generate the variable for missing variable not completely at random

Usage

predictAutoMAR(x, data, mar_var = NULL)

Value

flagged variables for missing not completely at random variable

Arguments

x

[autoMAR object | Required] autoMAR object for which prediction is desired

data

[data.frame | Required] prediction data set to prepare the autoMAR outcomes

mar_var

[character list | Optional] list of predefined mar variables

Examples

Run this code
## Missing at random features
train <- heart[1 : 199, ]
test <- heart[200 : 300, ]
marobj <- autoMAR (train, aucv = 0.9, strataname = NULL, stratasize = NULL, mar_method = "glm")

## print summary in console
testobj <- predictAutoMAR(marobj, test)

Run the code above in your browser using DataLab