stdUS: The standard population of the US in 2000

Description Usage Format Details References Examples

Description

The US population in 2000 for ages up to 100 years. Sexes are pooled.

Usage

1

Format

A data frame with the following columns.

age

Sigle-year resolution ages up to 100.

pop

The population within each age group.

prop

Proportion of the total population within each age group.

Details

This population data can be used to map age specific incidence rate vectors into summarizing scalars. It allows cancer incidence rates across different SEER registries to be compared without concerns of differences in age distributions of the populations.

References

http://seer.cancer.gov/stdpopulations/

Examples

1
2
3
4
5
6
library(SEERaBomb)
with(stdUS,plot(age,pop/1e6,type="l",xlab="Age",
     ylab="People (Millions)",main="US Population in 2000"))
library(dplyr)
stdUS%>%filter(age>=85)%>%summarize(weighted.mean(age,w=pop)) 
### so ave age >=85.0 is 89.4

SEERaBomb documentation built on Dec. 16, 2019, 1:21 a.m.