evaluation.msep {fdm2id} | R Documentation |
MSEP evaluation of regression predictions
Description
Evaluation predictions of a regression model according to MSEP
Usage
evaluation.msep(predictions, gt, ...)
Arguments
predictions |
The predictions of a regression model ( |
gt |
The ground truth ( |
... |
Other parameters. |
Value
The evaluation of the predictions (numeric value).
See Also
Examples
require (datasets)
data (trees)
d = splitdata (trees, 3)
model.lin = LINREG (d$train.x, d$train.y)
pred.lin = predict (model.lin, d$test.x)
evaluation.msep (pred.lin, d$test.y)
[Package fdm2id version 0.9.9 Index]