RNN DBSCAN

版本 1.0.4.0 (1.1 MB) 作者: Trevor Vannoy
MATLAB implementation of the RNN-DBSCAN clustering algorithm
172.0 次下载
更新时间 2023/12/7

matlab-rnn-dbscan

View RNN DBSCAN on File Exchange

This repo contains a MATLAB implementation of the RNN-DBSCAN algorithm by Bryant and Cios. This implementation is based upon the graph-based interpretation presented in their paper.

RNN DBSCAN is a density-based clustering algorithm that uses reverse nearest neighbor counts as an estimate of observation density. It is based upon traversals of the directed k-nearest neighbor graph, and can handle clusters of different densities, unlike DBSCAN. For more details about the algorithm, see the original paper.

Dependencies

  • My knn-graphs MATLAB library
  • Statistics and Machine Learning Toolbox

To use the NN Descent algorithm to construct the KNN graph used by RNN DBSCAN, you need pynndescent and MATLAB's Python language interface. I recommend using Conda to set up an environment, as MATLAB is picky about which Python versions it supports.

Installation

Install with mpm:

mpm install knn-graphs
mpm install matlab-rnn-dbscan

Manual installation

Usage

RnnDbscan is a class with a single public method, cluster. The results of the clustering operation are stored in read-only public properties.

Creating an RnnDbscan object:

% Create an RnnDbscan object using a 5-nearest-neighbor graph.
% nNeighborsIndex is how many neighbors used to create the knn index, and must be >= nNeighbors + 1
% because the index includes self-edges (each point is it's own nearest neighbor).
nNeighors = 5;
nNeighborsIndex = 6;
rnndbscan = RnnDbscan(data, nNeighbors, nNeighborsIndex);

% Use the NN Descent algorithm to create the knn index; this is much faster than an exhaustive search
rnndbscan = RnnDbscan(data, nNeighbors, nNeighborsIndex, 'Method', 'nndescent');

% Explicitly use an exhaustive search, which is the default
rnndbscan = RnnDbscan(data, nNeighbors, nNeighborsIndex, 'Method', 'knnsearch');

% Use a precomputed knn index
knnidx = knnindex(data, nNeighborsIndex);
rnndbscan = RnnDbscan(data, nNeighbors, knnidx);

Clustering:

rnndbscan.cluster();
% Or
cluster(rnndbscan);

% Inspect clusters, outliers, and labels
rnndbscan.Clusters
rnndbscan.Outliers
rnndbscan.Labels

For more details, see the help text: help RnnDbscan. RNN-DBSCAN tests.ipynb also contains many tests, which can be used as usage examples.

Contributing

All contributions are welcome! Just submit a pull request or open an issue.

引用格式

Trevor Vannoy (2024). RNN DBSCAN (https://github.com/tvannoy/matlab-rnn-dbscan/releases/tag/v1.0.4), GitHub. 检索来源 .

MATLAB 版本兼容性
创建方式 R2020a
与 R2020a 及更高版本兼容
平台兼容性
Windows macOS Linux

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

test

版本 已发布 发行说明
1.0.4.0

See release notes for this release on GitHub: https://github.com/tvannoy/matlab-rnn-dbscan/releases/tag/v1.0.4

1.0.3.0

See release notes for this release on GitHub: https://github.com/tvannoy/matlab-rnn-dbscan/releases/tag/v1.0.3

1.0.2.0

See release notes for this release on GitHub: https://github.com/tvannoy/matlab-rnn-dbscan/releases/tag/v1.0.2

1.0.1

See release notes for this release on GitHub: https://github.com/tvannoy/matlab-rnn-dbscan/releases/tag/v1.0.1

1.0

要查看或报告此来自 GitHub 的附加功能中的问题,请访问其 GitHub 仓库
要查看或报告此来自 GitHub 的附加功能中的问题,请访问其 GitHub 仓库