Transformation functions
transformation.Rd
Transformation functions
Usage
tr_identity(x)
tr_z_score(x)
tr_gini(x)
tr_trunc_z_score(x, trunc_min = -3, trunc_max = 3)
tr_trunc_z_score_3_3(x)
tr_min_max(x)
tr_percentize(x)
Value
a vector/list with the transformed values
a vector/list with the transformed values
a vector/list with the transformed values truncated at the specified cuts
a vector/list with the transformed values truncated at the (-3, 3) cuts
a vector/list with the transformed values
a vector/list with the transformed values
Functions
tr_identity()
: Identity transformationtr_z_score()
: Z score transformationtr_gini()
: Gini's mean differencetr_trunc_z_score()
: Truncated Z score transformationtr_trunc_z_score_3_3()
: Truncated Z score transformation in the (-3, 3) rangetr_min_max()
: Min Max transformationtr_percentize()
: Percentize transformation