Пример #1
0
 public override IEnumerable <double> GetEstimatedValues(IDataset dataset, IEnumerable <int> rows)
 {
     if (RuleModel == null)
     {
         throw new NotSupportedException("The model has not been built correctly");
     }
     return(RuleModel.GetEstimatedValues(dataset, rows));
 }