com.github.lwhite1.tablesaw.reducing.functions.GeometricMean Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tablesaw Show documentation
Show all versions of tablesaw Show documentation
High-performance Java Dataframe with integrated columnar storage
package com.github.lwhite1.tablesaw.reducing.functions;
import com.github.lwhite1.tablesaw.api.Table;
import com.github.lwhite1.tablesaw.reducing.NumericReduceFunction;
import static com.github.lwhite1.tablesaw.reducing.NumericReduceUtils.geometricMean;
/**
*
*/
public class GeometricMean extends SummaryFunction {
public GeometricMean(Table original, String summarizedColumnName) {
super(original, summarizedColumnName);
}
@Override
public NumericReduceFunction function() {
return geometricMean;
}
}