Hi everyone!
My regression looks like this:
proc glm data=mydata;
absorb isin;
class year;
model tq = year
a b c /solution noint;
run;quit;
Among others, SAS gives me the Rsquare for the regression, which is really high. That is, as far as I understand it, because of the fixed effects I am using here. How could I exclude the impact of my fixed effects on the Rsquare?
I appreciate any help.
Cheers, Zak
... View more