stats[describe]
standarddeviation
Standard Deviation of a Statistical List
Calling Sequence
Parameters
Description
Examples
stats[describe, standarddeviation](data)
stats[describe, standarddeviation[Nconstraints]](data)
describe[standarddeviation](data)
describe[standarddeviation[Nconstraints]](data)
data
-
statistical list
Nconstraint
(optional, default=0) Number of constraints, 1 for sample, 0 for full population
Important: The stats package has been deprecated. Use the superseding package Statistics instead.
The function standarddeviation of the subpackage stats[describe, ...] computes the standard deviation of the given data.
The standard deviation is defined to be the square root of the mean of the square of the deviations from the mean.
Classes are assumed to be represented by the class mark, for example 10..12 has the value 11. Missing data are ignored.
The standard deviation is a measure of the dispersion of the given data. There are various other dispersion measure, such as the mean deviation (see describe[meandev]), the range (see describe[range]) and the variance (see describe[variance]). Refer to describe[quartile] and describe[percentile] on how to use these function to construct other measures of dispersion. The various measures of dispersion are affected to various degrees by extreme values. For instance, the standard deviation is affected more strongly than the mean deviation. This varying dependence on extreme values is one major reason why there are many measures of dispersion in use.
A related function, describe[coefficientofvariation], measures the relative dispersion of the data. The standard deviation measures the absolute dispersion.
The definition of standard deviation varies according to whether the data is the whole population, or if it just a random selection (a sample) of the whole population and we are trying what the standard deviation would be had we had the complete set of data. The parameter Nconstraint provides for this. If one desires the sample standard deviation, the appropriate value for this parameter is 1. The reason for this is technical, but providing this parameter allows the standard deviation of a sample to be an unbiased (closer) estimator for the standard deviation of the full population. For more than about 30 items of data, the effect is small, anyway.
The command with(stats[describe],standarddeviation) allows the use of the abbreviated form of this command.
with⁡stats:
data1≔3,4,7
data2≔1,4,9
One can see that the second set of data is more dispersed than the first.
describestandarddeviation⁡data1,describestandarddeviation⁡data2
263,7⁢23
map⁡evalf,
1.699673171,3.299831644
To calculate the sample standard deviation, use the standarddeviation[1] calling sequence.
data3≔34,93,39,49
data4≔12,59,93,39
describestandarddeviation1⁡data3,describestandarddeviation1⁡data4
260496,46572
26.89950434,34.12110784
See Also
describe(deprecated)[coefficientofvariation]
describe(deprecated)[mean]
describe(deprecated)[meandeviation]
describe(deprecated)[percentile]
describe(deprecated)[quartile]
describe(deprecated)[range]
describe(deprecated)[variance]
Statistics
Statistics[StandardDeviation]
transform(deprecated)[classmark]
Download Help Document