Returns the case statistics for an observation.

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

Syntax

C#
public virtual LinearRegression..::.CaseStatistics GetCaseStatistics(
	double[] x,
	double y
)
Visual Basic (Declaration)
Public Overridable Function GetCaseStatistics ( _
	x As Double(), _
	y As Double _
) As LinearRegression..::.CaseStatistics
Visual C++
public:
virtual LinearRegression..::.CaseStatistics^ GetCaseStatistics(
	array<double>^ x, 
	double y
)

Parameters

x
Type: array< System..::.Double >[]()[]
A double array containing the independent (explanatory) variables. Its length must be equal to the number of variables set in the LinearRegression constructor.
y
Type: System..::.Double
A double representing the dependent (response) variable.

Return Value

The CaseStatistics for the observation.

See Also