Calculates the standardization of the elements of an array according to their mean and standard deviation.
The array
const result = Chalkboard.stat.zscored([2, 4, 4, 4, 5, 5, 7, 9]); // Returns the z-scores Copy
const result = Chalkboard.stat.zscored([2, 4, 4, 4, 5, 5, 7, 9]); // Returns the z-scores
Calculates the standardization of the elements of an array according to their mean and standard deviation.