throw new Exception("Pace Regression: No model built yet.");
}
// check for missing data and throw exception if some are found
if (checkForMissing(instance, m_Model)) {
throw new NoSupportForMissingValuesException("Can't handle missing values!");
}
// Calculate the dependent variable from the regression model
return regressionPrediction(instance,
m_Coefficients);