Regression Metrics

Regression Metrics API Reference

Functions

MAE( y, yhat )

Calculates Mean Average Error from vectors Y and YHat

source
MAPE( y, yhat )

Calculates Mean Average Percent Error from vectors Y and YHat

source
ME( y, yhat )

Calculates Mean Error from vectors Y and YHat.

source
MSE( y, yhat )

Calculates Mean Squared Error from vectors Y and YHat

source
PearsonCorrelationCoefficient( y, yhat )

Calculates The Pearson Correlation Coefficient from vectors Y and YHat

source
PercentRMSE( y, yhat )

Calculates Percent Root Mean Squared Error from vectors Y and YHat

source
RMSE( y, yhat )

Calculates Root Mean Squared Error from vectors Y and YHat

source
RSquare( y, yhat )

Calculates R^2 from Y and YHat

source
SSE( y, yhat )

Calculates Sum of Squared Errors from vectors Y and YHat

source
SSReg( y, yhat )

Calculates Sum of Squared Deviations due to Regression from vectors Y and YHat

source
SSRes( y, yhat )

Calculates Sum of Squared Residuals from vectors Y and YHat

source
SSTotal( y, yhat )

Calculates Total Sum of Squared Deviations from vectors Y and YHat

source