Package org.drip.regression.core
Interface UnitRegressor
- All Known Implementing Classes:
BasisSplineRegressor
,HermiteBasisSplineRegressor
,LagrangePolynomialStretchRegressor
,LocalControlBasisSplineRegressor
,UnitRegressionExecutor
public interface UnitRegressor
UnitRegressor provides the stub functionality for the Individual Regressors. Its derived classes
implement the actual regression run. Individual regressors are named.
- Module = Computational Core Module
- Library = Computation Support
- Project = Regression Engine Core and the Unit Regressors
- Package = Regression Engine Core - Unit Regressors
- Author:
- Lakshmi Krishnamurthy
-
Method Summary
Modifier and Type Method Description java.lang.String
getName()
Regressor NameRegressionRunOutput
regress()
This method performs the feature by feature regression for the given object.
-
Method Details
-
regress
RegressionRunOutput regress()This method performs the feature by feature regression for the given object.- Returns:
- The calculated Regression Output Object.
-
getName
java.lang.String getName()Regressor Name- Returns:
- Name of the regressor
-