I'm trying to cluster some 3D points with the help of some given coordinates using DBSCAN
algorithm with python.
ex:- given coordinates will be like follows
X Y Z
[-37.530 3.109 -16.452]
[40.247 5.483 -15.209]
[-31.920 12.584 -12.916]
[-32.760 14.072 -13.749]
[-37.100 1.953 -15.720]
[-32.143 12.990 -13.488]
[-41.077 4.651 -15.651]
[-34.219 13.611 -13.090]
[-33.117 15.875 -13.738] e.t.c
I'm kind of new to programming and searching for an example script how to write the codes. Can some one give a suggestion or an example? Thanks a lot in advance.