Learn R Programming

rMIDAS (version 1.0.0)

add_bin_labels: Reverse numeric conversion of binary vector

Description

Helper function to re-apply binary variable labels post-imputation.

Usage

add_bin_labels(x, one, zero, fast = TRUE)

Value

Vector of character strings corresponding to binary values

Arguments

x

A numeric vector or column, scaled between 0 and 1

one

A character string, the label associated with binary value 1

zero

A character string, the label associated with binary value 0

fast

Boolean indicating whether to return binary value 1 if predicted probability >= 0.5 (TRUE), or take random draw using predicted probability as weighting.

Examples

Run this code
ex_bin <- c(1,0,0,1,1,0,0,1,0)
cat <- "cat"
dog <- "dog"

add_bin_labels(x = ex_bin, one = cat, zero = dog)

Run the code above in your browser using DataLab