BaşlayınÜcretsiz Başlayın

kNN distance matrix

The kNN distance matrix is a necessary prior step to producing the kNN distance score. The distance matrix has

  • \(n\) rows, where \(n\) is the number of data points
  • \(k\) columns, where \(k\) is the user-chosen number of neighbors.

The entry in row i and column j of the distance matrix is the distance between point i and its jth nearest neighbor.

Bu egzersiz

Introduction to Anomaly Detection in R

kursunun bir parçasıdır
Kursu Görüntüle

Uygulamalı interaktif egzersiz

Bu örnek kodu tamamlayarak bu egzersizi bitirin.

# Calculate the 5 nearest neighbors distance
wine_nn <- get.knn(wine, k = ___)

# View the distance matrix
head(___$___)
Kodu Düzenle ve Çalıştır