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