Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0537405

Browse files
committed
Add a seealso section for further reference and skill building
1 parent 8ab1258 commit 0537405

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

Doc/library/random.rst

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -441,3 +441,23 @@ Simulation of arrival times and service deliveries in a single server queue::
441441
service_end = service_start + service_time
442442
print(f'\t\t{service_start:.1f} to {service_end:.1f} serviced')
443443

444+
.. seealso::
445+
446+
`Statistics for Hackers <https://www.youtube.com/watch?v=Iq9DzN6mvYA>`_
447+
a video tutorial by
448+
`Jake Vanderplas <https://us.pycon.org/2016/speaker/profile/295/>`_
449+
on statistical analysis using just a few fundamental concepts
450+
including simulation, sampling, shuffling, and cross-validation.
451+
452+
`Economics Simulation
453+
<http://nbviewer.jupyter.org/url/norvig.com/ipython/Economics.ipynb>`_
454+
a simulation of a marketplace by
455+
`Peter Norvig <http://norvig.com/bio.html>`_ that shows effective
456+
use of many the tools and distributions provided by this module
457+
(gauss, uniform, sample, betavariate, choice, triangular, and randrange).
458+
459+
`A Concrete Introduction to Probability (using Python)
460+
<http://nbviewer.jupyter.org/url/norvig.com/ipython/Probability.ipynb>`_
461+
a tutorial by `Peter Norvig <http://norvig.com/bio.html>`_ covering
462+
the basics of probability theory, how to write simulations, and
463+
performing data analysis using Python.

0 commit comments

Comments
 (0)