LinearRegression.GetCaseStatistics Method (Double[], Double) |
Returns the case statistics for an observation.
Namespace: Imsl.StatAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public virtual LinearRegression. CaseStatistics GetCaseStatistics(
double[] x,
double y
)
Public Overridable Function GetCaseStatistics (
x As Double(),
y As Double
) As LinearRegression.CaseStatistics
public:
virtual LinearRegression. CaseStatistics^ GetCaseStatistics(
array<double>^ x,
double y
)
abstract GetCaseStatistics :
x : float[] *
y : float -> LinearRegression. CaseStatistics
override GetCaseStatistics :
x : float[] *
y : float -> LinearRegression. CaseStatistics
Parameters
- x
- Type: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
Type:
LinearRegression.CaseStatistics
The
CaseStatistics for the observation.
See Also