Dew Stats Master .NET
TMtxAnova.FmtString Property
Summary
Numeric format for ANOVA table cells.

Class
TMtxAnova

Declaration
Property FmtString: String read FFmtString write SetFmtString;
Description
Defines the number format used for all TMtxANOVA floating-point values.

Example 1

In the following example we do two-way ANOVA with two rows per group and set default format for numbers to '0.000000' i.e. 6 digits.

MtxANOVA1.Data.SetIt(4,4,false,[1,2,3,4, 3,4,5,6, 1,5,11,13, 4,7,9,10]); MtxANOVA1.FmtString := '0.000000'; // <-- 6 digits MtxANOVA1.IsAnova1 := false; do two-way ANOVA MtxANOVA1.Replications := 2; two rows per "group" MtxANOVA1.ResultDest := StringGrid1; MtxANOVA1.Recalc;
MtxANOVA1->Data->SetIt(4,4,false,OPENARRAY(TSample,(1,2,3,4, 3,4,5,6, 1,5,11,13, 4,7,9,10))); MtxANOVA1->FmtString = "0.000000"; // <-- 6 digits MtxANOVA1->IsAnova1 = false; do two-way ANOVA MtxANOVA1->Replications = 2; two rows per "group" MtxANOVA1->ResultDest = StringGrid1; MtxANOVA1->Recalc();


Copyright 2008 Dew Research
http://www.dewresearch.com