How can I plot series of estimates and their confidence interval to look like this attached image. I want to test confidence intervals for non-inferiority and want to represent graphically and make a xline at -10
example data is:
clear
input str (ant) long(e ub lb)
a -5 -11 1
b 2 -5 4
c 11 8 15
end
example data is:
clear
input str (ant) long(e ub lb)
a -5 -11 1
b 2 -5 4
c 11 8 15
end
Comment