diff options
author | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2024-03-25 14:26:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-25 14:26:42 (GMT) |
commit | 9db2a8f914ad59019d448cecc43b6d45f46424a0 (patch) | |
tree | 3b94be739b0bd3022a743aa6e86e67c7f6cd1e57 /Doc | |
parent | eebea7e515462b503632ada74923ec3246599c9c (diff) | |
download | cpython-9db2a8f914ad59019d448cecc43b6d45f46424a0.zip cpython-9db2a8f914ad59019d448cecc43b6d45f46424a0.tar.gz cpython-9db2a8f914ad59019d448cecc43b6d45f46424a0.tar.bz2 |
Minor markup and grammar fixes in the statistics docs (gh-117216)
Diffstat (limited to 'Doc')
-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 79c6812..8cd43c2 100644 --- a/Doc/library/statistics.rst +++ b/Doc/library/statistics.rst @@ -1000,8 +1000,8 @@ of applications in statistics. .. versionadded:: 3.8 -:class:`NormalDist` Examples and Recipes -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +Examples and Recipes +-------------------- Classic probability problems @@ -1036,7 +1036,7 @@ Find the `quartiles <https://en.wikipedia.org/wiki/Quartile>`_ and `deciles Monte Carlo inputs for simulations ********************************** -To estimate the distribution for a model than isn't easy to solve +To estimate the distribution for a model that isn't easy to solve analytically, :class:`NormalDist` can generate input samples for a `Monte Carlo simulation <https://en.wikipedia.org/wiki/Monte_Carlo_method>`_: |