1 Identifying all neighbors within range

Another application of the KMKNN or VP tree algorithms is to identify all neighboring points within a certain distance1 The default here is Euclidean, but again, we can set distance="Manhattan" in the BNPARAM object if so desired. of the current point. We first mock up some data:

nobs <- 10000
ndim <- 20
data <- matrix(runif(nobs*ndim), ncol=ndim)

We apply the findNeighbors() function to data:

fout <- findNeighbors(data, threshold=1)
head(fout$index)
## [[1]]
##  [1] 2161 5072 4168 7542 9960 9019 3014    1 9044 6973 4530 6821
## 
## [[2]]
## [1] 7057 6258 4768 3425    2 8812
## 
## [[3]]
## [1] 3
## 
## [[4]]
## [1] 9572 5768    4 8526 6766 2845 7854 6502
## 
## [[5]]
## [1] 3548 4107 8544    5 5312 8428
## 
## [[6]]
## [1]    6 8976 1806 4726
head(fout$distance)
## [[1]]
##  [1] 0.8511547 0.9043992 0.9439217 0.9075926 0.9142358 0.9893132 0.7395785
##  [8] 0.0000000 0.9969986 0.9261590 0.9825277 0.9244516
## 
## [[2]]
## [1] 0.9855148 0.8674221 0.9951049 0.9887734 0.0000000 0.9591065
## 
## [[3]]
## [1] 0
## 
## [[4]]
## [1] 0.9266224 0.9836473 0.0000000 0.9907014 0.9859689 0.9438260 0.9933319
## [8] 0.9508714
## 
## [[5]]
## [1] 0.9901686 0.9404172 0.9846317 0.0000000 0.9435785 0.9921023
## 
## [[6]]
## [1] 0.0000000 0.9849780 0.7226432 0.9224903

Each entry of the index list corresponds to a point in data and contains the row indices in data that are within threshold. For example, the 3rd point in data has the following neighbors:

fout$index[[3]]
## [1] 3

… with the following distances to those neighbors:

fout$distance[[3]]
## [1] 0

Note that, for this function, the reported neighbors are not sorted by distance. The order of the output is completely arbitrary and will vary depending on the random seed. However, the identity of the neighbors is fully deterministic.

2 Querying another data set for neighbors

The queryNeighbors() function is also provided for identifying all points within a certain distance of a query point. Given a query data set:

nquery <- 1000
ndim <- 20
query <- matrix(runif(nquery*ndim), ncol=ndim)

… we apply the queryNeighbors() function:

qout <- queryNeighbors(data, query, threshold=1)
length(qout$index)
## [1] 1000

… where each entry of qout$index corresponds to a row of query and contains its neighbors in data. Again, the order of the output is arbitrary but the identity of the neighbors is deterministic.

3 Further options

Most of the options described for findKNN() are also applicable here. For example:

  • subset to identify neighbors for a subset of points.
  • get.distance to avoid retrieving distances when unnecessary.
  • BPPARAM to parallelize the calculations across multiple workers.
  • raw.index to return the raw indices from a precomputed index.

Note that the argument for a precomputed index is precomputed:

pre <- buildIndex(data, BNPARAM=KmknnParam())
fout.pre <- findNeighbors(BNINDEX=pre, threshold=1)
qout.pre <- queryNeighbors(BNINDEX=pre, query=query, threshold=1)

Users are referred to the documentation of each function for specific details.

4 Session information

sessionInfo()
## R Under development (unstable) (2023-11-11 r85510)
## Platform: x86_64-pc-linux-gnu
## Running under: Ubuntu 22.04.3 LTS
## 
## Matrix products: default
## BLAS:   /home/biocbuild/bbs-3.19-bioc/R/lib/libRblas.so 
## LAPACK: /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.10.0
## 
## locale:
##  [1] LC_CTYPE=en_US.UTF-8       LC_NUMERIC=C              
##  [3] LC_TIME=en_GB              LC_COLLATE=C              
##  [5] LC_MONETARY=en_US.UTF-8    LC_MESSAGES=en_US.UTF-8   
##  [7] LC_PAPER=en_US.UTF-8       LC_NAME=C                 
##  [9] LC_ADDRESS=C               LC_TELEPHONE=C            
## [11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C       
## 
## time zone: America/New_York
## tzcode source: system (glibc)
## 
## attached base packages:
## [1] stats     graphics  grDevices utils     datasets  methods   base     
## 
## other attached packages:
## [1] BiocParallel_1.37.0  BiocNeighbors_1.21.2 knitr_1.45          
## [4] BiocStyle_2.31.0    
## 
## loaded via a namespace (and not attached):
##  [1] cli_3.6.2           rlang_1.1.2         xfun_0.41          
##  [4] jsonlite_1.8.8      S4Vectors_0.41.2    htmltools_0.5.7    
##  [7] stats4_4.4.0        sass_0.4.8          rmarkdown_2.25     
## [10] grid_4.4.0          evaluate_0.23       jquerylib_0.1.4    
## [13] fastmap_1.1.1       yaml_2.3.8          lifecycle_1.0.4    
## [16] bookdown_0.37       BiocManager_1.30.22 compiler_4.4.0     
## [19] codetools_0.2-19    Rcpp_1.0.11         lattice_0.22-5     
## [22] digest_0.6.33       R6_2.5.1            parallel_4.4.0     
## [25] bslib_0.6.1         Matrix_1.6-4        tools_4.4.0        
## [28] BiocGenerics_0.49.1 cachem_1.0.8