I'm confused by the exercise solutions of the book Applied Predictive Modeling. In
https://github.com/topepo/APM_Exercises/blob/master/Ch_06.pdf at the beginning of page 4
Resampling results
RMSE Rsquared RMSE SD Rsquared SD
1.382 0.8716 1.014 0.08729
The RMSE is slightly more than 1.4%
To my knowledge RMSE isn't a % (of what?) It's
mse <- mean(residuals(fit)^2)
rmse <- sqrt(mse)
Can someone help me on this?