OneWayAnovaModel.GetDifferenceBetweenMeansEstimate Method

Gets an estimate for the difference between the groups with the specified indexes.

Definition

Namespace: Numerics.NET.Statistics
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public Parameter<double> GetDifferenceBetweenMeansEstimate(
	int index1,
	int index2
)

Parameters

index1  Int32
The index of the first group.
index2  Int32
The index of the second group.

Return Value

Parameter<Double>
A Parameter<T> object.

Exceptions

InvalidOperationException

The Fit() method has not been called.

ArgumentOutOfRangeException

index1 is less than zero or greater than or equal to the number of groups.

-or-

index2 is less than zero or greater than or equal to the number of groups.

See Also