Hi,
I'm trying to make a chart with standard errors over time, over two categories.
I've managed to make one chart for each with the following commands
serrbar politye see t if outcome3==1, scale (1.96) name(se1, replace)
serrbar politye see t if outcome3==0, scale (1.96) name(se0, replace)
(so outcome3 is the category, politye the mean, see the standard error, t the time variable)
I would like to combine the two into one chart. However serrbar does not allow the by() option. Graph combine gives me two charts next to each other, and I can't use twoway because serrbar is not twoway.
What should I do?
Thank you!
I'm trying to make a chart with standard errors over time, over two categories.
I've managed to make one chart for each with the following commands
serrbar politye see t if outcome3==1, scale (1.96) name(se1, replace)
serrbar politye see t if outcome3==0, scale (1.96) name(se0, replace)
(so outcome3 is the category, politye the mean, see the standard error, t the time variable)
I would like to combine the two into one chart. However serrbar does not allow the by() option. Graph combine gives me two charts next to each other, and I can't use twoway because serrbar is not twoway.
What should I do?
Thank you!
Comment