Description Usage Arguments Value See Also Examples
Finds the nearest k points for every point of the input data.
1 |
X |
matrix object containing the input data. |
k |
number of neighbours. |
iLLE |
a logical values indicating wheater to use improved LLE. See |
neighbours |
matrix with N rows and columns. If x_j is a neighbour of x_i then neighbours[i,j] is one, else zero. |
1 2 3 4 | data( lle_scurve_data )
X <- lle_scurve_data
neighbours <- find_nn_k( X, 5 )
table( rowSums( neighbours ) )
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.