Class AnovaResult
Result of Anova test is stored in this class. If AnovaResult.FRatio is farther from unity than FCritical value, then the null hypothesis (that all means are equal) fails.
Inheritance
Inherited Members
Namespace: Syncfusion.Windows.Forms.Chart.Statistics
Assembly: Syncfusion.Chart.Base.dll
Syntax
public class AnovaResult
Constructors
AnovaResult()
Initializes a new instance of the AnovaResult class.
Declaration
public AnovaResult()
Properties
DegreeOfFreedomBetweenGroups
Gets degrees of freedom between groups. This is simply a - 1, where a is number of series in anova test.
Declaration
public double DegreeOfFreedomBetweenGroups { get; }
Property Value
Type | Description |
---|---|
System.Double | The degree of freedom between groups. |
DegreeOfFreedomTotal
Gets total degrees of freedom. This is simply n*a - 1, where a is number of series in anova test, and n is number of points in series.
Declaration
public double DegreeOfFreedomTotal { get; }
Property Value
Type | Description |
---|---|
System.Double | The degree of freedom total. |
DegreeOfFreedomWithinGroups
Gets degrees of freedom within groups ( returns a*(n - 1) ).
Declaration
public double DegreeOfFreedomWithinGroups { get; }
Property Value
Type | Description |
---|---|
System.Double | The degree of freedom within groups. |
FCriticalValue
Gets critical value of FRatio which corresponds to specified confidence probability.
Declaration
public double FCriticalValue { get; }
Property Value
Type | Description |
---|---|
System.Double | The F critical value. |
FRatio
Gets FRatio ( ratio of between group variance and within group variance). This ratio should be compared with FCritical value, and if it is farther from unity than FCritical value, then the null hypothesis (that all means are equal) fails.
Declaration
public double FRatio { get; }
Property Value
Type | Description |
---|---|
System.Double | The F ratio. |
MeanSquareVarianceBetweenGroups
Gets mean square variance between groups.
Declaration
public double MeanSquareVarianceBetweenGroups { get; }
Property Value
Type | Description |
---|---|
System.Double | The mean square variance between groups. |
MeanSquareVarianceWithinGroups
Gets mean square variance within groups.
Declaration
public double MeanSquareVarianceWithinGroups { get; }
Property Value
Type | Description |
---|---|
System.Double | The mean square variance within groups. |
SumOfSquaresBetweenGroups
Gets sum of squares between groups.
Declaration
public double SumOfSquaresBetweenGroups { get; }
Property Value
Type | Description |
---|---|
System.Double | The sum of squares between groups. |
SumOfSquaresTotal
Gets total sum of squares.
Declaration
public double SumOfSquaresTotal { get; }
Property Value
Type | Description |
---|---|
System.Double | The sum of squares total. |
SumOfSquaresWithinGroups
Gets sum of squares within groups.
Declaration
public double SumOfSquaresWithinGroups { get; }
Property Value
Type | Description |
---|---|
System.Double | The sum of squares within groups. |