Let’s say we want to determine if Y (continuous) could be predicted by other metrics (X1, X2, X3-all continuous).
We have table with 31 rows, each row contains data about X1, X2, X3 & Y.
We want to find out what are the metrics we should use as inputs to Y while we want to account for at least 81% of the variation in Y.
We fit the model and looked at the "summary of fit", there we see R-square of 0.9, however it is for the entire model X1,X2&X3 altogether.
How can we check what is the % of variation in Y for each one of the metrics separately and verify it is indeed is >81%? Should we fit the model 3 times separately?
i.e.
1st time Y with X1 and check R-square
2nd time Y with X2 and check R-square
3rd time Y with X3 and check R-square
When we do this in that way we get:
R-square for X1-0.83
R-square for X2-0.82
R-square for X3-0.09
Does it mean that X1 & X2 can be used separately as inputs to Y, and account the required % of the variation in Y? is this a correct analysis & statement?
Thanks
Ramon Bamer