The case analysis.

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

Syntax

C#
public virtual double[,] CaseAnalysis { get; }
Visual Basic (Declaration)
Public Overridable ReadOnly Property CaseAnalysis As Double(,)
Visual C++
public:
virtual property array<double,2>^ CaseAnalysis {
	array<double,2>^ get ();
}

Field Value

A double matrix containing the case analysis or null if Solve()()() has not been called.

Remarks

The matrix is nobs\times{5} where nobs is the number of observations. The matrix contains:

Column Statistic
0 Prediction.
1 The residual.
2 The estimated standard error of the residual.
3 The estimated influence of the observation.
4 The standardized residual.

Case studies are computed for all observations except where missing values prevent their computation. The prediction in column 0 depends upon the model used as follows:

Model Prediction
0 The predicted mean for the observation.
1-4 The probability of a success on a single trial.

See Also