Description Usage Arguments Details Value Examples
This function builds an Unweighted K Nearest Neighbor (KNN) graph in the input feature space using Euclidean distance metric.
1 | KNN.Construction(mat, k)
|
mat |
the input data saved as a numerical matrix. The columns are the features and the rows are the samples. |
k |
the number of nearest neighbors for building the KNN graph. |
This function builds a KNN graph of the input data. The main function
comes from the R package RANN
.
An n by n binary dgCMatrix object C, where n is the number of input samples. The matrix C is the adjacency matrix of the built KNN graph. C[i,j] = 1 means that there is an edge between sample i and sample j.
1 2 3 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.