Hi,

I would be grateful for some advice please. I have done a multi level regression analysis. Level 1=id, level 2=spec and outcome measure= outcome. I want to present the results in a caterpillar plot with odds ratio and CI presented for each spec. I can't seem to find how to do this, any advice appreciated or if there is an alternative option to display the odds ratios graphically?

I have attached an example of the data layout, the real dataset has around 30,000 outcomes in.

Thanks,
Molly

Code:
* Example generated by -dataex-. To install: ssc install dataex
clear
input float(id outcome spec)
 1 1  0
 2 1  1
 3 0  2
 4 4  3
 4 2  3
 4 2  3
 5 1  4
 5 0  4
 5 1  4
 5 1  4
 6 0  5
 6 4  5
 6 0  5
 6 2  5
 6 1  5
 6 0  5
 7 0  6
 7 3  6
 8 4  7
 9 4  8
10 0  9
10 0  9
10 2  9
10 0 10
end
------------------ copy up to and including the previous line ----------------