You are here: Symbol Reference > Regress Namespace > Structs, Records, Enums > Regress.TANOVA2Result Record
Stats Master VCL
ContentsIndex
PreviousUpNext
Regress.TANOVA2Result Record

Defines two-way ANOVA (with or without replications) statistics parameters.

Pascal
TANOVA2Result = packed record
  SS1: double;
  SS2: double;
  SS3: double;
  SS4: double;
  SSTotal: double;
  Deg1: double;
  Deg2: double;
  Deg3: double;
  Deg4: double;
  DegTotal: double;
  MS1: double;
  MS2: double;
  MS3: double;
  MS4: double;
  FCrit1: double;
  FCrit2: double;
  FCrit3: double;
  FDist1: double;
  FDist2: double;
  FDist3: double;
end;

This structured type describes the ANOVA2 routine statistical parameters:

  • SS1 Sum of squares (source of variation rows)
  • SS2 Sum of squares (source of variation columns)
  • SS3 Sum of squares (source of variation interactions between rows and columns). The SS3 term is only valid for two-way ANOVA with replications.
  • SS4 Sum of squares (source of variation errors)
  • SSTotal Sum of squares (total)
  • Deg1 Degrees of freedom (rows)
  • Deg2 Degrees of freedom (columns)
  • Deg3 Degrees of freedom (interactions). The Deg3 term is only valid for two-way ANOVA with replications.
  • Deg4 Degrees of freedom (errors)
  • DegTotal Degrees of freedom (total)
  • MS1 Mean squares (rows)
  • MS2 Mean squares (columns)
  • MS3 Mean squares (interactions). The MS3 term is only valid for two-way ANOVA with replications.
  • MS4 Mean squares (errors)
  • FDist1 F statistics (the ratio of MS)
  • FDist2 F statistics (the ratio of MS)
  • FDist3 F statistics (the ratio of MS). The MS3 term is only valid for two-way ANOVA with replications.
  • FCrit1 Critical F value
  • FCrit2 Critical F value
  • FCrit3 Critical F value. The MS3 term is only valid if yor're performing two-way ANOVA with replications.
Copyright (c) 1999-2024 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!