Dear Statalist:
I am planning to create some coefficient plots. I thought I would use -coefplot-, a user-written command by Ben Jann. It's got great documentation; you can see it here: http://repec.sowi.unibe.ch/stata/coe...g-started.html.
I was hoping to create coefficient plots using different variables from different models. You can plot the same variables from multiple models fairly easily by storing the estimates and then using syntax like:
But if I wanted to plot x1 from model 1, and x2 from model2, and x3 from model 3...how would I do that? I believe that the variable names would be the same across models, and so if I use the keep option for x1 it would post it for all three models. I wasn't able to find details on that in the documentation, and so I was wondering if anyone had an idea of how to do it.
Thanks for your time in advance.
I am planning to create some coefficient plots. I thought I would use -coefplot-, a user-written command by Ben Jann. It's got great documentation; you can see it here: http://repec.sowi.unibe.ch/stata/coe...g-started.html.
I was hoping to create coefficient plots using different variables from different models. You can plot the same variables from multiple models fairly easily by storing the estimates and then using syntax like:
Code:
coefplot model1 model2 model3, keep(x1 x2 x3) xline(0)
Thanks for your time in advance.
Comment