Constructor for MultipleComparisons.

Namespace: Imsl.Stat
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public MultipleComparisons(
	double[] means,
	int df,
	double stdError
)
Visual Basic (Declaration)
Public Sub New ( _
	means As Double(), _
	df As Integer, _
	stdError As Double _
)
Visual C++
public:
MultipleComparisons(
	array<double>^ means, 
	int df, 
	double stdError
)

Parameters

means
Type: array< System..::.Double >[]()[]
A double array containing the means.
df
Type: System..::.Int32
A int scalar containing the degrees of freedom associated with stdError.
stdError
Type: System..::.Double
A double scalar containing the effective estimated standard error of a mean.

Remarks

In fixed effects models, stdError equals the estimated standard error of a mean. For example, in a one-way model {\rm {stdError}} = \sqrt {s^2 / n} where s^2 is the estimate of \sigma^2 and n is the number of responses in a sample mean. In models with random components, use {\rm {stdError}} = {\rm {sedif}} / \sqrt {2} where sedif is the estimated standard error of the difference of two means.

See Also