Hi all,
I am trying to make a simple bar chart. All of my means are very close together, between 3.2 and 2.9, and I'm hoping to get my ticks on my Y axis to change --right now it's showing 0 through 3, with the 3.2 going above. A range of 2 through 4 might be a little better, or even 2.5 to 3.5, or something like that. Here's the current code I'm working with:
EDIT: I have tried adding in ylabel(2.5(0.25)3.5) but the axis still starts at 0, is there a way to override that?
I am trying to make a simple bar chart. All of my means are very close together, between 3.2 and 2.9, and I'm hoping to get my ticks on my Y axis to change --right now it's showing 0 through 3, with the 3.2 going above. A range of 2 through 4 might be a little better, or even 2.5 to 3.5, or something like that. Here's the current code I'm working with:
Code:
graph bar (mean) flu, over(visit) blabel(bar) ytitle(flu) ylabel(#3) title(Mean flu by visitation level)
Comment