Hi,

I'm trying to plot a variable called "teleworking rate" by region. So my data looks like:

tw_rate region
20 Tarapacá
17.3 Antofagasta
15 Atacama
33.7 Coquimbo
. .
. .
. .
25.4 Ñuble

I used the following code:

graph hbar tw_rate, over(region) blabel(bar, format(%3.1f)) ytitle("%")

and I have this graph:

The problem is that I can't see the region names, so how can I move the vertical axis in order to see all these names?

Thanks!