describe(deprecated)/standarddeviation - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Home : Support : Online Help : describe(deprecated)/standarddeviation

stats[describe]

  

standarddeviation

  

Standard Deviation of a Statistical List

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

stats[describe, standarddeviation](data)

stats[describe, standarddeviation[Nconstraints]](data)

describe[standarddeviation](data)

describe[standarddeviation[Nconstraints]](data)

Parameters

data

-

statistical list

Nconstraint

-

(optional, default=0) Number of constraints, 1 for sample, 0 for full population

Description

• 

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.

Examples

Important: The stats package has been deprecated. Use the superseding package Statistics instead.

withstats:

data13,4,7

data13,4,7

(1)

data21,4,9

data21,4,9

(2)

One can see that the second set of data is more dispersed than the first.

describestandarddeviationdata1,describestandarddeviationdata2

263,723

(3)

mapevalf,

1.699673171,3.299831644

(4)

To calculate the sample standard deviation, use the standarddeviation[1] calling sequence.

data334,93,39,49

data334,93,39,49

(5)

data412,59,93,39

data412,59,93,39

(6)

describestandarddeviation1data3,describestandarddeviation1data4

260496,46572

(7)

mapevalf,

26.89950434,34.12110784

(8)

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]