Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/paulnorthrop/donut
Nearest Neighbour Search with Variables on a Torus
https://github.com/paulnorthrop/donut
degrees donut edges knn-algorithm knn-search nabor nearest nearest-neighbor nearest-neighbor-search nearest-neighbors nearest-neighbour-algorithm nearest-neighbours neighbors periodicity rann torus wrap
Last synced: 9 days ago
JSON representation
Nearest Neighbour Search with Variables on a Torus
- Host: GitHub
- URL: https://github.com/paulnorthrop/donut
- Owner: paulnorthrop
- Created: 2019-09-29T18:20:41.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-09-02T22:14:13.000Z (over 1 year ago)
- Last Synced: 2024-11-28T18:09:44.096Z (about 1 month ago)
- Topics: degrees, donut, edges, knn-algorithm, knn-search, nabor, nearest, nearest-neighbor, nearest-neighbor-search, nearest-neighbors, nearest-neighbour-algorithm, nearest-neighbours, neighbors, periodicity, rann, torus, wrap
- Language: R
- Homepage: https://paulnorthrop.github.io/donut/
- Size: 1.12 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
Awesome Lists containing this project
README
---
output: github_document
---```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-"
)
```# donut
[![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/paulnorthrop/donut?branch=master&svg=true)](https://ci.appveyor.com/project/paulnorthrop/donut)
[![R-CMD-check](https://github.com/paulnorthrop/donut/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/paulnorthrop/donut/actions/workflows/R-CMD-check.yaml)
[![Coverage Status](https://codecov.io/github/paulnorthrop/donut/coverage.svg?branch=master)](https://app.codecov.io/github/paulnorthrop/donut?branch=master)
[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/donut)](https://cran.r-project.org/package=donut)
[![Downloads (monthly)](https://cranlogs.r-pkg.org/badges/donut?color=brightgreen)](https://cran.r-project.org/package=donut)
[![Downloads (total)](https://cranlogs.r-pkg.org/badges/grand-total/donut?color=brightgreen)](https://cran.r-project.org/package=donut)## Nearest Neighbour Search with Variables on a Torus
### What does donut do?
There are several R packages, such as [RANN](https://cran.r-project.org/package=RANN) and [nabor](https://cran.r-project.org/package=nabor) that find the $k$ nearest neighbours in a dataset of specified query points, based on some metric, such as L2 or L1. The donut package considers the situation where one or more of the variables in the dataset is periodic on a finite interval. For example, direction is periodic on the interval $(0, 360)$ degrees. In the small dataset $\{10, 90, 350\}$ degrees 350 is closer to 10 than is 90: 10 and 350 are separated by 20 degrees, 10 and 90 by 80 degrees.
The function `nnt()` finds the $k$ nearest neighbours of each of a set of points of interest, wrapping periodic variables on a torus so that this periodicity is reflected. The user chooses the function to use to find the nearest neighbours. The nearest neighbour functions from the aforementioned packages are used as examples.
### An example
We use a simple example from the `RANN:nn2()` documentation. We suppose that both variables should be wrapped, on the ranges $(0, 2\pi)$ and $(0, 3)$ respectively. We choose the query points of interest to illustrate the wrapping of the variables. In the plot, query points are indicated with colour-coded crosses and the 8 nearest neighbours of each point are shaded in the same colour. By default `nnt()` uses the function `RANN::nn2()` (based on the L2 metric) to find the nearest neighbours.
```{r, echo = FALSE}
got_RANN <- requireNamespace("RANN", quietly = TRUE)
``````{r example, eval = got_RANN}
library(donut)
set.seed(20092019)
x1 <- runif(100, 0, 2 * pi)
x2 <- runif(100, 0, 3)
DATA <- data.frame(x1, x2)
ranges <- rbind(c(0, 2 * pi), c(0, 3))
query <- rbind(c(6, 1.3), c(2 * pi, 3), c(3, 1.5), c(4, 0))
library(RANN)
res2 <- nnt(DATA, query, k = 8, torus = 1:2, ranges = ranges)
plot(res2)
```### Installation
To get the current released version from CRAN:
```{r installation, eval = FALSE}
install.packages("donut")
```### Vignette
See `vignette("donut-vignette", package = "donut")` for an overview of the package.