ANOVAFactorialGetTestEffects Method |
Returns statistics relating to the sums of squares for the effects in the
model. Note that the Compute method must be invoked first
before invoking this method. Otherwise, the method throws a
NullReferenceException exception.
Namespace: Imsl.StatAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public double[,] GetTestEffects()
Public Function GetTestEffects As Double(,)
public:
array<double,2>^ GetTestEffects()
member GetTestEffects : unit -> float[,]
Return Value
Type:
Double
A
double matrix containing statistics relating to the sums of
squares for the effects in the model.
Remarks
Here,
where n is given by nSubscripts if
ANOVAFactorial.ErrorCalculation.Pooled is specified;
otherwise, nSubscripts-1. Suppose the factors are A, B, C, and
error. With ModelOrder = 3, rows 0 through NEF-1 would
correspond to A, B, C, AB, AC, BC, and ABC, respectively.
The columns of the output matrix are as follows:
Column | Description |
---|
0 | Degrees of freedom |
1 | Sum of squares |
2 | F-statistic |
3 | p-value |
See Also