Population of Finland: Difference between revisions

From Opasnet
Jump to navigation Jump to search
 
(19 intermediate revisions by the same user not shown)
Line 7: Line 7:
==Question==
==Question==


What is the population of Finland?
What is the population size and age structure of the population of Finland? What is the life expectancy in the population?


==Answer==
==Answer==


<t2b index="Age,Observation" locations="Amount" unit="#">
<t2b name="Population" index="Age,Observation" locations="Result" unit="#">
0-4|298114
0-4|267686
5-9|287786
5-9|309010
10-14|302423
10-14|305538
15-19|334636
15-64|3430848
20-24|324472
65-79|902127
25-29|344634
80+|302710
30-34|337970
35-39|310768
40-44|358754
45-49|378341
50-54|378037
55-59|388165
60-64|396886
65-69|258319
70-74|225043
75-79|179671
80-|247408
All|5351427
</t2b>
</t2b>


== Definition ==
== Rationale ==


* [http://pxweb2.stat.fi/database/StatFin/vrm/vaerak/vaerak_fi.asp Statistics of Finland]
* [http://pxweb2.stat.fi/database/StatFin/vrm/vaerak/vaerak_fi.asp Statistics of Finland]
* Population of Finland during the H1N1 pandemic and related narcolepsy cluster (~2009-2010?)<ref name="THL report">Kansallisen
* Population of Finland in the end of 2018
narkolepsiatyöryhmän väliraportti 31.1.2011</ref> (See [[H1N1 vaccination coverage in Finland]] also)


=== Unit ===
=== Data===


<nowiki># persons</nowiki>
In 2017, the life expectancy for children born was 78.7 years for males and 84.2 years for females.


=== Formula ===
=== Formula ===
Line 46: Line 33:
'''Total population in Finland
'''Total population in Finland


<rcode>
<rcode name="population" embed=1>
library(OpasnetUtils)
 
data <- tidy(op_baseGetData("opasnet_base", "Op_en2949"), objname = "population")
population <- new("ovariable", name = "population", data = data)
print(population@data)
 
objects.put(population)
cat("Object population initiated. Save the page key for further use.\n")
</rcode>
 
Default run: mzGRDt4VreHPefKI
 
'''Total population of Finland, taken from Statistics Finland.
 
<rcode name="population">


# This is code Op_en2949/population on page [[Population of Finland]]  
# This is code Op_en2949/population on page [[Population of Finland]]  
library(OpasnetUtils)
library(OpasnetUtils)


# Read population data 2018 from Statistics Finland
# Read population data 2018 from Statistics Finland
vae <- read.csv("https://pxnet2.stat.fi:443/PXWeb/sq/ac3373d0-e303-4c67-b32a-73c6d26df809", skip=2, fileEncoding="ISO-8859-1")
# Run this code on your computer to get the data in the answer.
vae$Ikä <- as.numeric(gsub(" -","",as.character(vae$Ikä)))
#vae <- re#ad.csv("https://pxnet2.stat.fi:443/PXWeb/sq/ac3373d0-e303-4c67-b32a-73c6d26df809", skip=2, fileEncoding="ISO-8859-1")
#vae$Ikä <- as.numeric(gsub(" -","",as.character(vae$Ikä)))
    
    
population <-data.frame(Age=c("0-4", "5-9", "10-14", "15-24", "25-64", "65-74", "70+", "Total population", "Females", "Males"),
#population <-data.frame(Age=c("0-4", "5-9", "10-14", "15-24", "25-64", "65-79", "80+", "Total population", "Females", "Males"),
                        N.of.people=c(
#                        N.of.people=c(
                          sum(vae$X2018[vae$Ikä>=0 & vae$Ikä <5]), # Age 0-4
#                          sum(vae$X2018[vae$Ikä>=0 & vae$Ikä <5]), # Age 0-4
                          sum(vae$X2018[vae$Ikä>=5 & vae$Ikä <10]), # Age 5-9
#                          sum(vae$X2018[vae$Ikä>=5 & vae$Ikä <10]), # Age 5-9
                                        sum(vae$X2018[vae$Ikä>=10 & vae$Ikä <15]), # Age 5-14
#                                        sum(vae$X2018[vae$Ikä>=10 & vae$Ikä <15]), # Age 5-14
                                        sum(vae$X2018[vae$Ikä>=15 & vae$Ikä <25]), # Age 15-24
#                                        sum(vae$X2018[vae$Ikä>=15 & vae$Ikä <25]), # Age 15-24
                                        sum(vae$X2018[vae$Ikä>=25 & vae$Ikä <65]), # Age 25-64
#                                        sum(vae$X2018[vae$Ikä>=25 & vae$Ikä <65]), # Age 25-64
                                        sum(vae$X2018[vae$Ikä>=65 & vae$Ikä <75]), # Age 65-74
#                                        sum(vae$X2018[vae$Ikä>=65 & vae$Ikä <80]), # Age 65-79
                                        sum(vae$X2018[vae$Ikä>=70 & vae$Ikä <101]), # Age 70+
#                                        sum(vae$X2018[vae$Ikä>=80 & vae$Ikä <101]), # Age 80+
                                        sum(vae$X2018), # Total population
#                                        sum(vae$X2018), # Total population
                                        sum(vae$X2018[vae$Sukupuoli=="Naiset"]), #Females
#                                        sum(vae$X2018[vae$Sukupuoli=="Naiset"]), #Females
                                        sum(vae$X2018[!(vae$Sukupuoli=="Naiset")]) #Non female
#                                        sum(vae$X2018[!(vae$Sukupuoli=="Naiset")]) #Non female
                                        )
#                                        )
                          )
#                          )


cat(population)
# Save the data presented in the table on this page as an ovariable


population <- Ovariable(
population <- Ovariable(
   "population",
   "population",
   data=population
   ddata="Op_en2949", subset="Population"
)
)


Line 174: Line 147:


<references/>
<references/>
==Related files==
{{mfiles}}<!-- __OBI_TS:1369642917 -->

Latest revision as of 05:56, 28 August 2019



Question

What is the population size and age structure of the population of Finland? What is the life expectancy in the population?

Answer

Population(#)
ObsAgeResult
10-4267686
25-9309010
310-14305538
415-643430848
565-79902127
680+302710

Rationale

Data

In 2017, the life expectancy for children born was 78.7 years for males and 84.2 years for females.

Formula

Total population in Finland

+ Show code

Population parameters per municipality

Which year (1980-2010)?:

Which parameter to show?:

+ Show code

See also

References