8000 GitHub - combiz/RANN.L1: R package providing fast nearest neighbour search (wraps ANN library)
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
/ RANN.L1 Public
forked from jefferislab/RANN

R package providing fast nearest neighbour search (wraps ANN library)

Notifications You must be signed in to change notification settings

combiz/RANN.L1

 
 

Repository files navigation

RANN.L1

Release Version CRAN_Status_Badge Build Status Downloads

Finds the k nearest neighbours for every point in a given dataset in O(N log N) time using Arya and Mount's ANN library (v1.1.3). There is support for approximate as well as exact searches, fixed radius searches and bd as well as kd trees.

This package implements the Manhattan (L1) metric. For the Euclidean (L2) metric, install the RANN package.

For further details on the underlying ANN library, see http://www.cs.umd.edu/~mount/ANN.

Installation

Released versions

The recommendation is to install the released version from CRAN by doing:

install.packages("RANN.L1")

Bleeding Edge

You can, however, download the tar ball, and run R CMD INSTALL on it, or use the devtools package to install the development version:

# install.packages("devtools")

devtools::install_github("jefferis/RANN@master-L1")

Note: Windows users need Rtools and devtools to install this way.

Feedback

Please feel free to:

Copyright and License

see inst/COPYRIGHT and DESCRIPTION files for copyright and license information.

About

R package providing fast nearest neighbour search (wraps ANN library)

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 88.6%
  • C 6.4%
  • R 5.0%
0