Container for the Intel(R) MKL-powered (pseudo-)random number generators.
RandomState exposes a number of methods for generating random numbers
drawn from a variety of probability distributions. In addition to the
distribution-specific arguments, each method takes a keyword argument
size that defaults to None. If size is None, then a single
value is generated and returned. If size is an integer, then a 1-D
array filled with generated values is returned. If size is a tuple,
then an array with that shape is filled and returned.
Compatibility Notice
This version of numpy.random has been rewritten to use MKL’s vector
statistics functionality, that provides efficient implementation of
the MT19937 and many other basic psuedo-random number generation
algorithms as well as efficient sampling from other common statistical
distributions. As a consequence this version is NOT seed-compatible with
the original numpy.random.
Parameters:
seed ({None, int, array_like}, optional) – Random seed initializing the pseudo-random number generator.
Can be an integer, an array (or other sequence) of integers of
any length, or None (the default).
If seed is None, then RandomState will try to read data from
/dev/urandom (or the Windows analogue) if available or seed from
the clock otherwise.
brng ({'MT19937', 'SFMT19937', 'MT2203', 'R250', 'WH', 'MCG31', 'MCG59',) – ‘MRG32K3A’, ‘PHILOX4X32X10’, ‘NONDETERM’, ‘ARS5’}, optional
basic pseudo-random number generation algorithms, or non-deterministic
hardware-based generator, provided by Intel MKL. The default choice is
‘MT19937’ - the Mersenne Twister generator.
Notes
The Python stdlib module “random” also contains a Mersenne Twister
pseudo-random number generator with a number of methods that are similar
to the ones available in RandomState. RandomState, besides being
NumPy-aware, has the advantage that it provides a much larger number
of probability distributions to choose from.
The Beta distribution is a special case of the Dirichlet distribution
and is related to the Gamma distribution. It has the probability
distribution function
It is often seen in Bayesian inference and order statistics.
Parameters:
a (float) – Alpha, non-negative.
b (float) – Beta, non-negative.
size (int or tuple of ints, optional) – Output shape. If the given shape is, e.g., (m,n,k), then
m*n*k samples are drawn. Default is None, in which case a
single value is returned.
Returns:
out – Array of the given shape, containing values drawn from a
Beta distribution.
Samples are drawn from a binomial distribution with specified
parameters, n trials and p probability of success where
n an integer >= 0 and p is in the interval [0,1]. (n may be
input as a float, but it is truncated to an integer in use)
Parameters:
n (float (but truncated to an integer)) – parameter, >= 0.
p (float) – parameter, >= 0 and <=1.
size (int or tuple of ints, optional) – Output shape. If the given shape is, e.g., (m,n,k), then
m*n*k samples are drawn. Default is None, in which case a
single value is returned.
Returns:
samples – where the values are all integers in [0, n].
Return type:
ndarray or scalar
See also
scipy.stats.distributions.binom
probability density function, distribution or cumulative density function, etc.
Notes
The probability density for the binomial distribution is
\[P(N) = \binom{n}{N}p^N(1-p)^{n-N},\]
where \(n\) is the number of trials, \(p\) is the probability
of success, and \(N\) is the number of successes.
When estimating the standard error of a proportion in a population by
using a random sample, the normal distribution works well unless the
product p*n <=5, where p = population proportion estimate, and n =
number of samples, in which case the binomial distribution is used
instead. For example, a sample of 15 people shows 4 who are left
handed, and 11 who are right handed. Then p = 4/15 = 27%. 0.27*15 = 4,
so the binomial distribution should be used in this case.
References
Examples
Draw samples from the distribution:
>>> n,p=10,.5# number of trials, probability of each trial>>> s=mkl_random.binomial(n,p,1000)# result of flipping a coin 10 times, tested 1000 times.
A real world example. A company drills 9 wild-cat oil exploration
wells, each with an estimated probability of success of 0.1. All nine
wells fail. What is the probability of that happening?
Let’s do 20,000 trials of the model, and count the number that
generate zero positive results.
>>> sum(mkl_random.binomial(9,0.1,20000)==0)/20000.# answer = 0.38885, or 38%.
When df independent random variables, each with standard normal
distributions (mean 0, variance 1), are squared and summed, the
resulting distribution is chi-square (see Notes). This distribution
is often used in hypothesis testing.
Parameters:
df (int) – Number of degrees of freedom.
size (int or tuple of ints, optional) – Output shape. If the given shape is, e.g., (m,n,k), then
m*n*k samples are drawn. Default is None, in which case a
single value is returned.
Returns:
output – Samples drawn from the distribution, packed in a size-shaped
array.
Return type:
ndarray
Raises:
ValueError – When df <= 0 or when an inappropriate size (e.g. size=-1)
is given.
Notes
The variable obtained by summing the squares of df independent,
standard normally distributed random variables:
\[Q = \sum_{i=0}^{\mathtt{df}} X^2_i\]
is chi-square distributed, denoted
\[Q \sim \chi^2_k.\]
The probability density function of the chi-squared distribution is
a (1-D array-like or int) – If an ndarray, a random sample is generated from its elements.
If an int, the random sample is generated as if a was np.arange(n)
size (int or tuple of ints, optional) – Output shape. If the given shape is, e.g., (m,n,k), then
m*n*k samples are drawn. Default is None, in which case a
single value is returned.
replace (boolean, optional) – Whether the sample is with or without replacement
p (1-D array-like, optional) – The probabilities associated with each entry in a.
If not given the sample assumes a uniform distribution over all
entries in a.
Returns:
samples – The generated random samples
Return type:
1-D ndarray, shape (size,)
Raises:
ValueError – If a is an int and less than zero, if a or p are not 1-dimensional,
if a is an array-like of size 0, if p is not a vector of
probabilities, if a and p have different lengths, or if
replace=False and the sample size is greater than the population
size
Draw size samples of dimension k from a Dirichlet distribution. A
Dirichlet-distributed random variable can be seen as a multivariate
generalization of a Beta distribution. Dirichlet pdf is the conjugate
prior of a multinomial in Bayesian inference.
Parameters:
alpha (array) – Parameter of the distribution (k dimension for sample of
dimension k).
size (int or tuple of ints, optional) – Output shape. If the given shape is, e.g., (m,n,k), then
m*n*k samples are drawn. Default is None, in which case a
single value is returned.
Returns:
samples – The drawn samples, of shape (size, alpha.ndim).
Return type:
ndarray,
Notes
\[X \approx \prod_{i=1}^{k}{x^{\alpha_i-1}_i}\]
Uses the following property for computation: for each dimension,
draw a random sample y_i from a standard gamma generator of shape
alpha_i, then
\(X = \frac{1}{\sum_{i=1}^k{y_i}} (y_1, \ldots, y_n)\) is
Dirichlet distributed.
References
Examples
Taking an example cited in Wikipedia, this distribution can be used if
one wanted to cut strings (each of initial length 1.0) into K pieces
with different lengths, where each piece had, on average, a designated
average length, but allowing some variation in the relative sizes of
the pieces.
for x>0 and 0 elsewhere. \(\beta\) is the scale parameter,
which is the inverse of the rate parameter \(\lambda = 1/\beta\).
The rate parameter is an alternative, widely used parameterization
of the exponential distribution [3]_.
The exponential distribution is a continuous analogue of the
geometric distribution. It describes many common situations, such as
the size of raindrops measured over many rainstorms [1]_, or the time
between page requests to Wikipedia [2]_.
Parameters:
scale (float) – The scale parameter, \(\beta = 1/\lambda\).
size (int or tuple of ints, optional) – Output shape. If the given shape is, e.g., (m,n,k), then
m*n*k samples are drawn. Default is None, in which case a
single value is returned.
Samples are drawn from an F distribution with specified parameters,
dfnum (degrees of freedom in numerator) and dfden (degrees of
freedom in denominator), where both parameters should be greater than
zero.
The random variate of the F distribution (also known as the
Fisher distribution) is a continuous probability distribution
that arises in ANOVA tests, and is the ratio of two chi-square
variates.
Parameters:
dfnum (float) – Degrees of freedom in numerator. Should be greater than zero.
dfden (float) – Degrees of freedom in denominator. Should be greater than zero.
size (int or tuple of ints, optional) – Output shape. If the given shape is, e.g., (m,n,k), then
m*n*k samples are drawn. Default is None, in which case a
single value is returned.
Returns:
samples – Samples from the Fisher distribution.
Return type:
ndarray or scalar
See also
scipy.stats.distributions.f
probability density function, distribution or cumulative density function, etc.
Notes
The F statistic is used to compare in-group variances to between-group
variances. Calculating the distribution depends on the sampling, and
so it is a function of the respective degrees of freedom in the
problem. The variable dfnum is the number of samples minus one, the
between-groups degrees of freedom, while dfden is the within-groups
degrees of freedom, the sum of the number of samples in each group
minus the number of groups.
References
Examples
An example from Glantz[1], pp 47-40:
Two groups, children of diabetics (25 people) and children from people
without diabetes (25 controls). Fasting blood glucose was measured,
case group had a mean value of 86.1, controls had a mean value of
82.2. Standard deviations were 2.09 and 2.49 respectively. Are these
data consistent with the null hypothesis that the parents diabetic
status does not affect their children’s blood glucose levels?
Calculating the F statistic from the data gives a value of 36.01.
Draw samples from the distribution:
>>> dfnum=1.# between group degrees of freedom>>> dfden=48.# within groups degrees of freedom>>> s=mkl_random.f(dfnum,dfden,1000)
The lower bound for the top 1% of the samples is :
>>> sort(s)[-10]7.61988120985
So there is about a 1% chance that the F statistic will exceed 7.62,
the measured value is 36, so the null hypothesis is rejected at the 1%
level.
Samples are drawn from a Gamma distribution with specified parameters,
shape (sometimes designated “k”) and scale (sometimes designated
“theta”), where both parameters are > 0.
Parameters:
shape (scalar > 0) – The shape of the gamma distribution.
scale (scalar > 0, optional) – The scale of the gamma distribution. Default is equal to 1.
size (int or tuple of ints, optional) – Output shape. If the given shape is, e.g., (m,n,k), then
m*n*k samples are drawn. Default is None, in which case a
single value is returned.
Returns:
out – Returns one sample unless size parameter is specified.
Return type:
ndarray, float
See also
scipy.stats.distributions.gamma
probability density function, distribution or cumulative density function, etc.
Notes
The probability density for the Gamma distribution is
where \(k\) is the shape and \(\theta\) the scale,
and \(\Gamma\) is the Gamma function.
The Gamma distribution is often used to model the times to failure of
electronic components, and arises naturally in processes for which the
waiting times between Poisson distributed events are relevant.
References
Examples
Draw samples from the distribution:
>>> shape,scale=2.,2.# mean and dispersion>>> s=mkl_random.gamma(shape,scale,1000)
Display the histogram of the samples, along with
the probability density function:
Bernoulli trials are experiments with one of two outcomes:
success or failure (an example of such an experiment is flipping
a coin). The geometric distribution models the number of trials
that must be run in order to achieve success. It is therefore
supported on the positive integers, k=1,2,....
The probability mass function of the geometric distribution is
\[f(k) = (1 - p)^{k - 1} p\]
where p is the probability of success of an individual trial.
Parameters:
p (float) – The probability of success of an individual trial.
size (int or tuple of ints, optional) – Output shape. If the given shape is, e.g., (m,n,k), then
m*n*k samples are drawn. Default is None, in which case a
single value is returned.
Returns:
out – Samples from the geometric distribution, shaped according to
size.
Return type:
ndarray
Examples
Draw ten thousand values from the geometric distribution,
with the probability of an individual success equal to 0.35:
set_state and get_state are not needed to work with any of the
random distributions in NumPy. If the internal state is manually altered,
the user should know exactly what he/she is doing.
Draw samples from a Gumbel distribution with specified location and
scale. For more information on the Gumbel distribution, see
Notes and References below.
Parameters:
loc (float) – The location of the mode of the distribution.
scale (float) – The scale parameter of the distribution.
size (int or tuple of ints, optional) – Output shape. If the given shape is, e.g., (m,n,k), then
m*n*k samples are drawn. Default is None, in which case a
single value is returned.
The Gumbel (or Smallest Extreme Value (SEV) or the Smallest Extreme
Value Type I) distribution is one of a class of Generalized Extreme
Value (GEV) distributions used in modeling extreme value problems.
The Gumbel is a special case of the Extreme Value Type I distribution
for maximums from distributions with “exponential-like” tails.
The probability density for the Gumbel distribution is
where \(\mu\) is the mode, a location parameter, and
\(\beta\) is the scale parameter.
The Gumbel (named for German mathematician Emil Julius Gumbel) was used
very early in the hydrology literature, for modeling the occurrence of
flood events. It is also used for modeling maximum wind speed and
rainfall rates. It is a “fat-tailed” distribution - the probability of
an event in the tail of the distribution is larger than if one used a
Gaussian, hence the surprisingly frequent occurrence of 100-year
floods. Floods were initially modeled as a Gaussian process, which
underestimated the frequency of extreme events.
It is one of a class of extreme value distributions, the Generalized
Extreme Value (GEV) distributions, which also includes the Weibull and
Frechet.
The function has a mean of \(\mu + 0.57721\beta\) and a variance
of \(\frac{\pi^2}{6}\beta^2\).
References
Examples
Draw samples from the distribution:
>>> mu,beta=0,0.1# location and scale>>> s=mkl_random.gumbel(mu,beta,1000)
Display the histogram of the samples, along with
the probability density function:
Samples are drawn from a hypergeometric distribution with specified
parameters, ngood (ways to make a good selection), nbad (ways to make
a bad selection), and nsample = number of items sampled, which is less
than or equal to the sum ngood + nbad.
Parameters:
ngood (int or array_like) – Number of ways to make a good selection. Must be nonnegative.
nbad (int or array_like) – Number of ways to make a bad selection. Must be nonnegative.
nsample (int or array_like) – Number of items sampled. Must be at least 1 and at most
ngood+nbad.
size (int or tuple of ints, optional) – Output shape. If the given shape is, e.g., (d1,d2,d3), then
d1*d2*d3 samples are drawn. Default is None, in which case a
single value is returned.
Returns:
samples – The values are all integers in [0, n].
Return type:
ndarray or scalar
See also
scipy.stats.distributions.hypergeom
probability density function, distribution or cumulative density function, etc.
Notes
The probability density for the Hypergeometric distribution is
for P(x) the probability of x successes, m = ngood, N = ngood + nbad, and
n = number of samples.
Consider an urn with black and white marbles in it, ngood of them
black and nbad are white. If you draw nsample balls without
replacement, then the hypergeometric distribution describes the
distribution of black balls in the drawn sample.
Note that this distribution is very similar to the binomial
distribution, except that in this case, samples are drawn without
replacement, whereas in the Binomial case samples are drawn with
replacement (or the sample space is infinite). As the sample space
becomes large, this distribution approaches the binomial.
References
Examples
Draw samples from the distribution:
>>> ngood,nbad,nsamp=100,2,10# number of good, number of bad, and number of samples>>> s=mkl_random.hypergeometric(ngood,nbad,nsamp,1000)>>> hist(s)# note that it is very unlikely to grab both bad items
Suppose you have an urn with 15 white and 15 black marbles.
If you pull 15 marbles at random, how likely is it that
12 or more of them are one color?
Draw samples from the Laplace or double exponential distribution with
specified location (or mean) and scale (decay).
The Laplace distribution is similar to the Gaussian/normal distribution,
but is sharper at the peak and has fatter tails. It represents the
difference between two independent, identically distributed exponential
random variables.
Parameters:
loc (float, optional) – The position, \(\mu\), of the distribution peak.
scale (float, optional) – \(\lambda\), the exponential decay.
size (int or tuple of ints, optional) – Output shape. If the given shape is, e.g., (m,n,k), then
m*n*k samples are drawn. Default is None, in which case a
single value is returned.
The first law of Laplace, from 1774, states that the frequency
of an error can be expressed as an exponential function of the
absolute magnitude of the error, which leads to the Laplace
distribution. For many problems in economics and health
sciences, this distribution seems to model the data better
than the standard Gaussian distribution.
Samples are drawn from a logistic distribution with specified
parameters, loc (location or mean, also median), and scale (>0).
Parameters:
loc (float)
scale (float > 0.)
size (int or tuple of ints, optional) – Output shape. If the given shape is, e.g., (m,n,k), then
m*n*k samples are drawn. Default is None, in which case a
single value is returned.
Returns:
samples – where the values are all integers in [0, n].
Return type:
ndarray or scalar
See also
scipy.stats.distributions.logistic
probability density function, distribution or cumulative density function, etc.
Notes
The probability density for the Logistic distribution is
The Logistic distribution is used in Extreme Value problems where it
can act as a mixture of Gumbel distributions, in Epidemiology, and by
the World Chess Federation (FIDE) where it is used in the Elo ranking
system, assuming the performance of each player is a logistically
distributed random variable.
Draw samples from a log-normal distribution with specified mean,
standard deviation, and array shape. Note that the mean and standard
deviation are not the values for the distribution itself, but of the
underlying normal distribution it is derived from.
Parameters:
mean (float) – Mean value of the underlying normal distribution
sigma (float, > 0.) – Standard deviation of the underlying normal distribution
size (int or tuple of ints, optional) – Output shape. If the given shape is, e.g., (m,n,k), then
m*n*k samples are drawn. Default is None, in which case a
single value is returned.
method ('ICDF, 'BoxMuller', optional) – Sampling method used by Intel MKL. Can also be specified using
tokens mkl_random.ICDF, mkl_random.BOXMULLER
Returns:
samples – The desired samples. An array of the same shape as size if given,
if size is None a float is returned.
Return type:
ndarray or float
See also
scipy.stats.lognorm
probability density function, distribution, cumulative density function, etc.
Notes
A variable x has a log-normal distribution if log(x) is normally
distributed. The probability density function for the log-normal
distribution is:
\[p(x) = \frac{1}{\sigma x \sqrt{2\pi}}
e^{(-\frac{(ln(x)-\mu)^2}{2\sigma^2})}\]
where \(\mu\) is the mean and \(\sigma\) is the standard
deviation of the normally distributed logarithm of the variable.
A log-normal distribution results if a random variable is the product
of a large number of independent, identically-distributed variables in
the same way that a normal distribution results if the variable is the
sum of a large number of independent, identically-distributed
variables.
References
Examples
Draw samples from the distribution:
>>> mu,sigma=3.,1.# mean and standard deviation>>> s=mkl_random.lognormal(mu,sigma,1000)
Display the histogram of the samples, along with
the probability density function:
Demonstrate that taking the products of random samples from a uniform
distribution can be fit well by a log-normal probability density
function.
>>> # Generate a thousand samples: each is the product of 100 random>>> # values, drawn from a normal distribution.>>> b=[]>>> foriinrange(1000):... a=10.+mkl_random.random(100)... b.append(np.product(a))
>>> b=np.array(b)/np.min(b)# scale values to be positive>>> count,bins,ignored=plt.hist(b,100,normed=True,align='mid')>>> sigma=np.std(np.log(b))>>> mu=np.mean(np.log(b))
Draw samples from a logarithmic series distribution.
Samples are drawn from a log series distribution with specified
shape parameter, 0 < p < 1.
Parameters:
loc (float)
scale (float > 0.)
size (int or tuple of ints, optional) – Output shape. If the given shape is, e.g., (m,n,k), then
m*n*k samples are drawn. Default is None, in which case a
single value is returned.
Returns:
samples – where the values are all integers in [0, n].
Return type:
ndarray or scalar
See also
scipy.stats.distributions.logser
probability density function, distribution or cumulative density function, etc.
Notes
The probability density for the Log Series distribution is
\[P(k) = \frac{-p^k}{k \ln(1-p)},\]
where p = probability.
The log series distribution is frequently used to represent species
richness and occurrence, first proposed by Fisher, Corbet, and
Williams in 1943 [2]. It may also be used to model the numbers of
occupants seen in cars [3].
The multinomial distribution is a multivariate generalisation of the
binomial distribution. Take an experiment with one of p
possible outcomes. An example of such an experiment is throwing a dice,
where the outcome can be 1 through 6. Each sample drawn from the
distribution represents n such experiments. Its values,
X_i=[X_0,X_1,...,X_p], represent the number of times the
outcome was i.
Parameters:
n (int) – Number of experiments.
pvals (sequence of floats, length p) – Probabilities of each of the p different outcomes. These
should sum to 1 (however, the last element is always assumed to
account for the remaining probability, as long as
sum(pvals[:-1])<=1).
size (int or tuple of ints, optional) – Output shape. If the given shape is, e.g., (m,n,k), then
m*n*k samples are drawn. Default is None, in which case a
single value is returned.
method ('ICDF, 'BoxMuller', 'BoxMuller2', optional) – Sampling method used by Intel MKL. Can also be specified using
tokens mkl_random.ICDF, mkl_random.BOXMULLER, mkl_random.BOXMULLER2
Returns:
out – The drawn samples, of shape size, if that was provided. If not,
the shape is (N,).
In other words, each entry out[i,j,...,:] is an N-dimensional
value drawn from the distribution.
The probability inputs should be normalized. As an implementation
detail, the value of the last entry is ignored and assumed to take
up any leftover probability mass, but this should not be relied on.
A biased coin which has twice as much weight on one side as on the
other should be sampled like so:
Draw random samples from a multivariate normal distribution.
The multivariate normal, multinormal or Gaussian distribution is a
generalization of the one-dimensional normal distribution to higher
dimensions. Such a distribution is specified by its mean and
covariance matrix, specified by its lower triangular Cholesky factor.
These parameters are analogous to the mean
(average or “center”) and standard deviation, or “width,”
of the one-dimensional normal distribution.
Parameters:
mean (1-D array_like, of length N) – Mean of the N-dimensional distribution.
ch (2-D array_like, of shape (N, N)) – Cholesky factor of the covariance matrix of the distribution. Only lower-triangular
part of the matrix is actually used.
size (int or tuple of ints, optional) – Given a shape of, for example, (m,n,k), m*n*k samples are
generated, and packed in an m-by-n-by-k arrangement. Because
each sample is N-dimensional, the output shape is (m,n,k,N).
If no shape is specified, a single (N-D) sample is returned.
method ('ICDF, 'BoxMuller', 'BoxMuller2', optional) – Sampling method used by Intel MKL. Can also be specified using
tokens mkl_random.ICDF, mkl_random.BOXMULLER, mkl_random.BOXMULLER2
Returns:
out – The drawn samples, of shape size, if that was provided. If not,
the shape is (N,).
In other words, each entry out[i,j,...,:] is an N-dimensional
value drawn from the distribution.
Return type:
ndarray
Notes
The mean is a coordinate in N-dimensional space, which represents the
location where samples are most likely to be generated. This is
analogous to the peak of the bell curve for the one-dimensional or
univariate normal distribution.
Covariance indicates the level to which two variables vary together.
From the multivariate normal distribution, we draw N-dimensional
samples, \(X = [x_1, x_2, ... x_N]\). The covariance matrix
element \(C_{ij}\) is the covariance of \(x_i\) and \(x_j\).
The element \(C_{ii}\) is the variance of \(x_i\) (i.e. its
“spread”).
Instead of specifying the full covariance matrix, popular
approximations include:
Spherical covariance (cov is a multiple of the identity matrix)
Diagonal covariance (cov has non-negative elements, and only on
the diagonal)
This geometrical property can be seen in two dimensions by plotting
generated data-points:
Note that the covariance matrix must be positive semidefinite (a.k.a.
nonnegative-definite). Otherwise, the behavior of this method is
undefined and backwards compatibility is not guaranteed.
Draw random samples from a multivariate normal distribution.
The multivariate normal, multinormal or Gaussian distribution is a
generalization of the one-dimensional normal distribution to higher
dimensions. Such a distribution is specified by its mean and
covariance matrix. These parameters are analogous to the mean
(average or “center”) and variance (standard deviation, or “width,”
squared) of the one-dimensional normal distribution.
Parameters:
mean (1-D array_like, of length N) – Mean of the N-dimensional distribution.
cov (2-D array_like, of shape (N, N)) – Covariance matrix of the distribution. It must be symmetric and
positive-semidefinite for proper sampling.
size (int or tuple of ints, optional) – Given a shape of, for example, (m,n,k), m*n*k samples are
generated, and packed in an m-by-n-by-k arrangement. Because
each sample is N-dimensional, the output shape is (m,n,k,N).
If no shape is specified, a single (N-D) sample is returned.
Returns:
out – The drawn samples, of shape size, if that was provided. If not,
the shape is (N,).
In other words, each entry out[i,j,...,:] is an N-dimensional
value drawn from the distribution.
Return type:
ndarray
Notes
The mean is a coordinate in N-dimensional space, which represents the
location where samples are most likely to be generated. This is
analogous to the peak of the bell curve for the one-dimensional or
univariate normal distribution.
Covariance indicates the level to which two variables vary together.
From the multivariate normal distribution, we draw N-dimensional
samples, \(X = [x_1, x_2, ... x_N]\). The covariance matrix
element \(C_{ij}\) is the covariance of \(x_i\) and \(x_j\).
The element \(C_{ii}\) is the variance of \(x_i\) (i.e. its
“spread”).
Instead of specifying the full covariance matrix, popular
approximations include:
Spherical covariance (cov is a multiple of the identity matrix)
Diagonal covariance (cov has non-negative elements, and only on
the diagonal)
This geometrical property can be seen in two dimensions by plotting
generated data-points:
Note that the covariance matrix must be positive semidefinite (a.k.a.
nonnegative-definite). Otherwise, the behavior of this method is
undefined and backwards compatibility is not guaranteed.
Draw samples from a negative binomial distribution.
Samples are drawn from a negative binomial distribution with specified
parameters, n trials and p probability of success where n is an
integer > 0 and p is in the interval [0, 1].
Parameters:
n (int) – Parameter, > 0.
p (float) – Parameter, >= 0 and <=1.
size (int or tuple of ints, optional) – Output shape. If the given shape is, e.g., (m,n,k), then
m*n*k samples are drawn. Default is None, in which case a
single value is returned.
Returns:
samples – Drawn samples.
Return type:
int or ndarray of ints
Notes
The probability density for the negative binomial distribution is
\[P(N;n,p) = \binom{N+n-1}{n-1}p^{n}(1-p)^{N},\]
where \(n-1\) is the number of successes, \(p\) is the
probability of success, and \(N+n-1\) is the number of trials.
The negative binomial distribution gives the probability of n-1
successes and N failures in N+n-1 trials, and success on the (N+n)th
trial.
If one throws a die repeatedly until the third time a “1” appears,
then the probability distribution of the number of non-“1”s that
appear before the third “1” is a negative binomial distribution.
References
Examples
Draw samples from the distribution:
A real world example. A company drills wild-cat oil
exploration wells, each with an estimated probability of
success of 0.1. What is the probability of having one success
for each successive well, that is what is the probability of a
single success after drilling 5 wells, after 6 wells, etc.?
>>> s=mkl_random.negative_binomial(1,0.1,100000)>>> foriinrange(1,11):... probability=sum(s<i)/100000.... printi,"wells drilled, probability of one success =",probability
Draw samples from a noncentral chi-square distribution.
The noncentral \(\chi^2\) distribution is a generalisation of
the \(\chi^2\) distribution.
Parameters:
df (int) – Degrees of freedom, should be > 0 as of Numpy 1.10,
should be > 1 for earlier versions.
nonc (float) – Non-centrality, should be non-negative.
size (int or tuple of ints, optional) – Output shape. If the given shape is, e.g., (m,n,k), then
m*n*k samples are drawn. Default is None, in which case a
single value is returned.
Notes
The probability density function for the noncentral Chi-square
distribution is
where \(Y_{q}\) is the Chi-square with q degrees of freedom.
In Delhi (2007), it is noted that the noncentral chi-square is
useful in bombing and coverage problems, the probability of
killing the point target given by the noncentral chi-squared
distribution.
References
Examples
Draw values from the distribution and plot the histogram
Samples are drawn from an F distribution with specified parameters,
dfnum (degrees of freedom in numerator) and dfden (degrees of
freedom in denominator), where both parameters > 1.
nonc is the non-centrality parameter.
Parameters:
dfnum (int) – Parameter, should be > 1.
dfden (int) – Parameter, should be > 1.
nonc (float) – Parameter, should be >= 0.
size (int or tuple of ints, optional) – Output shape. If the given shape is, e.g., (m,n,k), then
m*n*k samples are drawn. Default is None, in which case a
single value is returned.
Returns:
samples – Drawn samples.
Return type:
scalar or ndarray
Notes
When calculating the power of an experiment (power = probability of
rejecting the null hypothesis when a specific alternative is true) the
non-central F statistic becomes important. When the null hypothesis is
true, the F statistic follows a central F distribution. When the null
hypothesis is not true, then it follows a non-central F statistic.
References
Examples
In a study, testing for a specific alternative to the null hypothesis
requires use of the Noncentral F distribution. We need to calculate the
area in the tail of the distribution that exceeds the value of the F
distribution for the null hypothesis. We’ll plot the two probability
distributions for comparison.
>>> dfnum=3# between group deg of freedom>>> dfden=20# within groups degrees of freedom>>> nonc=3.0>>> nc_vals=mkl_random.noncentral_f(dfnum,dfden,nonc,1000000)>>> NF=np.histogram(nc_vals,bins=50,normed=True)>>> c_vals=mkl_random.f(dfnum,dfden,1000000)>>> F=np.histogram(c_vals,bins=50,normed=True)>>> plt.plot(F[1][1:],F[0])>>> plt.plot(NF[1][1:],NF[0])>>> plt.show()
Draw random samples from a normal (Gaussian) distribution.
The probability density function of the normal distribution, first
derived by De Moivre and 200 years later by both Gauss and Laplace
independently [2]_, is often called the bell curve because of
its characteristic shape (see the example below).
The normal distributions occurs often in nature. For example, it
describes the commonly occurring distribution of samples influenced
by a large number of tiny, random disturbances, each with its own
unique distribution [2]_.
Parameters:
loc (float) – Mean (“centre”) of the distribution.
scale (float) – Standard deviation (spread or “width”) of the distribution.
size (int or tuple of ints, optional) – Output shape. If the given shape is, e.g., (m,n,k), then
m*n*k samples are drawn. Default is None, in which case a
single value is returned.
method ('ICDF, 'BoxMuller', 'BoxMuller2', optional) – Sampling method used by Intel MKL. Can also be specified using
tokens mkl_random.ICDF, mkl_random.BOXMULLER, mkl_random.BOXMULLER2
See also
scipy.stats.distributions.norm
probability density function, distribution or cumulative density function, etc.
Notes
The probability density for the Gaussian distribution is
where \(\mu\) is the mean and \(\sigma\) the standard
deviation. The square of the standard deviation, \(\sigma^2\),
is called the variance.
The function has its peak at the mean, and its “spread” increases with
the standard deviation (the function reaches 0.607 times its maximum at
\(x + \sigma\) and \(x - \sigma\)[2]_). This implies that
numpy.random.normal is more likely to return samples lying close to
the mean, rather than those far away.
References
Examples
Draw samples from the distribution:
>>> mu,sigma=0,0.1# mean and standard deviation>>> s=mkl_random.normal(mu,sigma,1000)
Verify the mean and the variance:
>>> abs(mu-np.mean(s))<0.01True
>>> abs(sigma-np.std(s,ddof=1))<0.01True
Display the histogram of the samples, along with
the probability density function:
Draw samples from a Pareto II or Lomax distribution with
specified shape.
The Lomax or Pareto II distribution is a shifted Pareto
distribution. The classical Pareto distribution can be
obtained from the Lomax distribution by adding 1 and
multiplying by the scale parameter m (see Notes). The
smallest value of the Lomax distribution is zero while for the
classical Pareto distribution it is mu, where the standard
Pareto distribution has location mu=1. Lomax can also
be considered as a simplified version of the Generalized
Pareto distribution (available in SciPy), with the scale set
to one and the location set to zero.
The Pareto distribution must be greater than zero, and is
unbounded above. It is also known as the “80-20 rule”. In
this distribution, 80 percent of the weights are in the lowest
20 percent of the range, while the other 20 percent fill the
remaining 80 percent of the range.
Parameters:
shape (float, > 0.) – Shape of the distribution.
size (int or tuple of ints, optional) – Output shape. If the given shape is, e.g., (m,n,k), then
m*n*k samples are drawn. Default is None, in which case a
single value is returned.
See also
scipy.stats.distributions.lomax.pdf
probability density function, distribution or cumulative density function, etc.
scipy.stats.distributions.genpareto.pdf
probability density function, distribution or cumulative density function, etc.
Notes
The probability density for the Pareto distribution is
\[p(x) = \frac{a m^a}{(1+x)^{a+1}}\]
where \(a\) is the shape and \(m\) the scale.
The Pareto distribution, named after the Italian economist
Vilfredo Pareto, is a power law probability distribution
useful in many real world problems. Outside the field of
economics it is generally referred to as the Bradford
distribution. Pareto developed the distribution to describe
the distribution of wealth in an economy. It has also found
use in insurance, web page access statistics, oil field sizes,
and many other problems, including the download frequency for
projects in Sourceforge [1]_. It is one of the so-called
“fat-tailed” distributions.
References
Examples
Draw samples from the distribution:
>>> a,m=3.,2.# shape and mode>>> s=(mkl_random.pareto(a,1000)+1)*m
Display the histogram of the samples, along with the probability
density function:
The Poisson distribution is the limit of the binomial distribution
for large N.
Parameters:
lam (float or sequence of float) – Expectation of interval, should be >= 0. A sequence of expectation
intervals must be broadcastable over the requested size.
size (int or tuple of ints, optional) – Output shape. If the given shape is, e.g., (m,n,k), then
m*n*k samples are drawn. Default is None, in which case a
single value is returned.
method ('POISNORM, 'PTPE', optional) – Sampling method used by Intel MKL. Can also be specified using
tokens mkl_random.POISNORM, mkl_random.PTPE
Returns:
samples – The drawn samples, of shape size, if it was provided.
For events with an expected separation \(\lambda\) the Poisson
distribution \(f(k; \lambda)\) describes the probability of
\(k\) events occurring within the observed
interval \(\lambda\).
Because the output is limited to the range of the C long type, a
ValueError is raised when lam is within 10 sigma of the maximum
representable value.
Draws samples in [0, 1] from a power distribution with positive
exponent a - 1.
Also known as the power function distribution.
Parameters:
a (float) – parameter, > 0
size (int or tuple of ints, optional) – Output shape. If the given shape is, e.g., (m,n,k), then
m*n*k samples are drawn. Default is None, in which case a
single value is returned.
Returns:
samples – The returned samples lie in [0, 1].
Return type:
ndarray or scalar
Raises:
ValueError – If a < 1.
Notes
The probability density function is
\[P(x; a) = ax^{a-1}, 0 \le x \le 1, a>0.\]
The power function distribution is just the inverse of the Pareto
distribution. It may also be seen as a special case of the Beta
distribution.
It is used, for example, in modeling the over-reporting of insurance
claims.
Return random integers from low (inclusive) to high (exclusive).
Return random integers from the “discrete uniform” distribution of
the specified dtype in the “half-open” interval [low, high). If
high is None (the default), then results are from [0, low).
Parameters:
low (int) – Lowest (signed) integer to be drawn from the distribution (unless
high=None, in which case this parameter is the highest such
integer).
high (int, optional) – If provided, one above the largest (signed) integer to be drawn
from the distribution (see above for behavior if high=None).
size (int or tuple of ints, optional) – Output shape. If the given shape is, e.g., (m,n,k), then
m*n*k samples are drawn. Default is None, in which case a
single value is returned.
dtype (dtype, optional) –
Desired dtype of the result. All dtypes are determined by their
name, i.e., ‘int64’, ‘int’, etc, so byteorder is not available
and a specific precision may have different C types depending
on the platform. The default value is ‘np.int’.
Added in version 1.11.0.
Returns:
out – size-shaped array of random integers from the appropriate
distribution, or a single such random int if size not provided.
Return type:
int or ndarray of ints
See also
random.random_integers
similar to randint, only for the closed interval [low, high], and 1 is the lowest value if high is omitted. In particular, this other one is the one to use to generate uniformly distributed discrete non-integers.
Return random integers from low (inclusive) to high (exclusive).
Return random integers from the “discrete uniform” distribution of
the specified dtype in the “half-open” interval [low, high). If
high is None (the default), then results are from [0, low).
Parameters:
low (int) – Lowest (signed) integer to be drawn from the distribution (unless
high=None, in which case this parameter is the highest such
integer).
high (int, optional) – If provided, one above the largest (signed) integer to be drawn
from the distribution (see above for behavior if high=None).
size (int or tuple of ints, optional) – Output shape. If the given shape is, e.g., (m,n,k), then
m*n*k samples are drawn. Default is None, in which case a
single value is returned.
Returns:
out – size-shaped array of random integers from the appropriate
distribution, or a single such random int if size not provided.
Return type:
int or ndarray of ints
See also
random.random_integers
similar to randint, only for the closed interval [low, high], and 1 is the lowest value if high is omitted. In particular, this other one is the one to use to generate uniformly distributed discrete non-integers.
Return a sample (or samples) from the “standard normal” distribution.
If positive, int_like or int-convertible arguments are provided,
randn generates an array of shape (d0,d1,...,dn), filled
with random floats sampled from a univariate “normal” (Gaussian)
distribution of mean 0 and variance 1 (if any of the \(d_i\) are
floats, they are first converted to integers by truncation). A single
float randomly sampled from the distribution is returned if no
argument is provided.
This is a convenience function. If you want an interface that takes a
tuple as the first argument, use numpy.random.standard_normal instead.
Parameters:
d0 (int, optional) – The dimensions of the returned array, should be all positive.
If no argument is given a single Python float is returned.
d1 (int, optional) – The dimensions of the returned array, should be all positive.
If no argument is given a single Python float is returned.
... (int, optional) – The dimensions of the returned array, should be all positive.
If no argument is given a single Python float is returned.
dn (int, optional) – The dimensions of the returned array, should be all positive.
If no argument is given a single Python float is returned.
Returns:
Z – A (d0,d1,...,dn)-shaped array of floating-point samples from
the standard normal distribution, or a single such float if
no parameters were supplied.
Return type:
ndarray or float
See also
random.standard_normal
Similar, but takes a tuple as its argument.
Notes
For random samples from \(N(\mu, \sigma^2)\), use:
Random integers of type np.int between low and high, inclusive.
Return random integers of type np.int from the “discrete uniform”
distribution in the closed interval [low, high]. If high is
None (the default), then results are from [1, low]. The np.int
type translates to the C long type used by Python 2 for “short”
integers and its precision is platform dependent.
This function has been deprecated. Use randint instead.
Deprecated since version 1.11.0.
Parameters:
low (int) – Lowest (signed) integer to be drawn from the distribution (unless
high=None, in which case this parameter is the highest such
integer).
high (int, optional) – If provided, the largest (signed) integer to be drawn from the
distribution (see above for behavior if high=None).
size (int or tuple of ints, optional) – Output shape. If the given shape is, e.g., (m,n,k), then
m*n*k samples are drawn. Default is None, in which case a
single value is returned.
Returns:
out – size-shaped array of random integers from the appropriate
distribution, or a single such random int if size not provided.
Return type:
int or ndarray of ints
See also
random.randint
Similar to random_integers, only for the half-open interval [low, high), and 0 is the lowest value if high is omitted.
Notes
To sample from N evenly spaced floating-point numbers between a and b,
use:
Choose five random numbers from the set of five evenly-spaced
numbers between 0 and 2.5, inclusive (i.e., from the set
\({0, 5/8, 10/8, 15/8, 20/8}\)):
Return random floats in the half-open interval [0.0, 1.0).
Results are from the “continuous uniform” distribution over the
stated interval. To sample \(Unif[a, b), b > a\) multiply
the output of random_sample by (b-a) and add a:
(b-a)*random_sample()+a
Parameters:
size (int or tuple of ints, optional) – Output shape. If the given shape is, e.g., (m,n,k), then
m*n*k samples are drawn. Default is None, in which case a
single value is returned.
Returns:
out – Array of random floats of shape size (unless size=None, in which
case a single float is returned).
The \(\chi\) and Weibull distributions are generalizations of the
Rayleigh.
Parameters:
scale (scalar) – Scale, also equals the mode. Should be >= 0.
size (int or tuple of ints, optional) – Output shape. If the given shape is, e.g., (m,n,k), then
m*n*k samples are drawn. Default is None, in which case a
single value is returned.
Notes
The probability density function for the Rayleigh distribution is
The Rayleigh distribution would arise, for example, if the East
and North components of the wind velocity had identical zero-mean
Gaussian distributions. Then the wind speed would have a Rayleigh
distribution.
References
Examples
Draw values from the distribution and plot the histogram
basic pseudo-random number generation algorithms, or non-deterministic
hardware-based generator, provided by Intel MKL. Use brng==None to keep
the brng specified during construction of this class instance.
set_state and get_state are not needed to work with any of the
random distributions in NumPy. If the internal state is manually altered,
the user should know exactly what he/she is doing.
For backwards compatibility, the form (str, array of 624 uints, int) is
also accepted although in such a case keys are used to seed the generator,
and position index pos is ignored: state=('MT19937',keys,pos).
Draw samples from a standard Cauchy distribution with mode = 0.
Also known as the Lorentz distribution.
Parameters:
size (int or tuple of ints, optional) – Output shape. If the given shape is, e.g., (m,n,k), then
m*n*k samples are drawn. Default is None, in which case a
single value is returned.
Returns:
samples – The drawn samples.
Return type:
ndarray or scalar
Notes
The probability density function for the full Cauchy distribution is
and the Standard Cauchy distribution just sets \(x_0=0\) and
\(\gamma=1\)
The Cauchy distribution arises in the solution to the driven harmonic
oscillator problem, and also describes spectral line broadening. It
also describes the distribution of values at which a line tilted at
a random angle will cut the x axis.
When studying hypothesis tests that assume normality, seeing how the
tests perform on data from a Cauchy distribution is a good indicator of
their sensitivity to a heavy-tailed distribution, since the Cauchy looks
very much like a Gaussian distribution, but with heavier tails.
References
Examples
Draw samples and plot the distribution:
>>> s=mkl_random.standard_cauchy(1000000)>>> s=s[(s>-25)&(s<25)]# truncate distribution so it plots well>>> plt.hist(s,bins=100)>>> plt.show()
Draw samples from the standard exponential distribution.
standard_exponential is identical to the exponential distribution
with a scale parameter of 1.
Parameters:
size (int or tuple of ints, optional) – Output shape. If the given shape is, e.g., (m,n,k), then
m*n*k samples are drawn. Default is None, in which case a
single value is returned.
Samples are drawn from a Gamma distribution with specified parameters,
shape (sometimes designated “k”) and scale=1.
Parameters:
shape (float) – Parameter, should be > 0.
size (int or tuple of ints, optional) – Output shape. If the given shape is, e.g., (m,n,k), then
m*n*k samples are drawn. Default is None, in which case a
single value is returned.
Returns:
samples – The drawn samples.
Return type:
ndarray or scalar
See also
scipy.stats.distributions.gamma
probability density function, distribution or cumulative density function, etc.
Notes
The probability density for the Gamma distribution is
where \(k\) is the shape and \(\theta\) the scale,
and \(\Gamma\) is the Gamma function.
The Gamma distribution is often used to model the times to failure of
electronic components, and arises naturally in processes for which the
waiting times between Poisson distributed events are relevant.
References
Examples
Draw samples from the distribution:
>>> shape,scale=2.,1.# mean and width>>> s=mkl_random.standard_gamma(shape,1000000)
Display the histogram of the samples, along with
the probability density function:
Draw samples from a standard Normal distribution (mean=0, stdev=1).
Parameters:
size (int or tuple of ints, optional) – Output shape. If the given shape is, e.g., (m,n,k), then
m*n*k samples are drawn. Default is None, in which case a
single value is returned.
method ('ICDF, 'BoxMuller', 'BoxMuller2', optional) – Sampling method used by Intel MKL. Can also be specified using
tokens mkl_random.ICDF, mkl_random.BOXMULLER, mkl_random.BOXMULLER2
Draw samples from a standard Student’s t distribution with df degrees
of freedom.
A special case of the hyperbolic distribution. As df gets
large, the result resembles that of the standard normal
distribution (standard_normal).
Parameters:
df (int) – Degrees of freedom, should be > 0.
size (int or tuple of ints, optional) – Output shape. If the given shape is, e.g., (m,n,k), then
m*n*k samples are drawn. Default is None, in which case a
single value is returned.
Returns:
samples – Drawn samples.
Return type:
ndarray or scalar
Notes
The probability density function for the t distribution is
The t test is based on an assumption that the data come from a
Normal distribution. The t test provides a way to test whether
the sample mean (that is the mean calculated from the data) is
a good estimate of the true mean.
The derivation of the t-distribution was first published in
1908 by William Gisset while working for the Guinness Brewery
in Dublin. Due to proprietary issues, he had to publish under
a pseudonym, and so he used the name Student.
References
Examples
From Dalgaard page 83 [1]_, suppose the daily energy intake for 11
women in Kj is:
Return a sample of uniformly distributed random integers in the interval
[0, np.iinfo("long").max].
Parameters:
size (int or tuple of ints, optional) – Output shape. If the given shape is, e.g., (m,n,k), then
m*n*k samples are drawn. Default is None, in which case a
single value is returned.
The triangular distribution is a continuous probability
distribution with lower limit left, peak at mode, and upper
limit right. Unlike the other distributions, these parameters
directly define the shape of the pdf.
Parameters:
left (scalar) – Lower limit.
mode (scalar) – The value where the peak of the distribution occurs.
The value should fulfill the condition left<=mode<=right.
right (scalar) – Upper limit, should be larger than left.
size (int or tuple of ints, optional) – Output shape. If the given shape is, e.g., (m,n,k), then
m*n*k samples are drawn. Default is None, in which case a
single value is returned.
Returns:
samples – The returned samples all lie in the interval [left, right].
Return type:
ndarray or scalar
Notes
The probability density function for the triangular distribution is
\[\begin{split}P(x;l, m, r) = \begin{cases}
\frac{2(x-l)}{(r-l)(m-l)}& \text{for $l \leq x \leq m$},\\
\frac{2(r-x)}{(r-l)(r-m)}& \text{for $m \leq x \leq r$},\\
0& \text{otherwise}.
\end{cases}\end{split}\]
The triangular distribution is often used in ill-defined
problems where the underlying distribution is not known, but
some knowledge of the limits and mode exists. Often it is used
in simulations.
References
Examples
Draw values from the distribution and plot the histogram:
Samples are uniformly distributed over the half-open interval
[low,high) (includes low, but excludes high). In other words,
any value within the given interval is equally likely to be drawn
by uniform.
Parameters:
low (float, optional) – Lower boundary of the output interval. All values generated will be
greater than or equal to low. The default value is 0.
high (float) – Upper boundary of the output interval. All values generated will be
less than high. The default value is 1.0.
size (int or tuple of ints, optional) – Output shape. If the given shape is, e.g., (m,n,k), then
m*n*k samples are drawn. Default is None, in which case a
single value is returned.
Samples are drawn from a von Mises distribution with specified mode
(mu) and dispersion (kappa), on the interval [-pi, pi].
The von Mises distribution (also known as the circular normal
distribution) is a continuous probability distribution on the unit
circle. It may be thought of as the circular analogue of the normal
distribution.
Parameters:
mu (float) – Mode (“center”) of the distribution.
kappa (float) – Dispersion of the distribution, has to be >=0.
size (int or tuple of ints, optional) – Output shape. If the given shape is, e.g., (m,n,k), then
m*n*k samples are drawn. Default is None, in which case a
single value is returned.
Returns:
samples – The returned samples, which are in the interval [-pi, pi].
Return type:
scalar or ndarray
See also
scipy.stats.distributions.vonmises
probability density function, distribution, or cumulative density function, etc.
Notes
The probability density for the von Mises distribution is
where \(\mu\) is the mode and \(\kappa\) the dispersion,
and \(I_0(\kappa)\) is the modified Bessel function of order 0.
The von Mises is named for Richard Edler von Mises, who was born in
Austria-Hungary, in what is now the Ukraine. He fled to the United
States in 1939 and became a professor at Harvard. He worked in
probability theory, aerodynamics, fluid mechanics, and philosophy of
science.
References
Examples
Draw samples from the distribution:
>>> mu,kappa=0.0,4.0# mean and dispersion>>> s=mkl_random.vonmises(mu,kappa,1000)
Display the histogram of the samples, along with
the probability density function:
Draw samples from a Wald, or inverse Gaussian, distribution.
As the scale approaches infinity, the distribution becomes more like a
Gaussian. Some references claim that the Wald is an inverse Gaussian
with mean equal to 1, but this is by no means universal.
The inverse Gaussian distribution was first studied in relationship to
Brownian motion. In 1956 M.C.K. Tweedie used the name inverse Gaussian
because there is an inverse relationship between the time to cover a
unit distance and distance covered in unit time.
Parameters:
mean (scalar) – Distribution mean, should be > 0.
scale (scalar) – Scale parameter, should be >= 0.
size (int or tuple of ints, optional) – Output shape. If the given shape is, e.g., (m,n,k), then
m*n*k samples are drawn. Default is None, in which case a
single value is returned.
Returns:
samples – Drawn sample, all greater than zero.
Return type:
ndarray or scalar
Notes
The probability density function for the Wald distribution is
As noted above the inverse Gaussian distribution first arise
from attempts to model Brownian motion. It is also a
competitor to the Weibull for use in reliability modeling and
modeling stock returns and interest rate processes.
References
Examples
Draw values from the distribution and plot the histogram:
Draw samples from a 1-parameter Weibull distribution with the given
shape parameter a.
\[X = (-ln(U))^{1/a}\]
Here, U is drawn from the uniform distribution over (0,1].
The more common 2-parameter Weibull, including a scale parameter
\(\lambda\) is just \(X = \lambda(-ln(U))^{1/a}\).
Parameters:
a (float) – Shape of the distribution.
size (int or tuple of ints, optional) – Output shape. If the given shape is, e.g., (m,n,k), then
m*n*k samples are drawn. Default is None, in which case a
single value is returned.
The Weibull (or Type III asymptotic extreme value distribution
for smallest values, SEV Type III, or Rosin-Rammler
distribution) is one of a class of Generalized Extreme Value
(GEV) distributions used in modeling extreme value problems.
This class includes the Gumbel and Frechet distributions.
The probability density for the Weibull distribution is
Samples are drawn from a Zipf distribution with specified parameter
a > 1.
The Zipf distribution (also known as the zeta distribution) is a
continuous probability distribution that satisfies Zipf’s law: the
frequency of an item is inversely proportional to its rank in a
frequency table.
Parameters:
a (float > 1) – Distribution parameter.
size (int or tuple of ints, optional) – Output shape. If the given shape is, e.g., (m,n,k), then
m*n*k samples are drawn. Default is None, in which case a
single value is returned.
Returns:
samples – The returned samples are greater than or equal to one.
Return type:
scalar or ndarray
See also
scipy.stats.distributions.zipf
probability density function, distribution, or cumulative density function, etc.
Notes
The probability density for the Zipf distribution is
\[p(x) = \frac{x^{-a}}{\zeta(a)},\]
where \(\zeta\) is the Riemann Zeta function.
It is named for the American linguist George Kingsley Zipf, who noted
that the frequency of any word in a sample of a language is inversely
proportional to its rank in the frequency table.
References
Examples
Draw samples from the distribution:
>>> a=2.# parameter>>> s=mkl_random.zipf(a,1000)
Display the histogram of the samples, along with
the probability density function:
>>> importmatplotlib.pyplotasplt>>> importscipy.specialasspsTruncate s values at 50 so plot is interesting>>> count,bins,ignored=plt.hist(s[s<50],50,normed=True)>>> x=np.arange(1.,50.)>>> y=x**(-a)/sps.zetac(a)>>> plt.plot(x,y/max(y),linewidth=2,color='r')>>> plt.show()