I have two univariate regressions that I want to run on the same dependant variable. I then want to put all these results on one graph. My regressions would look something like the following:
reg y x
reg y z
I tried using outreg's 'append', but it creates multiple columns for my dependant variable. What I want is to append rows for each independent variable x, z. How would I go about doing this?
reg y x
reg y z
I tried using outreg's 'append', but it creates multiple columns for my dependant variable. What I want is to append rows for each independent variable x, z. How would I go about doing this?
Comment