I am trying to 'invert' distance values from a proc distance so the output would correspond to the highest distance value would be coded as zero and a distance value of zero would be coded as the highest distance value. I can do this by multiplying the distance values by -1 and then adding the max value but was looking for an automated way to approach the solution. Is there an automated way to refer to the maximum value for a variable using a by statement?
For example:
Say you have 72 counties of data for per capita earnings and average education. You use this data to create a distance matrix using per capita earnings and average education as variables. Each county has a distance (method=euclid) that ranges from zero to a maximum value. Is there a way to refer to the maximum value of the distance by county?