Dear all,
I have a very difficult problem that I can't seem to produce using Stata. I am using the package coefplot, but I can't get the correct result.
Suppose I have the following code:
Now what I would like to do is plot the coefficients on the y-axis and days on the x-axis preferably including the 95% confidence interval lines. So I have three lines in 1 graph, is this possible to do in Stata 13.1 or should I use a different package to do this?
PS: in this case there is only one coefficient, but I if there are multiple coefficients is there a way to select the coefficient that I would like to plot?
There is btw one method that I know it will work and that's by making a new data file as follows:
coefficient - day - ci_top - ci_bottom
1.1 - 1 - 1.5 - 0.9
...
and then plot this, but this seems a bit weird I think.
Thanks for your help!
I have a very difficult problem that I can't seem to produce using Stata. I am using the package coefplot, but I can't get the correct result.
Suppose I have the following code:
Code:
reg weight if day == 1 estimates store d1 reg weight if day == 2 estimates store d2 ...
PS: in this case there is only one coefficient, but I if there are multiple coefficients is there a way to select the coefficient that I would like to plot?
There is btw one method that I know it will work and that's by making a new data file as follows:
coefficient - day - ci_top - ci_bottom
1.1 - 1 - 1.5 - 0.9
...
and then plot this, but this seems a bit weird I think.
Thanks for your help!
Comment