I employ data from Morch et al. (2000, JFE),
and use command below
to draw the following graph

As you can see, the label size of the country names (on the vertical axis) is too large. Any suggestion to make the size smaller (say, vsmall)?
Code:
* Example generated by -dataex-. To install: ssc install dataex clear input str13 cn float r2 "Australia" 6.4 "Austria" 9.3 "Belgium" 14.6 "Brazil" 16.1 "Canada" 6.2 "Chile" 20.9 "China" 45.3 "Columbia" 20.9 "Czech" 18.5 "Denmark" 7.5 "Finland" 14.2 "France" 7.5 "Germany" 11.4 "Greece" 19.2 "Holland" 10.3 "Hong Kong" 15 "India" 18.9 "Indonesia" 14 "Ireland" 5.8 "Italy" 18.3 "Japan" 23.4 "Korea" 17.2 "Malaysia" 42.9 "Mexico" 29 "New Zealand" 6.4 "Norway" 11.9 "Pakistan" 17.5 "Peru" 28.8 "Philippines" 16.4 "Poland" 56.9 "Portugal" 6.8 "Singapore" 19.1 "South Africa" 19.7 "Spain" 19.2 "Sweden" 14.2 "Taiwan" 41.2 "Thailand" 27.1 "Turkey" 39.3 "U.K." 6.2 "United States" 2.1 end
HTML Code:
graph hbar (asis) r2, over(cn, sort(r2) descending) legend(off)
As you can see, the label size of the country names (on the vertical axis) is too large. Any suggestion to make the size smaller (say, vsmall)?
Comment