Example usage for org.apache.commons.math.stat.descriptive DescriptiveStatistics subclass-usage

List of usage examples for org.apache.commons.math.stat.descriptive DescriptiveStatistics subclass-usage

Introduction

In this page you can find the example usage for org.apache.commons.math.stat.descriptive DescriptiveStatistics subclass-usage.

Usage

From source file qmul.util.ApacheStatistics.java

/**
 * A wrapper for the Apache {@link DescriptiveStatistics} class with convenience constructors/methods
 * 
 * @author mpurver
 */
public class ApacheStatistics extends DescriptiveStatistics {

From source file gov.redhawk.statistics.ui.internal.Stats.java

public class Stats extends DescriptiveStatistics {
    /**
     * 
     */
    private static final long serialVersionUID = 9047657894722901933L;
    public static final String MINIMUM = "Min", MAXIMUM = "Max", MEDIAN = "Median", MEAN = "Mean",

From source file com.ning.metrics.collector.util.SynchronizedTimeWindowStatistics.java

/**
 * This class wraps DescriptiveStatistics to provide a time window rather
 * than a number-of-samples window.  It does so by overriding the methods
 * that access data to ensure that samples older than the time window are
 * first discarded.  This class contains an auxiliary queue of millisecond
 * times to find old samples.  It also overrides the  methods overriden by

From source file playground.johannes.sna.math.DescriptivePiStatistics.java

/**
 * Descriptive statistics object where each sample has a pi-value assigned.
 * 
 * @author illenberger
 * 
 */

From source file org.matsim.contrib.common.stats.DescriptivePiStatistics.java

/**
 * Descriptive statistics object where each sample has a pi-value (1/weight) assigned.
 * 
 * @author illenberger
 * 
 */