PredictPerformance: Predicts suitable outlier methods from meta-features of the...

Description Usage Arguments Value Examples

Description

Predicts suitable outlier methods from meta-features of the dataset using trained random forest models.

Usage

1
PredictPerformance(ftrs, models)

Arguments

ftrs

Meta-features of the dataset.

models

The trained random forest models. These are obtained from the function TrainModels.

Value

The prediction probabilities for each of the outlier method. For example, a probability of 0.78 for the first outlier method means the probability that the first method is good for this dataset is 0.78.

Examples

1
2
3
4
5
6
7
8
## Not run: 
data(Arrhythmia_withoutdupl_05_v05)
dat <- Arrhythmia_withoutdupl_05_v05
feat <- ComputeMetaFeaturesMM(dat)
fit <- TrainModels(1,1,1)
out <- PredictPerformance(feat, fit)

## End(Not run)

sevvandi/outselect documentation built on June 1, 2019, 3:58 a.m.