Click or drag to resize

TwoWayAnovaBaseMakeFactorParameters Method

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.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
protected AnovaRegressionFactorParam[] MakeFactorParameters(
	LinearRegression lr,
	DoubleVector parameterSumsOfSquares,
	int sumOfSquaresIndex,
	Factor factor
)

Parameters

lr  LinearRegression
The linear regression for the ANOVA.
parameterSumsOfSquares  DoubleVector
The sums of squares, one for each regression parameter, for the regression for the ANOVA.
sumOfSquaresIndex  Int32
Index of the starting point for the factor parameter sums of squares in the parameter parameterSumsOfSquares
factor  Factor
The ANOVA factor associated with this regression parameter.

Return Value

AnovaRegressionFactorParam
The array of AnovaRegressionFactorParam's
See Also