Original number of categories for each feature being encoded.
Original number of categories for each feature being encoded. The array contains one value for each input column, in order.
Whether to drop the last category in the encoded vector (default: true)
Whether to drop the last category in the encoded vector (default: true)
The columns to group by if a group encoding should be used.
The columns to group by if a group encoding should be used.
The group weighting to use.
The group weighting to use.
"equi" means dividint by the group size "sqrt" means dividing by the square root of the group size "one" means no division
Default: "sqrt"
Param for how to handle invalid data during transform().
Param for how to handle invalid data during transform(). Options are 'keep' (invalid data presented as an extra categorical feature) or 'error' (throw an error). Note that this Param is only used during transform; during fitting, invalid data will result in an error. Default: "error"
The weight to use instead of 1.0 for hot encoding, for each column
The weight to use instead of 1.0 for hot encoding, for each column