cluster analysis - clustering on geo points using R -
i have set of lat, long points city. want cluster these points based on 500m radius or 1km radius using r. precisely, want find find out centroids points within 500m radius particular cluster.
ps:
1.i have used k means. cant fix radius in k - means. 2. tried using leadercluster package in r. after map clusters points, , find distance centroid, found out there lot points tagged cluster more specified radius in leadercluster package.
my question 1 in link: https://gis.stackexchange.com/questions/146701/convert-eps-to-geographic-distance-using-dbscan looking r solution
please suggest nice way cluster these points based on radius.
thanks in advance
use hierarchical clustering.
with maximum linkage, cut @ desired height, can ensure maximum distance in each cluster.
with centroid linkage, distance center should bounded, may limited euclidean distances?
Comments
Post a Comment