Returns a matrix containing the unadjusted means for the covariates and the response variate and the means for the response variate adjusted for the covariates.

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

Syntax

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

Return Value

A double matrix of size ngroup + 1 by ncov + 3 containing the unadjusted means for the covariates and the response variate and the means for the response variate adjusted for the covariates. Each row for i = 0, 1, ..., ngroup - 1 corresponds to a group. Row ngroup contains overall statistics. The means are organized in columns as follows:

ColumnDescription
0Number of non-missing cases
1 thru ncovCovariate means.
ncov + 1Response mean.
ncov + 2Response mean adjusted assuming parallelism.

See Also