![JAR search and dependency download from the Maven repository](/logo.png)
com.github.lwhite1.tablesaw.reducing.functions.Sum Maven / Gradle / Ivy
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.sum;
/**
*
*/
public class Sum extends SummaryFunction {
public Sum(Table original, String summarizedColumnName) {
super(original, summarizedColumnName);
}
@Override
public NumericReduceFunction function() {
return sum;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy