Example usage for org.apache.commons.math3.stat.descriptive.moment GeometricMean GeometricMean

List of usage examples for org.apache.commons.math3.stat.descriptive.moment GeometricMean GeometricMean

Introduction

In this page you can find the example usage for org.apache.commons.math3.stat.descriptive.moment GeometricMean GeometricMean.

Prototype

public GeometricMean(SumOfLogs sumOfLogs) 

Source Link

Document

Create a GeometricMean instance using the given SumOfLogs instance

Usage

From source file:org.apereo.portal.events.aggr.stat.JpaStatisticalSummary.java

private GeometricMean _getGeoMean() {
    if (this.geoMean == null) {
        this.geoMean = new GeometricMean(this._getSumLog());
    }// w  ww .  ja  va2 s.c om
    return this.geoMean;
}