/* ClassifySet set the class attribute based on tree classification. */ func (runtime *Runtime) ClassifySet(data tabula.ClasetInterface) (e error) { nrow := data.GetNRow() targetAttr := data.GetClassColumn() for i := 0; i < nrow; i++ { class := runtime.Classify(data.GetRow(i)) _ = (*targetAttr).Records[i].SetValue(class, tabula.TString) } return }