I have an outcome variable which is the score of memory function. There are two variables (say A and B, extracted from PET scans of subjects) which are significantly related to memory function. When the two variables A and B are closely correlated (Pearson's R = 0.9), how can I determine one variable is more influential(?) or better in any ways compared to another?
In summary, I have two linear models, where variable A and B are significantly related. How can I tell A is better in predicting memory function than B?
lm1 = memory ~ age + education + A
lm2 = memory ~ age + education + B
cor(A,B) = 0.9
I beg your kind advice.