
com.github.lwhite1.tablesaw.mapping.SummaryFunction 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.mapping;
import com.github.lwhite1.tablesaw.api.Table;
/**
*
*/
public class SummaryFunction {
private final Table original;
private final String summarizedColumnName;
public SummaryFunction(Table original, String summarizedColumnName) {
this.original = original;
this.summarizedColumnName = summarizedColumnName;
}
protected String summarizedColumnName() {
return summarizedColumnName;
}
protected Table original() {
return original;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy