Hello Stata users;
I'm using the 13.1 version of Stata, and working with this data:
The idea is to draw a bar graph showing the age dependency ratio by country. The problem is that the command I'm using seems to be right: "graph bar (value), over (Country)" but that there's something with the variable "value" that's stopping me from getting the result.
Any help please? With thanks!
I'm using the 13.1 version of Stata, and working with this data:
Code:
* Example generated by -dataex-. To install: ssc install dataex clear input str11 Country float value "Austria" 30.2 "Belgium" 31.3 "Germany" 35.2 "Estonia" 32.2 "Greece" 36.7 "Spain" 30.8 "Finland" 37.8 "France" 34.8 "Croatia" 36.6 "Ireland" 23.6 "Italy" 38.4 "Lithuania" 31.2 "Luxembourg" 21.7 "Latvia" 33.9 "Netherlands" 31.8 "Portugal" 38.2 "Slovenia" 34.3 "Slovakia" 27.9 end
Any help please? With thanks!
Comment