Description Usage Arguments Value Examples
Predicts suitable outlier methods from meta-features of the dataset using trained random forest models.
1 | PredictPerformance(ftrs, models)
|
ftrs |
Meta-features of the dataset. |
models |
The trained random forest models. These are obtained from the function |
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.
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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.