From: Raymond Hettinger Date: Mon, 21 Nov 2016 18:52:04 +0000 (-0800) Subject: Add a seealso section for further reference and skill building X-Git-Tag: v3.6.0b4~16 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0537405ec161fee49b0dcf6e40496453c5e6a299;p=thirdparty%2FPython%2Fcpython.git Add a seealso section for further reference and skill building --- diff --git a/Doc/library/random.rst b/Doc/library/random.rst index 1bbf9a556686..39528df00a5b 100644 --- a/Doc/library/random.rst +++ b/Doc/library/random.rst @@ -441,3 +441,23 @@ Simulation of arrival times and service deliveries in a single server queue:: service_end = service_start + service_time print(f'\t\t{service_start:.1f} to {service_end:.1f} serviced') +.. seealso:: + + `Statistics for Hackers `_ + a video tutorial by + `Jake Vanderplas `_ + on statistical analysis using just a few fundamental concepts + including simulation, sampling, shuffling, and cross-validation. + + `Economics Simulation + `_ + a simulation of a marketplace by + `Peter Norvig `_ 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) + `_ + a tutorial by `Peter Norvig `_ covering + the basics of probability theory, how to write simulations, and + performing data analysis using Python.