Hello,
I get the following error when I use the ROSE class balancing method but
when I use other methods like SMOTE, up, down, I do not get any error
message.
Something is wrong; all the ROC metric values are missing:
ROC Sens Spec
Min. : NA Min. : NA Min. : NA
1st Qu.: NA 1st Qu.: NA 1st Qu.: NA
Median : NA Median : NA Median : NA
Mean :NaN Mean :NaN Mean :NaN
3rd Qu.: NA 3rd Qu.: NA 3rd Qu.: NA
Max. : NA Max. : NA Max. : NA
library(DMwR)
d=readARFF("bughunter.arff")
index <- createDataPartition(d$`Bug class`, p = .70,list = FALSE)
tr <- d[index, ]
ts <- d[-index, ]
boot3 <- trainControl(method = "repeatedcv", number=10,
repeats=10,classProbs = TRUE,verboseIter = FALSE,
summaryFunction = twoClassSummary, sampling = "rose")
set.seed(30218)
ct <- train(`Bug class` ~ ., data = tr,
method = "pls",
metric = "AUC",
preProc = c("center", "scale", "nzv"),
trControl = boot3)
getTrainPerf(ct)
[[alternative HTML version deleted]]
______________________________________________
[email protected] mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.