![]() | Two |
The TwoWayAnova type exposes the following members.
Name | Description | |
---|---|---|
![]() | TwoWayAnova | No argument contructor. Used primarily for serialization. |
![]() | TwoWayAnova(DataFrame, Int32, Int32, Int32) | Constructs a TwoWayAnova instance from data in the given data frame. |
Name | Description | |
---|---|---|
![]() | AnovaTable | Gets a traditional two-way ANOVA table. |
![]() | GrandMean |
Gets the grand mean.
(Overrides TwoWayAnovaBaseGrandMean) |
![]() | RegressionFactorParameters | Gets the array of estimates for the linear regression parameters corresponding to the dummy variables for the different factor levels. |
![]() | RegressionInteractionParameters | Gets the array of estimates for the linear regression parameters corresponding to the dummy variables for the interactions. |
![]() | RegressionInterceptParameter |
Gets the intercept parameter from the linear regression that was used to
compute the ANOVA.
(Overrides TwoWayAnovaBaseRegressionInterceptParameter) |
Name | Description | |
---|---|---|
![]() | Clone | Creates a deep copy of this TwoWayAnova. |
![]() | ComputeAnova | Compute the ANOVA for the given data. |
![]() | ComputeFactorSumsOfSquares | Fill in the DoubleVector parameterSumsOfSquares_ with the sums of squares for the parameters used in the regression that is used to compute the ANOVA. |
![]() | ComputeFactorSumsOfSquares(DoubleMatrix) |
Fill in the DoubleVector parameterSumsOfSquares_ with the sums of
squares for the parameters used in the regression that is used to
compute the ANOVA.
(Inherited from TwoWayAnovaBase) |
![]() | ComputeFactorSumsOfSquares(LinearRegression, Int32, Int32, Int32) |
Fill in the DoubleVector parameterSumsOfSquares_ with the sums of
squares for the parameters used in the regression that is used to
compute the ANOVA.
(Inherited from TwoWayAnovaBase) |
![]() | CreateAnovaTable | Create the ANOVA table for this object. |
![]() | FillInRegressionMatrix | Fill in the regression matrix that is to be used for computing the ANOVA. |
![]() | GetCellData |
Returns all the data in a cell, as defined by the levels of the two factors
in the ANOVA.
(Inherited from TwoWayAnovaBase) |
![]() | GetMeanForCell |
Returns the mean for the specified cell, as defined by the levels of
the two factors in the ANOVA.
(Inherited from TwoWayAnovaBase) |
![]() | GetMeanForFactorLevel |
Returns the mean for the specified factor level.
(Inherited from TwoWayAnovaBase) |
![]() | GetRegressionFactorParameter | Returns the regression parameter associated with the specified factor level. |
![]() | GetRegressionFactorParameters | Fills in the array of AnovaRegressionFactorParam objects. |
![]() | GetRegressionInteractionParameter | Returns the regression parameter associated with the specified interaction. |
![]() | GetRegressionInteractionParameters | Fill in the array of AnovaRegressionInteractionParam objects. |
![]() | InterceptParameterSumOfSquares |
Compte the sum of squares associated with the regression's intercept parameter.
(Inherited from TwoWayAnovaBase) |
![]() | MakeCellData |
Fills in the cell data for a two way ANOVA from the given data frame and
column information.
(Inherited from TwoWayAnovaBase) |
![]() | MakeFactorParameters(Int32) | Create the array of AnovaRegressionFactorParam objects, one for each regression dummy variable. The sums of squares for each of these parameters is assumed to have been computed are are stored in the DoubleVector instance variable parameterSumsOfSquares with the parameters for factor A first, followed by the parameters for factor B and starting at the given index. |
![]() | MakeFactorParameters(LinearRegression, DoubleVector, Int32, Factor) |
Create the array of AnovaRegressionFactorParam objects, one for each
regression dummy variable. The sums of squares for each of these
parameters is assumed to have been computed are are stored in the
DoubleVector instance variable parameterSumsOfSquares with
the parameters for factor A first, followed by the parameters for
factor B and starting at the given index.
(Inherited from TwoWayAnovaBase) |
![]() | MakeInteractionParameters(Int32) | Creates the array of AnovaRegressionInteractionParam objects using the DoubleVector instance variable parameterSumsOfSquares_. The sums of squares for the interaction parameters are assumed to begin at the given index. |
![]() | MakeInteractionParameters(LinearRegression, DoubleVector, Int32) |
Creates the array of AnovaRegressionInteractionParam objects using the
DoubleVector instance variable parameterSumsOfSquares_. The sums of
squares for the interaction parameters are assumed to begin at the
given index.
(Inherited from TwoWayAnovaBase) |
![]() | ToString |
Returns a formatted string representation of a traditional two-way analysis
of variance table.
(Overrides ObjectToString) |
Name | Description | |
---|---|---|
![]() | anovaTable_ | A traditional ANOVA table representation of the results. |
![]() | cells_ |
The ANOVA data broken up into cells.
(Inherited from TwoWayAnovaBase) |
![]() | factorA_ |
One of the factors in the ANOVA
(Inherited from TwoWayAnovaBase) |
![]() | factorB_ |
The other factor in the ANOVA.
(Inherited from TwoWayAnovaBase) |
![]() | factorParameters_ | Stats for the regression parameters corresponding to the two factors. |
![]() | interactionParameters_ | Stats for the regression parameters corresponding to the interaction between the two factor. |
![]() | interceptParameter_ | Stats for the regression intercept parameter. |
![]() | lr_ | The linear regression used to compute the ANOVA |
![]() | lrAnova_ | The ANOVA for the linear regression. |
![]() | observations_ |
The observation vector for the regression used to compute the ANVOA.
(Inherited from TwoWayAnovaBase) |
![]() | parameterSumsOfSquares_ | The sums of squares for all the parameters in the regression. These are in the same order as the regression parameters. |
![]() | regressionMatrix_ | The regression matrix used to compute the ANOVA. |