Create a O-dummy matrix for one variable
getODummyMatForOneVec(
x_vec,
breaks = NULL,
nbin.max = 100,
only_info = FALSE,
dummy_type = NULL
)
A list with the following fields:
breaks
: Same as input
dummy_mat
: The created O-dummy matrix (only if only_info=FALSE
).
A numeric vector representing original variable.
A numeric vector representing breaks of bins (If NULL
, automatically generated).
The maximum number of bins (used only if breaks=NULL
).
If TRUE
, only information fields of returned values are filled and no dummy matrix is returned.
Used to control the shape of linear combinations obtained by O-dummies for quantitative variables (deprecated).
Kenji Kondo