|
|
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
1: Aggregate the numerator data. |
||
| SAS
PROGRAMMING click here to download SAS program |
||
| The
file rawcase.csv is a comma delimited file containing all deaths occurring
in Suffolk County, Massachusetts, between 1989 and 1992. Each person who
died is represented by one line in the data file. The variable “AGE”
gives the age at death. The variable “AREAKEY” is the geocode
to the census tract level. |
Data from public health databases are typically formatted such that each record represents one person (or case report). Once these data have been geocoded, they need to be aggregated before linking to denominator and ABSM data. Before aggregating, however, one should exclude all records that are not geocoded, do not meet the case definition, or are missing data on the important covariates (e.g. age, in the case of simple age-standardized analyses; age, sex, and race/ethnicity in the case of more complex stratified analyses). One can think of the basic unit of aggregation as a cell, defined by age and other covariates, within an area/geocode. Once aggregated, this cell within an area can be linked to a relevant population denominator. The cell contains a count of all cases within that area that meet the specified age and other covariate criteria. Since our goal is eventually to create rates, we call this count of cases the “numerator.” |
PROC
IMPORT OUT= rawcase
DATAFILE= "G:\monograph\example\rawcase.csv" DBMS=CSV REPLACE; GETNAMES=YES; DATAROW=2; RUN; DATA
Step1a ; IF
0<=AGE<15 THEN AGECAT=1 ; PROC
FREQ DATA=Step1a NOPRINT ; |
| 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. |
||