diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-03-25 14:33:15 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-25 14:33:15 (GMT) |
commit | 0c334f627bc11b11193ee7224971e4a249f24fe4 (patch) | |
tree | b670f0aa21b0dc29778e6671fbeba70f5ca02773 /Doc | |
parent | bd2c60f8c2a6664b353dbaee8ae0eddc55d1ffb8 (diff) | |
download | cpython-0c334f627bc11b11193ee7224971e4a249f24fe4.zip cpython-0c334f627bc11b11193ee7224971e4a249f24fe4.tar.gz cpython-0c334f627bc11b11193ee7224971e4a249f24fe4.tar.bz2 |
[3.12] Minor markup and grammar fixes in the statistics docs (gh-117216) (gh-117218)
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 3a4d265..a79b94c 100644 --- a/Doc/library/statistics.rst +++ b/Doc/library/statistics.rst @@ -938,8 +938,8 @@ of applications in statistics. .. versionadded:: 3.8 -:class:`NormalDist` Examples and Recipes -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +Examples and Recipes +-------------------- Classic probability problems @@ -974,7 +974,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>`_: |