Package weka.classifiers.timeseries.core

Examples of weka.classifiers.timeseries.core.ErrorBasedConfidenceIntervalEstimator


        p.println("Computing confidence intervals...");
      }
      // -1 indicates not using an artificial time index
      int artificialTimeStart = (m_lagMaker.isUsingAnArtificialTimeIndex()) ? 1
          : -1;
      ErrorBasedConfidenceIntervalEstimator e = new ErrorBasedConfidenceIntervalEstimator();
      e.calculateConfidenceOffsets(this, insts, m_lagMaker.getMaxLag(),
          artificialTimeStart, m_calculateConfLimitsSteps, m_confidenceLevel,
          progress);
      m_confidenceLimitEstimator = e;
    }
    // System.out.println(trainingData);
View Full Code Here

TOP

Related Classes of weka.classifiers.timeseries.core.ErrorBasedConfidenceIntervalEstimator

Copyright © 2018 www.massapicom. 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.