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.