Population of Finland: Difference between revisions

From Opasnet
Jump to navigation Jump to search
(data table created)
 
(30 intermediate revisions by 4 users not shown)
Line 1: Line 1:
[[Category:Population characteristics]]
[[Category: CLAIH]]
[[Category:Contains R code]]
[[Category:Code under inspection]]
{{variable|moderator = Virpi Kollanus}}
{{variable|moderator = Virpi Kollanus}}
[[Category: CLAIH]]


==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" obs="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 44: Line 33:
'''Total population in Finland
'''Total population in Finland


<rcode>
<rcode name="population" embed=1>
Age <- as.factor(c("0-4","5-9","10-14","15-19","20-24","25-29","30-34","35-39","40-44","45-49","50-54","55-59",
 
"60-64","65-69","70-74","75-79","80+","All"))
# This is code Op_en2949/population on page [[Population of Finland]]
Result <- c(298114,287786,302423,334636,324472,344634,337970,310768,358754,378341,378037,388165,396886,258319,225043,
library(OpasnetUtils)
179671,247408,5351427)
 
pop <- data.frame(Age,Result)
# Read population data 2018 from Statistics Finland
pop
# Run this code on your computer to get the data in the answer.
#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-79", "80+", "Total population", "Females", "Males"),
#                        N.of.people=c(
#                          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ä>=10 & vae$Ikä <15]), # Age 5-14
#                                        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ä>=65 & vae$Ikä <80]), # Age 65-79
#                                        sum(vae$X2018[vae$Ikä>=80 & vae$Ikä <101]), # Age 80+
#                                        sum(vae$X2018), # Total population
#                                        sum(vae$X2018[vae$Sukupuoli=="Naiset"]), #Females
#                                        sum(vae$X2018[!(vae$Sukupuoli=="Naiset")]) #Non female
#                                        )
#                          )
 
# Save the data presented in the table on this page as an ovariable
 
population <- Ovariable(
  "population",
  ddata="Op_en2949", subset="Population"
)
 
objects.store(population)
cat("Ovariable population stored.\n")
</rcode>
</rcode>


Line 131: Line 147:


<references/>
<references/>
==Related files==
{{mfiles}}

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