
Last chance! 50% off unlimited learning
Sale ends in
Measure to compare true observed response with predicted response in regression tasks.
sse(truth, response, ...)
Performance value as numeric(1)
.
Type: "regr"
Range:
Minimize: TRUE
Required prediction: response
The Sum of Squared Errors is defined as
Other Regression Measures:
bias()
,
ktau()
,
mae()
,
mape()
,
maxae()
,
maxse()
,
medae()
,
medse()
,
mse()
,
msle()
,
pbias()
,
rae()
,
rmse()
,
rmsle()
,
rrse()
,
rse()
,
rsq()
,
sae()
,
smape()
,
srho()
set.seed(1)
truth = 1:10
response = truth + rnorm(10)
sse(truth, response)
Run the code above in your browser using DataLab