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

Defines one-way ANOVA statistics parameters.

Pascal
TANOVA1Result = packed record
  SS1: double;
  SS2: double;
  SSTotal: double;
  Deg1: double;
  Deg2: double;
  DegTotal: double;
  MS1: double;
  MS2: double;
  FCrit: double;
  FDist: double;
end;

This structured type defines following ANOVA1 routine statistical parameters:

  • SS1 Sum of squares (source of variation between groups)
  • SS2 Sum of squares (source of variation within groups)
  • SSTotal Sum of squares (total)
  • Deg1 Degrees of freedom (source of variation between groups)
  • Deg2 Degrees of freedom (source of variation within groups)
  • DegTotal Degrees of freedom (total)
  • MS1 Mean squares (source of variation between groups), where MS1 = SS1/Deg1
  • MS2 Mean squares (source of variation within groups), where MS2 = SS2/Deg2
  • FDist F statistics (the ratio of MS1 and MS2)
  • FCrit Critical F value
Copyright (c) 1999-2025 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!