I am using the following code for drawing a plot on a graph in Stata. I want to draw multiple plots on the same graph. Is that possible? Can anyone kindly tell me what to do?
What I want to do is to have multiple plots of the following types in the same graph.
Further clarification: There will be multiple means and CIs for each value of X, i.e. one mean and CI for each simulation model. All the means and CIs for one simulation model will be connected together.
clear
input str2 varname mean upper lower
x1 30 25 35
x2 50 20 80
x3 60 50 70
x4 60 55 65
x5 65 55 75
end
encode varname, gen(varname1)
scatter mean varname1, xlabel(, valuelabel) || rcap upper lower varname1 || line upper mean lower varname1
scatterfor the dots,rcapfor the vertical lines, andlinefor the horizontal lines). Just keep on going with the command, adding in each part you want to overlay. If you want them side-by-side instead of overlaid, read the help forgraph combine. – whuber Dec 19 '11 at 21:54