MulaiMulai sekarang secara gratis

Visualize the maximal margin separator

In this exercise you will add the maximal margin separator to the scatter plot you created in an earlier exercise. The plot has been reproduced on the right.

Latihan ini adalah bagian dari kursus

Support Vector Machines in R

Lihat Kursus

Petunjuk latihan

  • Create a data frame called separator containing the maximal margin separator. This is available in the variable mm_separator(enter mm_separator to see it)
  • Use the data frame created to add the maximal margin separator to the sugar content scatterplot created in the earlier exercise and display the result.

Latihan interaktif praktis

Cobalah latihan ini dengan menyelesaikan kode contoh berikut.

#create data frame containing the maximum margin separator
separator <- data.frame(sep = ___)

#add ggplot layer 
plot_sep <- plot_ + geom_point(data = ___, aes(x = ___, y = 0), color = "blue", size = 4)

#display plot
plot_sep
Edit dan Jalankan Kode