[Python-checkins] cpython (3.6): Add a seealso section for further reference and skill building

raymond.hettinger python-checkins at python.org
Mon Nov 21 13:52:27 EST 2016


https://hg.python.org/cpython/rev/8a9ea7aaab22
changeset:   105296:8a9ea7aaab22
branch:      3.6
parent:      105294:8f9f2033c1f0
user:        Raymond Hettinger <python at rcn.com>
date:        Mon Nov 21 10:52:04 2016 -0800
summary:
  Add a seealso section for further reference and skill building

files:
  Doc/library/random.rst |  20 ++++++++++++++++++++
  1 files changed, 20 insertions(+), 0 deletions(-)


diff --git a/Doc/library/random.rst b/Doc/library/random.rst
--- a/Doc/library/random.rst
+++ b/Doc/library/random.rst
@@ -441,3 +441,23 @@
             service_end = service_start + service_time
             print(f'\t\t{service_start:.1f} to {service_end:.1f} serviced')
 
+.. seealso::
+
+   `Statistics for Hackers <https://www.youtube.com/watch?v=Iq9DzN6mvYA>`_
+   a video tutorial by
+   `Jake Vanderplas <https://us.pycon.org/2016/speaker/profile/295/>`_
+   on statistical analysis using just a few fundamental concepts
+   including simulation, sampling, shuffling, and cross-validation.
+
+   `Economics Simulation
+   <http://nbviewer.jupyter.org/url/norvig.com/ipython/Economics.ipynb>`_
+   a simulation of a marketplace by
+   `Peter Norvig <http://norvig.com/bio.html>`_ that shows effective
+   use of many the tools and distributions provided by this module
+   (gauss, uniform, sample, betavariate, choice, triangular, and randrange).
+
+   `A Concrete Introduction to Probability (using Python)
+   <http://nbviewer.jupyter.org/url/norvig.com/ipython/Probability.ipynb>`_
+   a tutorial by `Peter Norvig <http://norvig.com/bio.html>`_ covering
+   the basics of probability theory, how to write simulations, and
+   performing data analysis using Python.

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list