Examples of ObservationAndMeanPlotModel


Examples of org.aavso.tools.vstar.ui.model.plot.ObservationAndMeanPlotModel

  /**
   * Shows the band names in the current dataset.
   */
  public synchronized void showBands() {
    ObservationAndMeanPlotModel model = analysisTypeMsg
        .getObsAndMeanChartPane().getObsModel();

    String[] names = new String[model.getSeriesCount()];

    int i = 0;
    for (SeriesType type : model.getSeriesKeys()) {
      names[i++] = type.getShortName();
      System.out.println(type.getShortName());
    }
  }
View Full Code Here

Examples of org.aavso.tools.vstar.ui.model.plot.ObservationAndMeanPlotModel

    Mediator mediator = Mediator.getInstance();

    if (!mediator.getNewStarMessageList().isEmpty()) {
      AnalysisType type = mediator.getAnalysisType();

      ObservationAndMeanPlotModel model = mediator
          .getObservationPlotModel(type);

      BinningResult binningResult = model.getBinningResult();

      String msg = binningResult.createAnovaText();
     
      List<ITextComponent<String>> fields = new ArrayList<ITextComponent<String>>();
      fields.add(new TextField("ANOVA", msg, TextField.Kind.AREA));
View Full Code Here

Examples of org.aavso.tools.vstar.ui.model.plot.ObservationAndMeanPlotModel

    StarInfo starInfo = Mediator.getInstance().getLatestNewStarMessage()
        .getStarInfo();
    period = starInfo.getPeriod();

    // Request the series to be used.
    ObservationAndMeanPlotModel model = Mediator.getInstance()
        .getObservationPlotModel(AnalysisType.RAW_DATA);

    SingleSeriesSelectionDialog seriesDlg = new SingleSeriesSelectionDialog(
        model);
View Full Code Here

Examples of org.aavso.tools.vstar.ui.model.plot.ObservationAndMeanPlotModel

      // Observation table and plot.
      validObsTableModel = new ValidObservationTableModel(validObsList,
          newStarType.getRawDataTableColumnInfoSource());

      // Observation-and-mean table and plot.
      obsAndMeanPlotModel = new ObservationAndMeanPlotModel(
          validObservationCategoryMap, JDCoordSource.instance,
          JDComparator.instance, JDTimeElementEntity.instance, null);

      // Record initial ANOVA information and make the document manager
      // listen to changes to ANOVA via new binning results.
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.