blob: 4e4d61513314afd9fa0e36370998be5ca2893df4 [file] [log] [blame]
Fred Drake295da241998-08-10 19:42:37 +00001\section{\module{random} ---
Fred Drake048b75b1999-04-21 18:14:22 +00002 Generate pseudo-random numbers}
Fred Drakeb91e9341998-07-23 17:59:49 +00003
Fred Drake048b75b1999-04-21 18:14:22 +00004\declaremodule{standard}{random}
Fred Drake295da241998-08-10 19:42:37 +00005\modulesynopsis{Generate pseudo-random numbers with various common
Fred Drake048b75b1999-04-21 18:14:22 +00006 distributions.}
Fred Drakeb91e9341998-07-23 17:59:49 +00007
Guido van Rossum571391b1997-04-03 22:41:49 +00008
9This module implements pseudo-random number generators for various
Tim Peters902446a2001-01-24 23:06:53 +000010distributions.
11For integers, uniform selection from a range.
12For sequences, uniform selection of a random element, and a function to
13generate a random permutation of a list in-place.
14On the real line, there are functions to compute uniform, normal (Gaussian),
15lognormal, negative exponential, gamma, and beta distributions.
16For generating distribution of angles, the circular uniform and
17von Mises distributions are available.
Guido van Rossum571391b1997-04-03 22:41:49 +000018
Tim Peters902446a2001-01-24 23:06:53 +000019Almost all module functions depend on the basic function
20\function{random()}, which generates a random float uniformly in
21the semi-open range [0.0, 1.0). Python uses the standard Wichmann-Hill
22generator, combining three pure multiplicative congruential
23generators of modulus 30269, 30307 and 30323. Its period (how many
24numbers it generates before repeating the sequence exactly) is
256,953,607,871,644. While of much higher quality than the \function{rand()}
26function supplied by most C libraries, the theoretical properties
27are much the same as for a single linear congruential generator of
28large modulus.
29
30The functions in this module are not threadsafe: if you want to call these
31functions from multiple threads, you should explicitly serialize the calls.
32Else, because no critical sections are implemented internally, calls
33from different threads may see the same return values.
34
Tim Petersd7b5e882001-01-25 03:36:26 +000035The functions supplied by this module are actually bound methods of a
36hidden instance of the \var{random.Random} class. You can instantiate
37your own instances of \var{Random} to get generators that don't share state.
38This may be especially useful for multi-threaded programs, although there's
39no simple way to seed the distinct generators to ensure that the generated
40sequences won't overlap. Class \var{Random} can also be subclassed if you
41want to use a different basic generator of your own devising: in that
42case, override the \method{random()}, \method{seed()}, \method{getstate()}
43and \method{setstate()} methods.
44
45
46Bookkeeping functions:
Tim Peters902446a2001-01-24 23:06:53 +000047
48\begin{funcdesc}{seed}{\optional{x}}
49 Initialize the basic random number generator.
50 Optional argument \var{x} can be any hashable object,
51 and the generator is seeded from its hash code.
52 It is not guaranteed that distinct hash codes will produce distinct
53 seeds.
54 If \var{x} is omitted or \code{None},
55 the seed is derived from the current system time.
56 The seed is also set from the current system time when
57 the module is first imported.
Barry Warsaw83125772001-01-25 00:39:16 +000058\end{funcdesc}
Guido van Rossum571391b1997-04-03 22:41:49 +000059
Tim Petersd7b5e882001-01-25 03:36:26 +000060\begin{funcdesc}{getstate}{}
61 Return an object capturing the current internal state of the generator.
62 This object can be passed to \code{setstate()} to restore the state.
63 \end{funcdesc}
Fred Drake5f0decf2001-01-22 18:18:30 +000064
Tim Petersd7b5e882001-01-25 03:36:26 +000065\begin{funcdesc}{setstate}{state}
66 \var{state} should have been obtained from a previous call to
67 \code{getstate()}, and \code{setstate()} restores the internal state
68 of the generate to what it was at the time \code{setstate()} was called.
69 \end{funcdesc}
70
71
72Functions for integers:
Fred Drake5f0decf2001-01-22 18:18:30 +000073
Fred Drake5f0decf2001-01-22 18:18:30 +000074\begin{funcdesc}{randrange}{\optional{start,} stop\optional{, step}}
75 Return a randomly selected element from \code{range(\var{start},
76 \var{stop}, \var{step})}. This is equivalent to
Tim Peters902446a2001-01-24 23:06:53 +000077 \code{choice(range(\var{start}, \var{stop}, \var{step}))},
78 but doesn't actually build a range object.
Fred Drake5f0decf2001-01-22 18:18:30 +000079 \versionadded{1.5.2}
80\end{funcdesc}
81
Tim Petersd7b5e882001-01-25 03:36:26 +000082\begin{funcdesc}{randint}{a, b}
83 \deprecated{2.0}{Use \function{randrange()} instead.}
84 Return a random integer \var{N} such that
85 \code{\var{a} <= \var{N} <= \var{b}}.
86\end{funcdesc}
87
88
89Functions for sequences:
90
91\begin{funcdesc}{choice}{seq}
92 Return a random element from the non-empty sequence \var{seq}.
93\end{funcdesc}
94
95\begin{funcdesc}{shuffle}{x\optional{, random}}
96 Shuffle the sequence \var{x} in place.
97 The optional argument \var{random} is a 0-argument function
98 returning a random float in [0.0, 1.0); by default, this is the
99 function \function{random()}.
100
101 Note that for even rather small \code{len(\var{x})}, the total
102 number of permutations of \var{x} is larger than the period of most
103 random number generators; this implies that most permutations of a
104 long sequence can never be generated.
105\end{funcdesc}
106
107
108The following functions generate specific real-valued distributions.
109Function parameters are named after the corresponding variables in the
110distribution's equation, as used in common mathematical practice; most of
111these equations can be found in any statistics text.
112
Tim Peters902446a2001-01-24 23:06:53 +0000113\begin{funcdesc}{random}{}
114 Return the next random floating point number in the range [0.0, 1.0).
115\end{funcdesc}
116
Fred Drake5f0decf2001-01-22 18:18:30 +0000117\begin{funcdesc}{uniform}{a, b}
Tim Peters902446a2001-01-24 23:06:53 +0000118 Return a random real number \var{N} such that
Fred Drake5f0decf2001-01-22 18:18:30 +0000119 \code{\var{a} <= \var{N} < \var{b}}.
120\end{funcdesc}
Fred Drake38e5d272000-04-03 20:13:55 +0000121
Fred Drake2eda4ca1998-03-08 08:13:53 +0000122\begin{funcdesc}{betavariate}{alpha, beta}
Fred Drake5f0decf2001-01-22 18:18:30 +0000123 Beta distribution. Conditions on the parameters are
124 \code{\var{alpha} > -1} and \code{\var{beta} > -1}.
125 Returned values range between 0 and 1.
Guido van Rossum571391b1997-04-03 22:41:49 +0000126\end{funcdesc}
127
Fred Drake2eda4ca1998-03-08 08:13:53 +0000128\begin{funcdesc}{cunifvariate}{mean, arc}
Fred Drake5f0decf2001-01-22 18:18:30 +0000129 Circular uniform distribution. \var{mean} is the mean angle, and
130 \var{arc} is the range of the distribution, centered around the mean
131 angle. Both values must be expressed in radians, and can range
Tim Peters902446a2001-01-24 23:06:53 +0000132 between 0 and \emph{pi}. Returned values range between
Fred Drake5f0decf2001-01-22 18:18:30 +0000133 \code{\var{mean} - \var{arc}/2} and \code{\var{mean} +
134 \var{arc}/2}.
Guido van Rossum571391b1997-04-03 22:41:49 +0000135\end{funcdesc}
136
137\begin{funcdesc}{expovariate}{lambd}
Fred Drake5f0decf2001-01-22 18:18:30 +0000138 Exponential distribution. \var{lambd} is 1.0 divided by the desired
139 mean. (The parameter would be called ``lambda'', but that is a
Tim Peters902446a2001-01-24 23:06:53 +0000140 reserved word in Python.) Returned values range from 0 to
Fred Drake5f0decf2001-01-22 18:18:30 +0000141 positive infinity.
Guido van Rossum571391b1997-04-03 22:41:49 +0000142\end{funcdesc}
143
Fred Drake2eda4ca1998-03-08 08:13:53 +0000144\begin{funcdesc}{gamma}{alpha, beta}
Fred Drake5f0decf2001-01-22 18:18:30 +0000145 Gamma distribution. (\emph{Not} the gamma function!) Conditions on
146 the parameters are \code{\var{alpha} > -1} and \code{\var{beta} > 0}.
Guido van Rossum571391b1997-04-03 22:41:49 +0000147\end{funcdesc}
148
Fred Drake2eda4ca1998-03-08 08:13:53 +0000149\begin{funcdesc}{gauss}{mu, sigma}
Fred Drake5f0decf2001-01-22 18:18:30 +0000150 Gaussian distribution. \var{mu} is the mean, and \var{sigma} is the
151 standard deviation. This is slightly faster than the
152 \function{normalvariate()} function defined below.
Guido van Rossum571391b1997-04-03 22:41:49 +0000153\end{funcdesc}
154
Fred Drake2eda4ca1998-03-08 08:13:53 +0000155\begin{funcdesc}{lognormvariate}{mu, sigma}
Fred Drake5f0decf2001-01-22 18:18:30 +0000156 Log normal distribution. If you take the natural logarithm of this
157 distribution, you'll get a normal distribution with mean \var{mu}
158 and standard deviation \var{sigma}. \var{mu} can have any value,
Tim Peters902446a2001-01-24 23:06:53 +0000159 and \var{sigma} must be greater than zero.
Guido van Rossum571391b1997-04-03 22:41:49 +0000160\end{funcdesc}
161
Fred Drake2eda4ca1998-03-08 08:13:53 +0000162\begin{funcdesc}{normalvariate}{mu, sigma}
Fred Drake5f0decf2001-01-22 18:18:30 +0000163 Normal distribution. \var{mu} is the mean, and \var{sigma} is the
164 standard deviation.
Guido van Rossum571391b1997-04-03 22:41:49 +0000165\end{funcdesc}
166
Fred Drake2eda4ca1998-03-08 08:13:53 +0000167\begin{funcdesc}{vonmisesvariate}{mu, kappa}
Fred Drake5f0decf2001-01-22 18:18:30 +0000168 \var{mu} is the mean angle, expressed in radians between 0 and
169 2*\emph{pi}, and \var{kappa} is the concentration parameter, which
170 must be greater than or equal to zero. If \var{kappa} is equal to
171 zero, this distribution reduces to a uniform random angle over the
172 range 0 to 2*\emph{pi}.
Guido van Rossum571391b1997-04-03 22:41:49 +0000173\end{funcdesc}
Guido van Rossume47da0a1997-07-17 16:34:52 +0000174
Guido van Rossum4f80b651997-12-30 17:38:05 +0000175\begin{funcdesc}{paretovariate}{alpha}
Fred Drake5f0decf2001-01-22 18:18:30 +0000176 Pareto distribution. \var{alpha} is the shape parameter.
Guido van Rossum4f80b651997-12-30 17:38:05 +0000177\end{funcdesc}
178
179\begin{funcdesc}{weibullvariate}{alpha, beta}
Fred Drake5f0decf2001-01-22 18:18:30 +0000180 Weibull distribution. \var{alpha} is the scale parameter and
181 \var{beta} is the shape parameter.
Guido van Rossum4f80b651997-12-30 17:38:05 +0000182\end{funcdesc}
Guido van Rossume47da0a1997-07-17 16:34:52 +0000183
Fred Drake065cba12000-12-15 19:07:17 +0000184
Guido van Rossume47da0a1997-07-17 16:34:52 +0000185\begin{seealso}
Tim Peters902446a2001-01-24 23:06:53 +0000186 \seetext{Wichmann, B. A. \& Hill, I. D., ``Algorithm AS 183:
187 An efficient and portable pseudo-random number generator'',
188 \citetitle{Applied Statistics} 31 (1982) 188-190.}
Guido van Rossume47da0a1997-07-17 16:34:52 +0000189\end{seealso}