Class OneWayAnovaTable summarizes the information of a traditional one-way Analysis of Variance (ANOVA) table.

Namespace:  CenterSpace.NMath.Stats
Assembly:  NMathStats (in NMathStats.dll) Version: 3.4.0.0

Syntax

C#
[SerializableAttribute]
public class OneWayAnovaTable : DataFrame, 
	ICloneable
Visual Basic (Declaration)
<SerializableAttribute> _
Public Class OneWayAnovaTable _
	Inherits DataFrame _
	Implements ICloneable
Visual C++
[SerializableAttribute]
public ref class OneWayAnovaTable : public DataFrame, 
	ICloneable

Remarks

A one-way ANOVA table contains 3 rows and 5 columns. The rows contain information for each of the following sources: between-groups, within-groups, and total. The columns contain the following quantities for each source: degrees of freedom, sum of squares, mean square, F statistic and p-value (only for between-groups).
Instances of OneWayAnovaTable are obtained from a OneWayAnova object using the AnovaTable property, and cannot be constructed independently.

Inheritance Hierarchy

System..::.Object
  CenterSpace.NMath.Stats..::.DataFrame
    CenterSpace.NMath.Stats..::.OneWayAnovaTable

See Also