com.github.lwhite1.tablesaw.reducing.functions.Mean 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.mean;
/**
*
*/
public class Mean extends SummaryFunction {
public Mean(Table original, String summarizedColumnName) {
super(original, summarizedColumnName);
}
@Override
public NumericReduceFunction function() {
return mean;
}
}