org.datavec.dataframe.mapping.SummaryFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datavec-dataframe Show documentation
Show all versions of datavec-dataframe Show documentation
High-performance Java Dataframe with integrated columnar storage (fork of tablesaw)
package org.datavec.dataframe.mapping;
import org.datavec.dataframe.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;
}
}