Project

General

Profile

« Previous | Next » 

Revision eb71aa23

Added by Patrick Plitzner almost 6 years ago

ref #7549 Add quant statistic map to character matrix

View differences:

eu.etaxonomy.taxeditor.editor/src/main/java/eu/etaxonomy/taxeditor/editor/descriptiveDataSet/matrix/CharacterMatrix.java
20 20
import java.util.stream.Collectors;
21 21

  
22 22
import org.apache.commons.collections4.map.LinkedMap;
23
import org.apache.commons.math3.stat.descriptive.DescriptiveStatistics;
23 24
import org.eclipse.core.runtime.ICoreRunnable;
24 25
import org.eclipse.core.runtime.IProgressMonitor;
25 26
import org.eclipse.core.runtime.jobs.Job;
......
129 130

  
130 131
    private Map<Feature, CategoricalDataHistogram> featureToHistogramMap = new HashMap<>();
131 132

  
133
    private Map<Feature, DescriptiveStatistics> featureToQuantStatisticsMap = new HashMap<>();
134

  
132 135
    private ListDataProvider<Object> bodyDataProvider;
133 136

  
134 137
    private FreezeLayer freezeLayer;
......
601 604
        return featureToHistogramMap;
602 605
    }
603 606

  
607
    public Map<Feature, DescriptiveStatistics> getFeatureToQuantStatisticsMap() {
608
        return featureToQuantStatisticsMap;
609
    }
610

  
604 611
    public void toogleIsShowTooltips() {
605 612
        this.isShowTooltips = !this.isShowTooltips;
606 613
    }

Also available in: Unified diff