A python package for density adaptive DBSCAN clustering
Project description
AdaptiveDBSCAN
This is a normalized form of DBSCAN alogorithm that is based on varying number of neighbour. This algorithm is useful when your data has different density pattern. To get more information about the algorithm, please refer to the paper.
installation
To install the package, you can use pip:
pip install dadbscan
Getting Started
After installing the package, you can use it as follows by importing the modules:
from dadbscan.density import EQ_Density
from dadbscan.dbscan import EQ_DBSCAN
------------------------------------------------------------------------------------
###Phase1.
The first line is being used for creating density map and the second one is for applying the Density-Adaptive DBSCAN algorithm.
Now by defining the N value you having database as a csv file, you can run the density algorithm:
initiating the EQ_density class:
N = 65
density = EQ_Density(N, database)
To test the program, you can download the test file from the github repo and use decl_cat.csv as database.
database = 'decl_cat.csv'
running calc_density method:
heat_matrix = density.calc_density()
plotting the density map:
density.plot_density(heat_matrix)
a feature that can be used is smoothing the density map. This can be done by using the following method:
smoothed_heat_matrix = density.cell_smoother(apply_smooth=True)
! All the matrixes are saved physically in the folder 'Results'.
------------------------------------------------------------------------------------
###Phase2.
Now that you have the density map, you can run the Density-Adaptive DBSCAN algorithm. To do so, you need to define the following parameters:
radius = density.radius
density_file_names = f"Results/den_decl_cat__65_smooth.csv"
As it can be seen above, radius can be derived from the denisty class. now it is time to initiate the dbscan class and run the algorithm:
clustering = clustering = dbscan(radius, density_file_name)
final = clustering.clustering()
clustering.plot_clusters()
final.to_csv(f"Results/R__{density_file_name}")
When plotting the clustered data, you have some options:
def plot_clusters(self, **kwargs):
"""Plot the clusters on a map using GeoPandas and matplotlib
----------
**kwargs:
cmap_shp: str, default="grey"
The colormap to use for the shape file in the background
cmap_scatter: str, default="turbo"<br>
The colormap to use for the scatter plot<br>
shp_linewidth: float, default=2<br>
The linewidth of the shape file<br>
save_fig: bool, default=False<br>
Whether to save the figure or not, if so, it will be saved in the ExampleData folder<br>
save_fig_format: str, default="pdf"<br>
The format to save the figure in <br>
shape_file_address: str, default=False<br>
The address of the shape file to plot in the background, you can use the World_Countries_Generalized.shp file in the ShapeFiles folder.<br>
shape_file_address="ShapeFiles/World_Countries_Generalized.shp"<br>
"""
Reference
Sabermahani, S., Frederiksen, A., 2023, Improved earthquake clustering using a Density-Adaptive DBSCAN algorithm: an example from Iran, Seismological Research Letters
License
This project is licensed under the MIT License - see the MIT License file for details.
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 adaptive-dbscan-0.3.1.tar.gz
.
File metadata
- Download URL: adaptive-dbscan-0.3.1.tar.gz
- Upload date:
- Size: 6.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 53b4a4228399e6255f5a86ef95f97d52f9bc7f9bc2b09bdf452df20c6500db5d |
|
MD5 | 74c32b6a42ea7dd48f13bbc98d603732 |
|
BLAKE2b-256 | 6c33d6f61843eea1372acc0746ce8aa73afdc68ff22580894644f26b4b7a17c2 |
File details
Details for the file adaptive_dbscan-0.3.1-py3-none-any.whl
.
File metadata
- Download URL: adaptive_dbscan-0.3.1-py3-none-any.whl
- Upload date:
- Size: 7.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 10ac19ffc8f0fa5d6d6d083bf03934c6d41cd71ac2984ef238385ebdaa6d055b |
|
MD5 | 0b1084178118720171a862dca65a2b58 |
|
BLAKE2b-256 | 58fb6d9e2d232f2bc23750cd474aa16a7a859dd155c9de3a395459c67b0f7d23 |