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