You are here : python_3statisticsstatisticsstdev

statistics.stdev() - statistics

Return the sample standard deviation (the square root of the sample
variance).  See variance() for arguments and other details.


Syntax

statistics.stdev(data, xbar=None)


Example

>>> stdev([1.5, 2.5, 2.5, 2.75, 3.25, 4.75])
1.0810874155219827


Output / Return Value


Limitations


Alternatives / See Also


Reference