Description Objects from the Class Slots Methods Author(s) References See Also Examples
This is the class of the objects storing the results of estimating the performance of a workflow on a predictive task using some estimation method.
Objects can be created by calls of the form EstimationResults(...)
providing the values for the class slots. The objects contain
information on the predictive task, the workflow, the estimation
task, the metric scores and optionally also information on results
obtained at each iteration of the estimation process.
task
:Object of class PredTask
workflow
:Object of class Workflow
estTask
:Object belonging to class EstimationTask
iterationsScores
:Object of class matrix
iterationsInfo
:Object of class list
signature(x = "EstimationResults", y = "missing")
: method
used to visualize the results of the estimation process.
signature(object = "EstimationResults")
: shows the contents of an object in a proper way
signature(object = "EstimationResults")
: method used to
obtain a summary of the results of the estimation process.
Luis Torgo ltorgo@dcc.fc.up.pt
Torgo, L. (2014) An Infra-Structure for Performance Estimation and Experimental Comparison of Predictive Models in R. arXiv:1412.0436 [cs.MS] http://arxiv.org/abs/1412.0436
EstimationMethod
,
EstimationTask
,
PredTask
,
Workflow
,
performanceEstimation
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | showClass("EstimationResults")
## Not run:
library(e1071)
data(swiss)
## Estimating the MAE and NMSE of an SVM on the swiss task
eval.res <- cvEstimates(
Workflow(learner="svm",learner.pars=list(cost=10,gamma=0.1)),
PredTask(Infant.Mortality ~ .,swiss),
EstimationTask(metrics=c("mae","nmse"),method=CV(nReps=2))
)
## Check a summary of the results
summary(eval.res)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.