Click or drag to resize

BetaDistributionFitToSample Method

Computes the Beta distribution that best fits the given sample.

Namespace:  Meta.Numerics.Statistics.Distributions
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax
public static BetaFitResult FitToSample(
	Sample sample
)

Parameters

sample
Type: Meta.Numerics.StatisticsSample
The sample to fit.

Return Value

Type: BetaFitResult
The best fit parameters.
Exceptions
ExceptionCondition
ArgumentNullExceptionsample is null.
InsufficientDataExceptionsample contains fewer than three values.
InvalidOperationExceptionNot all the entries in sample lie between zero and one.
Remarks

The returned fit parameters are the α (Alpha) and β (Beta) parameters, in that order. These are the same parameters, in the same order, that are required by the BetaDistribution(Double, Double) constructor to specify a new Beta distribution.

See Also