Click or drag to resize
ANCOVAGetCoefficientTables Method
Returns an array containing statistics for a linear regression model fitted separately for all ngroup treatments.

Namespace: Imsl.Stat
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
public double[][][] GetCoefficientTables()

Return Value

Type: Double
A double[][][] array containing statistics for a linear regression model fitted separately for each of the ngroup treatment groups. The 3 dimensional array organized with ngroup rows, ncov + 1 columns, and depth of 4. Each row corresponds to one of the ngroup treatment groups. Each column corresponds to the model coefficients. For column = 0, the statistics relate to the intercept in the regression model. For column = 1, 2, ..., ncov, the statistics relate to the slopes for the covariates. The depth dimension corresponds to the columns described for GetModelCoefficients as follows:

ColumnDescription
0Coefficient estimate.
1Estimated standard error of the estimate.
2t-statistic.
3p-value.

See Also