Example usage for org.apache.commons.math3.stat.descriptive.moment Mean getResult

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

Introduction

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

Prototype

@Override
public double getResult() 

Source Link

Usage

From source file:org.lenskit.eval.traintest.recommend.TopNLengthMetric.java

@Nonnull
@Override
public MetricResult getAggregateMeasurements(Mean context) {
    return new LengthResult(context.getResult());
}