I have the data below of the Variable X of cities within the UK. How can i plot it within the Upper and Lower Confidence intervals
Code:
* Example generated by -dataex-. To install: ssc install dataex
clear
input str10 City double(Upper_CI Lower_CI) byte X
"London"     .55923 .3321 70
"Manchester" .64872   .56 54
"Brighton"    .8376  .345 45
"Bradford"      .62 .3076 20
end

Best,

Briddget