
This function lets the user calculate all errors and R squared simultaneously.
This function lets the user calculate Root Mean Squared Error
This function lets the user calculate Mean Absolute Error
This function lets the user calculate Mean Squared Error
This function lets the user calculate Mean Squared Error
This function lets the user calculate R Squared
This function lets the user calculate Adjusted R Squared
errors(tag, score)rmse(tag, score)
mae(tag, score)
mse(tag, score)
mape(tag, score)
rsq(tag, score)
rsqa(tag, score)
data.frame or numeric values results for multiple error metrics on continuous numerical vectors inputs.
Vector. Real known label
Vector. Predicted value or model's result
Other Model metrics:
ROC()
,
conf_mat()
,
gain_lift()
,
loglossBinary()
,
model_metrics()
data(dfr) # Results for AutoML Predictions
head(dfr$regr)
df <- errors(dfr$regr$tag, dfr$regr$score)
head(df)
Run the code above in your browser using DataLab