Creates skeleton objects. This generates objects without fitting parameters. This is primarily intended for creating transformers externally, where fitting parameters are known.
create_transformer_skeleton(method, lambda = 1, shift = 0, scale = 1)
A transformer object
Transformation method. Can be "none"
, "box_cox"
or
"yeo_johnson"
.
Value of the transformation parameter lambda. Can also be
changed using the set_lambda
method.
Value of the shift parameter. Can also be changed using the
set_shift
method.
Value of the scale parameter. Can also be changed using the
set_scale
method.