Description Usage Arguments Value References See Also Examples
View source: R/plotViperCharts.R
This includes ROC, lift charts, cost curves, and so on. Please got to http://viper.ijs.si for further info.
For resampled learners, the predictions from different iterations are combined into one. That is, for example for cross-validation, the predictions appear on a single line even though they were made by different models. There is currently no facility to separate the predictions for different resampling iterations.
1 2 | plotViperCharts(obj, chart = "rocc", browse = TRUE, auth.key = NULL,
task.id = NULL)
|
obj |
[(list of) |
chart |
[ |
browse |
[ |
auth.key |
[ |
task.id |
[ |
[character(1)
]. Invisibly returns the ViperCharts URL.
Sluban and Lavra<c4><8d> - ViperCharts: Visual Performance Evaluation Platform, ECML PKDD 2013, pp. 650-653, LNCS 8190, Springer, 2013.
Other roc: asROCRPrediction
,
calculateROCMeasures
Other predict: asROCRPrediction
,
getPredictionProbabilities
,
getPredictionResponse
,
getPredictionTaskDesc
,
predict.WrappedModel
,
setPredictThreshold
,
setPredictType
1 2 3 4 5 6 7 | ## Not run:
lrn1 = makeLearner("classif.logreg", predict.type = "prob")
lrn2 = makeLearner("classif.rpart", predict.type = "prob")
b = benchmark(list(lrn1, lrn2), pid.task)
z = plotViperCharts(b, chart = "lift", browse = TRUE)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.