Package weka.classifiers.timeseries.gui

Examples of weka.classifiers.timeseries.gui.ForecastingPanel


   * Constructor
   */
  public TimeSeriesForecastingKFPerspective() {
    setLayout(new BorderLayout());

    m_forecastingPanel = new ForecastingPanel(null, false, false, true);
    add(m_forecastingPanel, BorderLayout.CENTER);
  }
View Full Code Here


   * Constructor
   */
  public ExplorerTSPanel() {
    setLayout(new BorderLayout());
   
    m_forecastingPanel = new ForecastingPanel(null, false, false, false);
    add(m_forecastingPanel, BorderLayout.CENTER);
  }
View Full Code Here

TOP

Related Classes of weka.classifiers.timeseries.gui.ForecastingPanel

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.