package
0.0.0-20181125101827-41a0da705a5b
Repository: https://github.com/gonum/stat.git
Documentation: pkg.go.dev
# Functions
NewCategorical constructs a new categorical distribution where the probability that x equals i is proportional to w[i].
# Variables
UnitNormal is an instantiation of the normal distribution with Mu = 0 and Sigma = 1.
UnitUniform is an instantiation of the uniform distribution with Min = 0 and Max = 1.
# Structs
Bernoulli represents a random variable whose value is 1 with probability p and value of zero with probability 1-P.
Beta implements the Beta distribution, a two-parameter continuous distribution with support between 0 and 1.
Categorical is an extension of the Bernouilli distribution where x takes values {0, 1, ..., len(w)-1} where w is the weight vector.
ChiSquared implements the χ² distribution, a one parameter distribution with support on the positive numbers.
Exponential represents the exponential distribution (https://en.wikipedia.org/wiki/Exponential_distribution).
F implements the F-distribution, a two-parameter continuous distribution with support over the positive real numbers.
Gamma implements the Gamma distribution, a two-parameter continuous distribution with support over the positive real numbers.
Laplace represents the Laplace distribution (https://en.wikipedia.org/wiki/Laplace_distribution).
LogNormal represents a random variable whose log is normally distributed.
Normal respresents a normal (Gaussian) distribution (https://en.wikipedia.org/wiki/Normal_distribution).
Parameter represents a parameter of a probability distribution.
StudentsT implements the three-parameter Student's T distribution, a distribution over the real numbers.
Uniform represents a continuous uniform distribution (https://en.wikipedia.org/wiki/Uniform_distribution_%28continuous%29).
Weibull distribution.
# Interfaces
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author