LinearRegressionGetCaseStatistics Method (Double, Double, Double) |
Returns the case statistics for an observation and a weight.
Namespace: Imsl.StatAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public virtual LinearRegressionCaseStatistics GetCaseStatistics(
double[] x,
double y,
double w
)
Public Overridable Function GetCaseStatistics (
x As Double(),
y As Double,
w As Double
) As LinearRegressionCaseStatistics
public:
virtual LinearRegressionCaseStatistics^ GetCaseStatistics(
array<double>^ x,
double y,
double w
)
abstract GetCaseStatistics :
x : float[] *
y : float *
w : float -> LinearRegressionCaseStatistics
override GetCaseStatistics :
x : float[] *
y : float *
w : float -> LinearRegressionCaseStatistics
Parameters
- x
- Type: SystemDouble
A double array containing the independent (explanatory)
variables. Its length must be equal to the number of variables set in
the constructor.
- y
- Type: SystemDouble
A double representing the dependent (response) variable.
- w
- Type: SystemDouble
A double representing the weight.
Return Value
Type:
LinearRegressionCaseStatistics
The
CaseStatistics for the observation.
See Also