I am using the Caret package to tune a SVM model.
Is there a way to scale the Sigma
values similar to the Cost
values when plotting the results (as shown in the attached Fig.).
Here is my tuning values:
svmGrid <- expand.grid(sigma= 2^c(-25, -20, -15,-10, -5, 0), C= 2^c(0:5))
Code to produce the plot:
pdf("./Figures/svm/svmFit_all.pdf", width=7, height = 5)
trellis.par.set(caretTheme())
plot(svmFit.all, scales = list(x = list(log = 2)))
dev.off()
Thanks