MulaiMulai sekarang secara gratis

Linear SVM for complex dataset

In this exercise you will build a default cost linear SVM for the complex dataset you created in the first lesson of this chapter. You will also calculate the training and test accuracies and plot the classification boundary against the test dataset. The e1071 library has been loaded, and test and training datasets have been created for you and are available in the data frames trainset and testset.

Latihan ini adalah bagian dari kursus

Support Vector Machines in R

Lihat Kursus

Latihan interaktif praktis

Cobalah latihan ini dengan menyelesaikan kode contoh berikut.

#build model
svm_model<- 
    svm(y ~ ., data = ___, type = "C-classification", 
        kernel = ___)
Edit dan Jalankan Kode