Population of Finland: Difference between revisions

From Opasnet
Jump to navigation Jump to search
(→‎Formula: ovariable created)
 
(27 intermediate revisions by 3 users not shown)
Line 1: Line 1:
[[Category:Population characteristics]]
[[Category:Population characteristics]]
[[Category: CLAIH]]
[[Category: CLAIH]]
[[Category:Contains R code]]
[[Category:Code under inspection]]
{{variable|moderator = Virpi Kollanus}}
{{variable|moderator = Virpi Kollanus}}


==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,Description" 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>
 
# This is code Op_en2949/population on page [[Population of Finland]]
library(OpasnetUtils)
library(OpasnetUtils)


data <- tidy(op_baseGetData("opasnet_base", "Op_en2949"), objname = "population")
# Read population data 2018 from Statistics Finland
population <- new("ovariable", name = "population", data = data)
# Run this code on your computer to get the data in the answer.
print(population@data)
#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.put(population)
objects.store(population)
cat("Object population initiated. Save the page key for further use.\n")
cat("Ovariable population stored.\n")
</rcode>
</rcode>
Default run: mzGRDt4VreHPefKI


'''Population parameters per municipality
'''Population parameters per municipality
Line 135: 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