Hi I have data (weight in kg) for samples from different heights (e.g. 5.5 ft, 5.8ft, 6ft). I want to normalize their weight with height (to exclude the effect of height). I am not very familiar with statistics. Example data are as follows:
e.g. patient A has 5.5ft and 60 kg, patient B has 5.8ft and 73 kg, patient C has 6 ft and 100 kg.
In that case, I would like to normalize patient B and C with patient A who has lowest height 5.5 ft.
I use this formula: Normalized weight value = (real weight value * minimum height)/real height.
So, Patient B (normalized) = (73 * 5.5)/5.8 = 73.017 kg
Is my way of calculation correct? If not, please advise the correct ways.Thanks.