Uses of Class
org.pepstock.charba.client.ml.RegressionScore
-
Packages that use RegressionScore Package Description org.pepstock.charba.client.ml Contains all classes to activate the ML library to use the regression capabilities. -
-
Uses of RegressionScore in org.pepstock.charba.client.ml
Methods in org.pepstock.charba.client.ml that return RegressionScore Modifier and Type Method Description RegressionScoreIsRegression. score(List<Double> y)Evaluates the regression formula if the model fits enough.
X values are creating starting from 0 with increment of 1.RegressionScoreIsRegression. score(List<Double> y, double starting)Evaluates the regression formula if the model fits enough.
X values are creating starting from passed argument with increment of 1.RegressionScoreIsRegression. score(List<Double> y, double starting, double increment)Evaluates the regression formula if the model fits enough.
X values are creating starting from passed argument with increment of passed argument.RegressionScoreIsRegression. score(List<Double> x, List<Double> y)Evaluates the regression formula if the model fits enough.RegressionScoreIsRegression. scoreByDataPoints(List<DataPoint> dataPoints)Evaluates the regression formula if the model fits enough.RegressionScoreIsRegression. scoreByDate(List<Date> x, List<Double> y)Evaluates the regression formula if the model fits enough.RegressionScoreIsRegression. scoreByTimeSeriesItems(List<TimeSeriesItem> items)Evaluates the regression formula if the model fits enough.
-