IVarianceAnalysisSumSquared.BetweenGroup

Syntax

BetweenGroup: Double;

Description

The BetweenGroup property returns the sum of squared deviations between groups.

Example

Sub Main;

Var

VA: ISmVarianceAnalysis;

res: Integer;

m: Array Of Double;

SS: IVarianceAnalysisSumSquared;

Begin

VA := New SmVarianceAnalysis.Create;

m := New Double[5, 3];

m[0, 0] := 1; m[0, 1] := 4; m[0, 2] := 1;

m[1, 0] := 2; m[1, 1] := 3; m[1, 2] := 2;

m[2, 0] := 3; m[2, 1] := 3; m[2, 2] := 1;

m[3, 0] := 4; m[3, 1] := 1; m[3, 2] := 2;

m[4, 0] := 5; m[4, 1] := 1; m[4, 2] := 1;

VA.Data := m;

VA.AnalysisType := VarianceAnalysisType.SingleFactor; //univariate analysis

VA.ConfidenceLevel := 0.05;

res := VA.Execute;

If res <> 0 Then

Debug.WriteLine(VA.Errors);

Else

Debug.WriteLine("Sum of deviation squares");

SS := VA.SumSquared;

Debug.WriteLine("between groups: " + SS.BetweenGroup.ToString);

Debug.WriteLine("within groups: " + SS.WithinGroup.ToString);

Debug.WriteLine("total: " + SS.Total.ToString);

End If;

End Sub Main;

Executing the example displays the results of the variance analysis in the console window:

Module execution started

Sum of deviation squares

between groups: 6.5333333333333341

within groups: 18.399999999999991

total: 24.933333333333326

Module execution finished

See also:

IVarianceAnalysisSumSquared