Stata如何绘制多变量水平条形图?

* Figure: Horizontal bar with multiple variables

    global  graph_opts ///
            title(, justification(left) ///
            color(black) span pos(11)) ///
            graphregion(color(white)) ///
            ylab(,angle(0) nogrid) ///
            xtit(,placement(left) justification(left)) ///
            yscale(noline) xscale(noline) ///
            legend(region(lc(none) fc(none)))
			
    global  pct `" 0 "0%" .25 "25%" .5 "50%" .75 "75%" 1 "100%" "'
    
    qui do "http://ds.epiman.cn/uploads/2022/06/betterbar.ado"	

    use "http://ds.epiman.cn/uploads/2022/06/bar-better.dta" , clear

    betterbar ///
        ??_correct  checklist  refer med_any  med_class_any_6 med_class_any_16 ///
        , ///
        ${graph_opts} ///
        over(facility_type) ///
        xlab(${pct}) ///
        barlab(mean) ///
        legend(r(1) symxsize(small) symysize(small))
				
* Have a lovely day!
* Source: https://worldbank.github.io/stata-visual-library/bar-better.html