-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Regionalization with a minimum and maximum thresholds of and attribute value (or maximazing homogenization among regions) #274
Comments
@knaaptime Do you have some advice for this? |
This problem is what in Argis Pro is called Spatially Constrained Multivariate Clustering |
with the max-p algorithm, the max-p is greedy with respect to If you want to set the number of regions exogenously, you might try a different method like skater or hierarchical clustering with a spatial constraint. The arcgis method you linked to is using skater. |
Thank you @knaaptime it really help me your comment. |
Hi @knaaptime , I have another question. I have been watching the examples and documentation of the skater algorithm and the hierarchical clustering. I see that in the first case the threshold that I can give to the algorithm is in terms of the number of spatial objects per region. I have been testing this same algorithm but in pygeoda, there you can give the threshold in terms of a variable. Best regards, |
great question. At the moment, our SKATER implementation has a We should add that cc @xf37 |
The corresponding keywords could be:
|
Hello everyone
I am trying to solve a problem related to regionalization. What I want to do is create regions spatially continuous with a maximum of homogeneity in one of its internal variables (let´s say population) or that I can give a minimum and maximum value per region without specifying the number of regions). Until now I have tried to use the algorithm of MaxPHeuristic where I can give a threshold value, this is a good approach but the homogenization of my internal variable is not very good (using my data I got regions with around 40 % more population than other regions).
Is it possible to give a given number of clusters using the algorithm of MaxPHeuristic and increase the homogeneity of the regions? or I should choose another algorithm?
The text was updated successfully, but these errors were encountered: