A question related to this one:
How to sum two variables that are on different scales?
If I have two variables (rainfall and temperature) which has different means and different standard deviations... How do I need to transform two variables so that when I sum the two result is not "driven" by more volatile one. The reason I want to is that I want to create another index which is the sum of rainfall and temperature and I want to study how this index changes.
I did this standardization:
Rainfall.z = (actual value - minimum value)/(maximum value - minimum value)
Temperature.z = (actual value - minimum value)/(maximum value - minimum value)
The above standardization brings these variables on a scale 0 - 1. I then added these variables to create an index called
Planting.Index = Rainfall.z + Temperature.z
The reason I am doing this is because I am studying a location and trying to understand when that location will start planting crop. Planting of the crop will be driven by when rainfall starts + temperature reaches an optimum level.
So in a year when the planting Index reaches the minimum and then starts increasing (i.e. rainfall and temperature reaches a minimum and then start increasing) is when the planting should start.
Can standardized variables be added together?
EDIT
Background of my data. I have 30 years of rainfall, temperature and soil moisture data for a location. I am trying to generate for 30 years, when people should have planted. I know the crop is planted from June onwards when the rainfall kicks in and tmean reaches optimum level