see {MASSTIMATE} | R Documentation |
This function computes the standard error of the estimate based on the actual and predicted values
see(true, pred)
true |
a numeric vector representing the true values |
pred |
a numeric vector representing the predicted values, must be equal length to |
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}}
Function returns a length one value of the standard error of the estimate
Nicolas E. Campione