C# Class Accord.Statistics.Testing.AnovaVariationSource

Show file Open project: accord-net/framework Class Usage Examples

Private Properties

Property Type Description

Public Methods

Method Description
AnovaVariationSource ( IAnova anova, string source ) : System

Creates a new object representation of a variation source in an ANOVA experiment.

AnovaVariationSource ( IAnova anova, string source, double sumOfSquares, int degreesOfFreedom ) : System

Creates a new object representation of a variation source in an ANOVA experiment.

AnovaVariationSource ( IAnova anova, string source, double sumOfSquares, int degreesOfFreedom, Accord.Statistics.Testing.FTest test ) : System

Creates a new object representation of a variation source in an ANOVA experiment.

AnovaVariationSource ( IAnova anova, string source, double sumOfSquares, int degreesOfFreedom, double meanSquares ) : System

Creates a new object representation of a variation source in an ANOVA experiment.

AnovaVariationSource ( IAnova anova, string source, double sumOfSquares, int degreesOfFreedom, double meanSquares, Accord.Statistics.Testing.FTest test ) : System

Creates a new object representation of a variation source in an ANOVA experiment.

Method Details

AnovaVariationSource() public method

Creates a new object representation of a variation source in an ANOVA experiment.
public AnovaVariationSource ( IAnova anova, string source ) : System
anova IAnova The associated ANOVA analysis.
source string The name of the variation source.
return System

AnovaVariationSource() public method

Creates a new object representation of a variation source in an ANOVA experiment.
public AnovaVariationSource ( IAnova anova, string source, double sumOfSquares, int degreesOfFreedom ) : System
anova IAnova The associated ANOVA analysis.
source string The name of the variation source.
sumOfSquares double The sum of squares of the source.
degreesOfFreedom int The degrees of freedom for the source.
return System

AnovaVariationSource() public method

Creates a new object representation of a variation source in an ANOVA experiment.
public AnovaVariationSource ( IAnova anova, string source, double sumOfSquares, int degreesOfFreedom, Accord.Statistics.Testing.FTest test ) : System
anova IAnova The associated ANOVA analysis.
source string The name of the variation source.
sumOfSquares double The sum of squares of the source.
degreesOfFreedom int The degrees of freedom for the source.
test Accord.Statistics.Testing.FTest The F-Test containing the F-Statistic for the source.
return System

AnovaVariationSource() public method

Creates a new object representation of a variation source in an ANOVA experiment.
public AnovaVariationSource ( IAnova anova, string source, double sumOfSquares, int degreesOfFreedom, double meanSquares ) : System
anova IAnova The associated ANOVA analysis.
source string The name of the variation source.
sumOfSquares double The sum of squares of the source.
degreesOfFreedom int The degrees of freedom for the source.
meanSquares double The mean sum of squares of the source.
return System

AnovaVariationSource() public method

Creates a new object representation of a variation source in an ANOVA experiment.
public AnovaVariationSource ( IAnova anova, string source, double sumOfSquares, int degreesOfFreedom, double meanSquares, Accord.Statistics.Testing.FTest test ) : System
anova IAnova The associated ANOVA analysis.
source string The name of the variation source.
sumOfSquares double The sum of squares of the source.
degreesOfFreedom int The degrees of freedom for the source.
meanSquares double The mean sum of squares of the source.
test Accord.Statistics.Testing.FTest The F-Test containing the F-Statistic for the source.
return System