errors | R Documentation |
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)
tag |
Vector. Real known label |
score |
Vector. Predicted value or model's result |
data.frame or numeric values results for multiple error metrics on continuous numerical vectors inputs.
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.