ipop: Populations for all Australian states, 2001-2006

Description Details Source Examples

Description

This is a list of data frames each containing indigenous estimated resident population (ERP) data, by state, sex and single-year of age, from 0 to 115.

Details

The first data frame contains cohort-interpolated Indigeneous ERP, estimated from the 2001, 2006 and 2011 Census-based Indigenous ERPs. Interpolation is linear between years for each cohort.

The second data frame contains age-interpolated Indigeneous ERP, estimated from the 2001, 2006 and 2011 Census-based Indigenous ERPs. Interpolation is linear between years for each age.

The third data frame contains backcasts of 2011 census-based Indigenous ERPs. For each state, the total populations are split into males and females using the sex ratios for each age computed from averaged census populations for 2001, 2006 and 2011.

Each data frame contains columns State, Sex, Age, 2001, ... 2011.

Source

ABS Cat 3238.0

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
plot(0:115,
  subset(ipop$Backcast, State=="NT" & Sex=="Male")[,"2003"],
  type="l",
  xlab="Age",
  ylab="Population",
  main="Northern Territory Male 2003",
  col="blue")
lines(0:115,
  subset(ipop$Interpolated, State=="NT" & Sex=="Male")[,"2003"],
  col="red")
lines(0:115,
  subset(ipop$Cohort, State=="NT" & Sex=="Male")[,"2003"],
  col="green")

legend("topright",
  lty=1,
  col=c("blue","red","green"),
  legend=c("Backcast","Interpolated","Cohort"))

robjhyndman/indmortality documentation built on May 20, 2019, 6:48 p.m.