Takes a numeric vector and will return a vector that has been scaled from by mean and standard deviation
Details
Takes a numeric vector and will return a vector that has been scaled from mean and standard deviation.
The input vector must be numeric. The computation is fairly straightforward.
This may be helpful when trying to compare the distributions of data where a
distribution like beta from the fitdistrplus
package which requires data to be
between 0 and 1
$$y[h] = (x - mean(x) / sd(x))$$
This function can be used on it's own. It is also the basis for the function
hai_scale_zscore_augment()
.
See also
Other Vector Function:
hai_fourier_discrete_vec()
,
hai_fourier_vec()
,
hai_hyperbolic_vec()
,
hai_kurtosis_vec()
,
hai_scale_zero_one_vec()
,
hai_skewness_vec()
,
hai_winsorized_move_vec()
,
hai_winsorized_truncate_vec()
Other Scale:
hai_scale_zero_one_augment()
,
hai_scale_zero_one_vec()
,
hai_scale_zscore_augment()
,
step_hai_scale_zscore()