Click or drag to resize
Accord.NET (logo)

IDistributionFit Method (Array, Int32)

Fits the underlying distribution to a given set of observations.

Namespace:  Accord.Statistics.Distributions
Assembly:  Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax
void Fit(
	Array observations,
	int[] weights
)
Request Example View Source

Parameters

observations
Type: SystemArray
The array of observations to fit the model against. The array elements can be either of type double (for univariate data) or type double[] (for multivariate data).
weights
Type: SystemInt32
The weight vector containing the weight for each of the samples.
Remarks
Although both double[] and double[][] arrays are supported, providing a double[] for a multivariate distribution or a double[][] for a univariate distribution may have a negative impact in performance.
See Also