Stata如何合并两个轴的条形图?

* Figure: combined bar plots with two axes * Load data * --------- use "http://ds.epiman.cn/uploads/2022/06/bar-two-axes.dta", clear * Adjust variable for bar position gen x = int1mo+.5 * Create individual graphs * ------------------------ foreach foodGroup in animal fruit gra...

Stata如何绘制两变量的条形图?

上图的Stata代码如下: * Figures: bar plot of two variables global graph_opts1 bgcolor(white) graphregion(color(white)) /// legend(region(lc(none) fc(none))) ylabel(,angle(0) nogrid) /// title(, justification(left) color(black) span pos(11)) /// subtitle(, justification(left) c...