Examples of forecast()


Examples of weka.classifiers.timeseries.WekaForecaster.forecast()

        forecaster.getTSLagMaker().setAddQuarterOfYear(true);
        forecaster.buildForecaster(wine);
        forecaster.primeForecaster(wine);

        // training data
        List<List<NumericPrediction>> forecast = forecaster.forecast(presize);

       Date startdate=fmt.parse(maxThedate);
       String[] numfieldsarr=numberfield.toString().split(",");
        for (int i = 0; i < presize; i++) {
          List<NumericPrediction> predsAtStep = forecast.get(i);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.