Click or drag to resize

OneWayAnova Class

Class OneWayAnova computes and summarizes a traditional one-way (single factor) Analysis of Variance (ANOVA).
Inheritance Hierarchy
SystemObject
  CenterSpace.NMath.CoreOneWayAnova

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
[SerializableAttribute]
public class OneWayAnova : ICloneable

The OneWayAnova type exposes the following members.

Constructors
 NameDescription
Public methodOneWayAnova Default constructor. Constructs an empty one-way OneWayAnova instance.
Public methodOneWayAnova(DoubleMatrix) Constructs a OneWayAnova instance from data in the given matrix.
Public methodOneWayAnova(DoubleVector) Constructs a OneWayAnova instance from data in the given array of vectors.
Public methodOneWayAnova(DataFrame, Int32, Int32) Construct a OneWayAnova instance from data in the given data frame.
Public methodOneWayAnova(DoubleVector, DoubleVector, Int32) Constructs a OneWayAnova object from summarized data.
Top
Properties
 NameDescription
Public propertyAnovaTable Gets a traditional ANOVA table.
Public propertyGrandMean Gets the grand mean of the data.
Public propertyGroupMeans Gets a vector of group means.
Public propertyGroupNames Gets an array of group names.
Public propertyGroupSizes Gets an array of group sizes.
Top
Methods
 NameDescription
Public methodClone Creates a deep copy of this OneWayAnova.
Public methodFStatisticCriticalValue Computes the critical value for the ANOVA F statistic at the given significance level.
Public methodGetGroupMean(Int32) Returns the mean for the specified group.
Public methodGetGroupMean(Object) Returns the mean for the specified group.
Public methodGetGroupSize(Int32) Returns the size of the specified group.
Public methodGetGroupSize(Object) Returns the size of the specified group.
Public methodSetData(DoubleMatrix) Performs a one way ANOVA from data in the given matrix.
Public methodSetData(DoubleVector) Performs a one-way ANOVA from data in the given array of vectors.
Public methodSetData(DataFrame, Int32, Int32) Performs a one way ANOVA from data in the given data frame.
Public methodToString String representation of a traditional one way ANOVA table.
(Overrides ObjectToString)
Top
See Also