ANCOVAGetModelCoefficients Method |
Returns a matrix containing statistics for the regression
coefficients for the model assuming parallelism.
Namespace: Imsl.StatAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public double[][] GetModelCoefficients()
Public Function GetModelCoefficients As Double()()
public:
array<array<double>^>^ GetModelCoefficients()
member GetModelCoefficients : unit -> float[][]
Return Value
Type:
Double
A
double matrix of size
ngroup +
ncov by 4
containing statistics for the regression coefficients for the model
assuming parallelism. Each row corresponds to a coefficient in the
model. For
i = 0, 1, ...,
ngroup - 1, row
i is
for the y intercept for the
i-th group. The remaining
ncov rows are for the covariate coefficients. The statistics
in the columns are organized as follows:
Column | Description |
---|
0 | Coefficient estimate. |
1 | Estimated standard error of the estimate. |
2 | t-statistic. |
3 | p-value. |
See Also