1. Learn
  2. /
  3. Courses
  4. /
  5. Support Vector Machines in R

Exercise

Tuning an RBF kernel SVM

In this exercise you will build a tuned RBF kernel SVM for the given training dataset (available in dataframe trainset) and calculate the accuracy on the test dataset (available in data frame testset). You will then plot the tuned decision boundary against the test dataset.

Instructions 1/4

undefined XP
    1
    2
    3
    4
  • Use tune.svm() to build a tuned RBF kernel SVM.