Ohio lung cancer data for 1968, 1978 and 1988.

ohio_lung

Format

An sf data frame with 88 rows, 42 variables, and a geometry column:

FIPSNO

County FIPS code

AREA

Area of polygon

PERIMETER

Perimeter of polygon

RECORD_ID

Unique ID

COUNTYID

County ID

NAME

County name

LGRyy

Lung cancer cases for gender G (male: M or female: F) and race R (white:W or black:B) in year yy (1968, 1978, 1988)

POPGRyy

Population at risk for gender G (male: M or female: F) and race R (W or B) in year yy (1968, 1978, 1988)

LGyy

Total lung cancer cases for gender G (male: M or female: F) and each year (1968, 1978, 1988)

POPGyy

Total population at risk by gender G (male: M or female: F) and year yy (1968, 1978, 1988)

geometry

POLYGON

Source

https://geodacenter.github.io/data-and-lab/ohiolung/

Details

Sf object, units in m. EPSG 32617: WGS 84 / UTM Zone 17N.

Examples

if (requireNamespace("sf", quietly = TRUE)) { library(sf) data(ohio_lung) plot(ohio_lung["POPM88"]) }