Package com.datarobot.prediction
Interface TimeSeriesPredictor
-
- All Superinterfaces:
Predictor
@Deprecated public interface TimeSeriesPredictor extends Predictor
Deprecated.Please useITimeSeriesRegressionPredictor
instead, this class is used for internal usage.Time Series Regression Predictor Interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description List<TimeSeriesScore<Double>>
score(ArrayList<Row> rows, TimeSeriesOptions parameters)
Deprecated.Generalized method for calculating predictions could be used for any type of predictions.-
Methods inherited from interface com.datarobot.prediction.Predictor
get_double_predictors, get_string_predictors, score
-
-
-
-
Method Detail
-
score
List<TimeSeriesScore<Double>> score(ArrayList<Row> rows, TimeSeriesOptions parameters)
Deprecated.Generalized method for calculating predictions could be used for any type of predictions.- Parameters:
rows
- - time series to use for calculate predictions.parameters
- - ts scoring options- Returns:
- predictions according to the options provided.
-
-