|
|
The
Public Health Disparities Geocoding Project Monograph |
|
| Geocoding
and Monitoring US Socioeconomic Inequalities in Health: An introduction to using area-based socioeconomic measures |
WHY? |
READ
MORE |
HOW
TO |
TRY
IT OUT! |
TOOLS |
||||||
| STEP
BY STEP COMPARISON |
||||||||
| Step
2: Aggregate the denominator data. |
||
| SAS
PROGRAMMING click here to download SAS program |
||
| The file rawdenom.csv is a comma-delimited file containing the estimated population count in 31 age categories for the 189 census tracts in Suffolk County, from the 1990 U.S. Census. Each census tract is represented by one line in the data file, with the 31 age categories arrayed horizontally.
|
Denominator data at the census tract level typically come from the decennial census, which gives population counts in 31 age categories (<1, 1-2, 3-4, 5, 6, 7-9, 10-11, 12-13, 14, 15, 16, 17, 18, 19, 20, 21, 22-24, 25-29, 30-34, 35-39, 40-44, 45-49, 50-54, 55-59, 60-61, 62-64, 65-69, 70-74, 75-79, 80-84, 85+). For the purposes of age standardization, these age categories need to be re-aggregated to match the age categories used for categorizing case data (numerators, above) and the age categories from the standard million reference population. Additionally, when using case data from multiple years, in order to calculate an average annual incidence rate, one needs to use a person-time denominator (population count multiplied by number of years of case data). | PROC IMPORT OUT= rawdenom DATAFILE= "G:\monograph\example\rawdenom.csv" DBMS=CSV REPLACE; GETNAMES=YES; DATAROW=2; RUN; DATA
Step2a ; AGECAT1= SUM(OF
P0130001-P0130009) ;
ARRAY AGES [5] AGECAT1-AGECAT5 ; DO I=1 TO 5 ; DROP I AGECAT1-AGECAT5
P0130001-P0130031 ; |
| This
work was funded by the National Institutes of Health (1RO1HD36865-01)
via the National Institute of Child Health & Human Development (NICHD)
and the Office of Behavioral & Social Science Research (OBSSR). |
||
| Copyright
© 2004 by the President and Fellows of Harvard College - The Public
Health Disparities Geocoding Project. |
||