diff options
Diffstat (limited to 'Doc/library/statistics.rst')
-rw-r--r-- | Doc/library/statistics.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/statistics.rst b/Doc/library/statistics.rst index a0d4d39..8d961b7 100644 --- a/Doc/library/statistics.rst +++ b/Doc/library/statistics.rst @@ -482,9 +482,9 @@ of applications in statistics, including simulations and hypothesis testing. .. class:: NormalDist(mu=0.0, sigma=1.0) Returns a new *NormalDist* object where *mu* represents the `arithmetic - mean <https://en.wikipedia.org/wiki/Arithmetic_mean>`_ of data and *sigma* + mean <https://en.wikipedia.org/wiki/Arithmetic_mean>`_ and *sigma* represents the `standard deviation - <https://en.wikipedia.org/wiki/Standard_deviation>`_ of the data. + <https://en.wikipedia.org/wiki/Standard_deviation>`_. If *sigma* is negative, raises :exc:`StatisticsError`. @@ -579,7 +579,7 @@ of applications in statistics, including simulations and hypothesis testing. :class:`NormalDist` Examples and Recipes ---------------------------------------- -A :class:`NormalDist` readily solves classic probability problems. +:class:`NormalDist` readily solves classic probability problems. For example, given `historical data for SAT exams <https://blog.prepscholar.com/sat-standard-deviation>`_ showing that scores |