...
Measure | Available for |
---|---|
Confusion Matrix |
|
Accuracy |
|
ROC Curve |
|
AUC |
|
Feature Importance |
|
Predicted vs Actual |
|
MSE |
|
Residual Plot |
|
Precision and RecallBinary classification Recall |
|
F1 Score |
|
Confusion Matrix
Anchor | ||||
---|---|---|---|---|
|
...
If the above conditions are not satisfied, it is possible that there are some missing/hidden factors/predictor variables that have not been taken into account. Residual plot is available for numerical prediction models. You can select a dataset feature to be plotted with its residuals.
Precision and Recall
Anchor | ||||
---|---|---|---|---|
|
Precision and Recall are performance measures used to evaluate search strategies. They are typically used in document retrieval scenarios.
...
Measure | Definition | Formula | ||
---|---|---|---|---|
Precision | The number of the records relevant to the search that are retrieved, as a percentage of the total number of records in the databaseselected items that are relevant. | TP / (TP + FP) | ||
Recall | The number of the records relevant to the search that are retrieved, as a percentage of the total number of records that are relevant to the searchitems that are selected.
| TP / (TP + FN) |
F1 Score
Anchor | ||||
---|---|---|---|---|
|
The F1 Score gives the weighted average of Precision and Recall. It is expressed as a value between 0 and 1, where 0 indicates the worst performance and 1 indicates the best performance.
...