This function computes the standard error of the estimate based on the actual and predicted values
Usage
see(true, pred)
Arguments
true
a numeric vector representing the true values
pred
a numeric vector representing the predicted values, must be equal length to true
Value
Function returns a length one value of the standard error of the estimate
Details
This function calculates the standard error of the estimate (see) as a scaled residual, so:
$$see=\sqrt{\frac{\sum \left ( true-pred \right )^{2}}{N}}$$