Poisson Distribution Constructor
Definition
Namespace: Numerics.NET.Statistics.Distributions
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Overload List
Poisson | Constructs a new PoissonDistribution. |
Poisson | Estimates the parameters of the distribution of a variable assuming it follows a Poisson distribution. |
PoissonDistribution(Double)
Constructs a new PoissonDistribution.
Remarks
mean represents the mean number of occurrances of an event in unit time.
PoissonDistribution(Vector<Double>)
Estimates the parameters of the distribution of a variable assuming it follows a Poisson distribution.
public PoissonDistribution(
Vector<double> variable
)
Parameters
Return Value
The PoissonDistribution that best matches the distribution of variable.Remarks
Use this constructor to create a PoissonDistribution whose parameter is estimated from variable.
Exceptions
Argument | variable is null. |