Hi,
I have a dataset with variables A B C D E F G H I J K L M N O P Q R S T U V W X Y Z inflow.
I have run multiple regressions while saving the estimated coefficient as such.
Then I use coefplot to plot the confidence intervals of each regression into one graph.
I can get the graph to appear, but I want to label the x-axis with the variable names (A B C D ...)
How do I do this?
Thanks in advance.
I have a dataset with variables A B C D E F G H I J K L M N O P Q R S T U V W X Y Z inflow.
I have run multiple regressions while saving the estimated coefficient as such.
Code:
foreach dep in A B C D E F G H I J K L M N O P Q R S T U V W X Y Z{ reg `dep' inflow est sto `dep' }
Code:
coefplot A B C D E F G H I J K L M N O P Q R S T U V W X Y Z, drop(_cons) vertical yline(0) legend(off)
How do I do this?
Thanks in advance.
Comment