ANCOVAGetCoefficientTable Method |
Returns a matrix of size ncov + 1 by 4 containing statistics
for a linear regression model fitted separately for each of the
ngroup treatment groups.
Namespace: Imsl.StatAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public double[][] GetCoefficientTable(
int group
)
Public Function GetCoefficientTable (
group As Integer
) As Double()()
public:
array<array<double>^>^ GetCoefficientTable(
int group
)
member GetCoefficientTable :
group : int -> float[][]
Parameters
- group
- Type: SystemInt32
An int specifying the group for which the regression
statistics will be retrieved.
Return Value
Type:
Double
A
double matrix containing statistics for a
group.
Each row corresponds to the model coefficients. For row = 0, the
statistics relate to the intercept in the regression model. For
row = 1, 2, ...,
ncov, the statistics relate to the slopes
for the covariates. The column dimension corresponds to the row
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