alwintsui / dbscan

Density Based Spatial Clustering of Applications with python plotting

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

dbscan

Density Based Spatial Clustering of Applications with python plotting

Shun Xu alwintui@gmail.com

July 5, 2014

Setup

	python setup.py install

Usages

	import dbscan
	dbscan.dbscan(m, eps, min_points)

or

	python -m dbscan.dbscan eps minpts data-file  col0 col1 col2 ...
	dbscan.py eps minpts data-file  col0 col1 col2 ...

Examples

	python -m dbscan.dbscan 0.04 5 test1500.txt 0 1 2
	python -m dbscan.dbscan 0.02 6 test1500.txt 0 1

About

Density Based Spatial Clustering of Applications with python plotting


Languages

Language:Python 100.0%