I have two different regression models developed from two different datasets as follows:
Y1 = B0*X1+B1 , R2 = 0.16
Y2 = C0*X2+C1 , R2 = 0.34
Y1 and Y2 are representing the same measure but they have different values
X1 and X1 are different features.
How I can compute the importance (contribution) independent variable in each model?
X1andX2are two different features, I suggest you create a single regression model containing both featuresX1andX2. The p-values give you then an indication on the contribution of each feature. IfX1andX2are the same features, the result of the model is due to the split of the dataset. – Molitoris Jun 23 '21 at 06:58