Hi all, I want to create clusters for 100,183 population based on their latitude and longitude. I used following code to get 10 clusters: proc fastclus data=NY_BRONX maxclusters=10 list distance out=cluster_NB outseed=out_NB; mzb_indiv_id; longitude latitude; but frequency for each cluster are not equal sizes, as follows: 7861,12832,13437,3948,12543,11022,661,14572,15901,7406. I wonder are there any way that we can force the size of each cluster to be equal? I really appreciate your help! Thanks, Jacky
... View more