I have been trying to make a decent plot similar to the included .do
file below, but I cannot get the organ names ("Nose", "Lung", "Kidney",
..) below the bars. Stata insists putting "mean of BiopNose", etc. when
I ask for labels, and puts in in the wrong place.
I am aware that the plot contains very little information.
Thanks,
Arnold Kester
==============================================
* barplot problem
clear
set obs 100
gen BiopNose= (uniform()<.6)
gen BiopKidney= (uniform()<.3)
gen BiopLung= (uniform()<.5)
gen BiopSkin= (uniform()<.2)
gen BiopMuscle= (uniform()<.2)