Stats Master VCL
|
Outputs results to string list.
procedure WriteResultToStrings(DestStrings: TStrings; Delimiter: string = kTab);
Outputs standard ANOVA table to DestStrings. ANOVA table columns are separated by Delimiter (default value kTab - meaning tab char is the delimiter).
In this example we write ANOVA table to Memo1.
MtxANOVA1.Data.SetIt(6,2,false,[1,2, 2,3, 5,7, 12,1, 5,8, 3,8]); MtxANOVA1.FmtString := '0.00'; // 2 digits MtxANOVA1.IsAnova1 := true; // do one-way ANOVA MtxANOVA1.Recalc; Memo1.Lines.Clear; MtxANOVA1.WriteResultToStrings(Memo1.Lines);
Copyright (c) 1999-2025 by Dew Research. All rights reserved.
|
What do you think about this topic? Send feedback!
|