Returns a matrix containing statistics for the regression coefficients for the model assuming parallelism.

Namespace: Imsl.Stat
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public double[][] GetModelCoefficients()
Visual Basic (Declaration)
Public Function GetModelCoefficients As Double()()
Visual C++
public:
array<array<double>^>^ GetModelCoefficients()

Return Value

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:

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

See Also