Determines the range of dispersion of the values.
strayval = ST_strayarea(v, p)
vector of numerical values
statistical confidence level (%) as a string or the level of significance (α) as a decimal value, "95%", "99%", "99.9%" or 0.05, 0.01, 0.001 resp (see examples).
historical stray area (Streubereich), calculated as s*t.
"ST_strayarea" calculates the historical stray area (German: Streubereich) according to Kaiser/Gottschalk as

T: stray area of values; s: sample standard deviation; t: student factor (dependent on statistical confidence level P% and degree of freedom f=n-1 with n: number of values)
It defines the range around the mean within which the values may vary at a given significance level.
This quantity must not be confused with a modern prediction interval for a future individual observation, which is defined differently.
E.g. if strayval = 1.4 at p = 95% and mean(v) = 10.0, the historical Kaiser/Gottschalk stray area is reported as approximately 10.0 +/- 1.4.
v = [6 8 14 12 5 15]; mean(v) // = 10. ST_strayarea(v, "95%") // = 10.904 ST_strayarea(v, 0.05) // = 10.904 | ![]() | ![]() |
R. Kaiser, G. Gottschalk; "Elementare Tests zur Beurteilung von Meßdaten", BI Hochschultaschenbücher, Bd. 774, Mannheim 1972.