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.Stat
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public double[][] GetCoefficientTable(
	int group
)
Visual Basic (Declaration)
Public Function GetCoefficientTable ( _
	group As Integer _
) As Double()()
Visual C++
public:
array<array<double>^>^ GetCoefficientTable(
	int group
)

Parameters

group
Type: System..::.Int32
An int specifying the group for which the regression statistics will be retrieved.

Return Value

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:

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

See Also