Hi Stata people;
I'm working with the 13.1 version of Stata, and currently, I have this data:
It is a data showing the size of the working population (people aged from 20 years to 64 years), in millions, for each country (variable "Country"), and for each year for that country (variable "Year"). My goal is to have a bar graph showing the evolution of that size of the population between 2025 and 2035, in percentage (wether it was an increase or a decline) for each country, I want to calculate the evolution rate of that figure for each country and put that on a graph bar. I do believe that having the figure for the year 2030 could also help in having better calculations.
Any help please? With many thanks!
I'm working with the 13.1 version of Stata, and currently, I have this data:
Code:
* Example generated by -dataex-. To install: ssc install dataex clear input str11 Country int Year long Working_Population_Size "Austria" 2025 5484805 "Austria" 2030 5355853 "Austria" 2035 5240943 "Belgium" 2025 6818769 "Belgium" 2030 6826206 "Belgium" 2035 6862112 "Bulgaria" 2025 4002863 "Bulgaria" 2030 3797467 "Bulgaria" 2035 3622577 "Czechia" 2025 6393110 "Czechia" 2030 6277926 "Czechia" 2035 6186985 "Germany" 2025 49745126 "Germany" 2030 47791925 "Germany" 2035 46073050 "Denmark" 2025 3429683 "Denmark" 2030 3411768 "Denmark" 2035 3350290 "Estonia" 2025 793657 "Estonia" 2030 780194 "Estonia" 2035 772710 "Greece" 2025 5976428 "Greece" 2030 5697049 "Greece" 2035 5330785 "Spain" 2025 29364596 "Spain" 2030 29366370 "Spain" 2035 28877088 "Finland" 2025 3156273 "Finland" 2030 3131609 "Finland" 2035 3126658 "France" 2025 37683453 "France" 2030 37588765 "France" 2035 37460086 "Croatia" 2025 2185274 "Croatia" 2030 2081006 "Croatia" 2035 2001075 "Hungary" 2025 5723325 "Hungary" 2030 5659115 "Hungary" 2035 5506887 "Ireland" 2025 3091817 "Ireland" 2030 3211759 "Ireland" 2035 3315087 "Italy" 2025 34393569 "Italy" 2030 33625169 "Italy" 2035 32478515 "Lithuania" 2025 1697684 "Lithuania" 2030 1575211 "Lithuania" 2035 1481324 "Latvia" 2025 1063358 "Latvia" 2030 982122 "Latvia" 2035 919676 "Netherlands" 2025 10548429 "Netherlands" 2030 10452819 "Netherlands" 2035 10296713 "Poland" 2025 22599106 "Poland" 2030 21864912 "Poland" 2035 21367713 "Portugal" 2025 5998876 "Portugal" 2030 5771592 "Portugal" 2035 5513315 "Romania" 2025 10909511 "Romania" 2030 10601538 "Romania" 2035 9996723 "Sweden" 2025 6018870 "Sweden" 2030 6176791 "Sweden" 2035 6319983 "Slovenia" 2025 1231363 "Slovenia" 2030 1205780 "Slovenia" 2035 1189029 "Slovakia" 2025 3325406 "Slovakia" 2030 3200343 "Slovakia" 2035 3121427 end
Any help please? With many thanks!
Comment