package ca.joeltherrien.randomforest; import ca.joeltherrien.randomforest.covariates.Covariate; import java.util.Map; public class Row extends CovariateRow { private final Y response; public Row(Map valueMap, int id, Y response){ super(valueMap, id); this.response = response; } public Y getResponse() { return this.response; } @Override public String toString() { return "Row " + this.getId(); } }