Suppose we have a dataframe similar to the following (I have more than 3 columns and all values in the dataframe are in %):
% of municipalities with internet connection | % of households with internet access | Phenomenon 3
Region 1 80% | 85% | ...
Region 2 95% | 90% | ...
Region 3 90% | 95% | ...
Region 4 75% | 80% | ...
I need to build an index to determine a ranking of the regions based on the observed phenomena. Anyone have any proposals? If I had only one phenomenon it would be enough to sort the regions by the %, but with more phenomena I don't know exactly how to proceed.