The vertical axis is not considered to be the y axis in graph bar or graph hbar or graph dot; it's a categorical axis.
This is documented but here are some examples to get you going.
This is documented but here are some examples to get you going.
Code:
. sysuse auto, clear (1978 automobile data) . graph hbar mpg, over(rep78) . graph hbar mpg, over(rep78, label(labsize(medlarge))) . graph hbar mpg, over(rep78, label(labsize(vlarge)))
Comment