This method of recoding enables you to create a new variable that is standardized to the range [-1,1]. That is, the minimum and maximum values of the existing numeric variable become -1 and 1 in the new variable, with other values distributed between.
Formula: max(old) + min(old)
old - -------------------
2
new = ---------------------------
max(old) - min(old)
-------------------
2