All Projects → jefferislab → RANN

jefferislab / RANN

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

Programming Languages

r
7636 projects
C++
36643 projects - #6 most used programming language
c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to RANN

rrlite
R interface to rlite https://github.com/seppo0010/rlite
Stars: ✭ 16 (-62.79%)
Mutual labels:  r-package
GAlogger
Log R Events and R Usage to Google Analytics
Stars: ✭ 23 (-46.51%)
Mutual labels:  r-package
cablecuttr
An R wrapper for CanIStream.It API
Stars: ✭ 17 (-60.47%)
Mutual labels:  r-package
bittrex
A R Client for the Bittrex Crypto-Currency Exchange
Stars: ✭ 26 (-39.53%)
Mutual labels:  r-package
dplyr.teradata
A Teradata Backend for dplyr
Stars: ✭ 16 (-62.79%)
Mutual labels:  r-package
rtweet.download
{rtweet} helpers for automating large or time-consuming downloads
Stars: ✭ 24 (-44.19%)
Mutual labels:  r-package
worldfootballR
A wrapper for extracting world football (soccer) data from FBref, Transfermark, Understat and fotmob
Stars: ✭ 188 (+337.21%)
Mutual labels:  r-package
mikropml
User-Friendly R Package for Supervised Machine Learning Pipelines
Stars: ✭ 34 (-20.93%)
Mutual labels:  r-package
dataspice
🌶️ Create lightweight schema.org descriptions of your datasets
Stars: ✭ 151 (+251.16%)
Mutual labels:  r-package
pkgkitten
Create simple packages which pass R CMD check
Stars: ✭ 31 (-27.91%)
Mutual labels:  r-package
NetBID
Data-driven Network-based Bayesian Inference of Drivers
Stars: ✭ 21 (-51.16%)
Mutual labels:  r-package
polyglot
🎓Use the R Console as an interactive learning environment
Stars: ✭ 26 (-39.53%)
Mutual labels:  r-package
gendercoder
Creating R package to code free text gender responses
Stars: ✭ 48 (+11.63%)
Mutual labels:  r-package
WeightedTreemaps
Create Voronoi and Sunburst Treemaps from Hierarchical data
Stars: ✭ 33 (-23.26%)
Mutual labels:  r-package
rprotobuf
R Interface to Protocol Buffers
Stars: ✭ 62 (+44.19%)
Mutual labels:  r-package
fastknn
Fast k-Nearest Neighbors Classifier for Large Datasets
Stars: ✭ 64 (+48.84%)
Mutual labels:  nearest-neighbors
NearestNeighborDescent.jl
Efficient approximate k-nearest neighbors graph construction and search in Julia
Stars: ✭ 34 (-20.93%)
Mutual labels:  nearest-neighbors
nasapower
API Client for NASA POWER Global Meteorology, Surface Solar Energy and Climatology in R
Stars: ✭ 79 (+83.72%)
Mutual labels:  r-package
aRt
R package to create generative art.
Stars: ✭ 37 (-13.95%)
Mutual labels:  r-package
travis
⛔ ARCHIVED ⛔ Set Up 'Travis' for Testing and Deployment
Stars: ✭ 61 (+41.86%)
Mutual labels:  r-package

RANN

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 nearest neighbors for the Euclidean (L2) metric. For the Manhattan (L1) metric, install the RANN1 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")

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")

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].