Stata重叠直方图重叠处颜色不同

Stata Overlapping Histograms Different Color Where Overlap

当我们在同一个图上有两个直方图时,是否可以在重叠部分使用不同的颜色?我想到了一些可以在 SAS 中完成的事情:

http://blogs.sas.com/iml/uploads/dualhist.png

换句话说,其中一个直方图是半透明的。

虽然可以说有很多更好的方法来比较分布,但这显示了一些小技巧:

sysuse auto, clear

twoway histogram mpg if foreign, width(2) start(12) blcolor(red) bfcolor(none) fraction || histogram mpg if !foreign, width(2) start(10) barw(1.8) bfcolor(none) blcolor(blue) fraction ytitle(Proportions) legend(order(1 "Foreign" 2 "Domestic") col(1) pos(1) ring(0))