ANCOVAGetCoefficientTables Method |
Returns an array containing statistics for a linear regression
model fitted separately for all ngroup treatments.
Namespace: Imsl.StatAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public double[][][] GetCoefficientTables()
Public Function GetCoefficientTables As Double()()()
public:
array<array<array<double>^>^>^ GetCoefficientTables()
member GetCoefficientTables : unit -> float[][][]
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:
Column | Description |
---|
0 | Coefficient estimate. |
1 | Estimated standard error of the estimate. |
2 | t-statistic. |
3 | p-value. |
See Also