diff options
author | Georg Brandl <georg@python.org> | 2013-11-04 06:30:50 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-11-04 06:30:50 (GMT) |
commit | e051b55049d74cc0a60fa1853eb3ccf6ad1fb880 (patch) | |
tree | 276aa5eddf28a654bc60a0f9489c4d75733ddee5 /Doc | |
parent | db5ab780e880d3627cdef6d60381ceb0fba2d86d (diff) | |
download | cpython-e051b55049d74cc0a60fa1853eb3ccf6ad1fb880.zip cpython-e051b55049d74cc0a60fa1853eb3ccf6ad1fb880.tar.gz cpython-e051b55049d74cc0a60fa1853eb3ccf6ad1fb880.tar.bz2 |
Note that examples are sorted only for convenience.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/statistics.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/statistics.rst b/Doc/library/statistics.rst index fe12840..e6c5959 100644 --- a/Doc/library/statistics.rst +++ b/Doc/library/statistics.rst @@ -52,6 +52,9 @@ tends to deviate from the typical or average values. Function details ---------------- +Note: The functions do not require the data given to them to be sorted. +However, for reading convenience, most of the examples show sorted sequences. + .. function:: mean(data) Return the sample arithmetic mean of *data*, a sequence or iterator of |