Sum of Squared Errors
Regression measure defined as
sum((t - r)^2).
sse(truth, response, ...)
truth |
( |
response |
( |
... |
( |
Performance value as numeric(1)
.
Type: "regr"
Range: [0, Inf)
Minimize: TRUE
Required prediction: response
set.seed(1) truth = 1:10 response = truth + rnorm(10) sse(truth, response)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.