An efficient implementation of the DBSCAN algorithm for 1D arrays.
Project description
DBSCAN1D
dbscan1d is a 1D implementation of the DBSCAN algorithm. It was created to efficiently preform clustering on large 1D arrays.
Sci-kit Learn's DBSCAN implementation does not have a special case for 1D, where calculating the full distance matrix is wasteful. It is much better to simply sort the input array and performing efficient bisects for finding closest points. Here are the results of running the simple profile script included with the package. In every case DBSCAN1D is much faster than scikit learn's implementation.
Installation
Simply use pip to install dbscan1d:
pip install dbscan1d
It only requires numpy.
Quickstart
dbscan1d is designed to be interchangable with sklearn's implementation in almost all cases.
from sklearn.datasets import make_blobs
from dbscan1d.core import DBSCAN1D
# make blobs to test clustering
X = make_blobs(1_000_000, centers=2, n_features=1)[0]
# init dbscan object
dbs = DBSCAN1D(eps=.5, min_samples=4)
# get labels for each point
labels = dbs.fit_predict(X)
# show core point indices
dbs.core_sample_indices_
# get values of core points
dbs.components_
Notes
- dbscan1d can return different group numbers than sklearn for non-core points which are within
eps distances of core points for two separate groups. For example:
--C1--C1--P--C2--C2
Here C1 and C2 are core points for group 1 and group 2, respectively. If P is within eps of both C1 and C2, dbscan1d will assign it the same label as the core point that is closest. Sklearn doesn't always do this.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file dbscan1d-0.2.3.tar.gz
.
File metadata
- Download URL: dbscan1d-0.2.3.tar.gz
- Upload date:
- Size: 12.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 90877622e9f69db93c74a6b92e96f509f472f5811c7281b98513805016f0c1be |
|
MD5 | d437feca0242ab3e0324a632c50ac766 |
|
BLAKE2b-256 | 4514f43b3f60be9fa2ff1467b24bcfb284fdac7d7e70f71bdb204f81ef6c43f5 |
File details
Details for the file dbscan1d-0.2.3-py3-none-any.whl
.
File metadata
- Download URL: dbscan1d-0.2.3-py3-none-any.whl
- Upload date:
- Size: 10.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 28a2ca15ad73b6223b937f8ec3665e14abbfc79caa0f60ca9f96d493ebf5b45f |
|
MD5 | 35e30b3a7e41faad77adab8618622496 |
|
BLAKE2b-256 | a8b8c80e4a10e749622ee5a7566a078ab7d2100b3398cc71d99b90f80d3eb9d0 |