stats[transform, standardscore]
replace each item by its standard score
Calling Sequence
Parameters
Description
Examples
stats[transform, standardscore[n_constraints]](data)
transform[standardscore[n_constraints]](data)
n_constraints
-
(optional, default=0) use 0 for population, 1 for sample
data
statistical list
Important: The stats package has been deprecated. Use the superseding package Statistics instead.
The function standardscore of the subpackage stats[transform, ...] replaces each item in data by its standard score.
The standard score of a quantity x is x−meanstandarddeviation, where mean and standarddeviation are the mean and the standard deviation of data, respectively.
Standard scores are also known as zscores, or z-scores.
The quantity n_constraints is explained in more detail in the description of stats[describe,standarddeviation].
The standard score is very useful in comparing distributions. For example, a student can compare her relative standing between two courses if she knows her mark, the courses averages and standard deviations.
Results expressed in terms of standard score are also known as being expressed in standard units.
By definition, the set of standard scores of a list of statistical data will have mean equal to 0 and standard deviation equal to 1.
Missing items remain unchanged. Weighted data and class data are recognized.
with⁡stats:
data≔Weight⁡3,10,missing,4,Weight⁡11..12,3
The standard scores for the given data are
transformstandardscore⁡data:transformapplyevalf⁡
Weight⁡3.,10,missing,4.,Weight⁡11...12.,3
Here is another way of computing the standard scores.
transformdividebystandarddeviation⁡transformsubtractfrommean⁡data
Weight⁡−53⁢93859385,10,missing,−5⁢93851877,Weight⁡171⁢93859385..199⁢93859385,3
transformapplyevalf⁡
Weight⁡−0.5470899427,10,missing,−0.2580612937,Weight⁡1.765139249..2.054167898,3
And here is a third way.
the_sd≔describestandarddeviation⁡data
the_sd≔938528
the_mean≔describemean⁡data
the_mean≔13728
transformapplyunapply⁡x−the_meanthe_sd,x⁡data
See Also
Statistics
transform(deprecated)[apply]
transform(deprecated)[multiapply]
transform(deprecated)[standardscore]
transform(deprecated)[subtractfrom]
Download Help Document