You are here: Symbol Reference > Dew Namespace > Dew.Stats Namespace > Structs, Records, Enums > Dew.Stats.TANOVA1Result Structure
Dew Stats for .NET
ContentsIndexHome
PreviousUpNext
Dew.Stats.TANOVA1Result Structure

Defines one-way ANOVA statistics parameters.

Syntax
C#
Visual Basic
public struct TANOVA1Result { public double SS1; public double SS2; public double SSTotal; public double Deg1; public double Deg2; public double DegTotal; public double MS1; public double MS2; public double FDist; public double FCrit; }

Regress.cs

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

ANOVA1

Copyright (c) 1999-2024 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!