| cle_sac {openintro} | R Documentation | 
Cleveland and Sacramento
Description
Data on a sample of 500 people from the Cleveland, OH and Sacramento, CA metro areas.
Usage
cle_sac
Format
A data frame with 500 observations representing people on the following 8 variables.
- year
- Year the data was collected. 
- state
- State where person resides. 
- city
- City. 
- age
- Age. 
- sex
- Sex. 
- race
- Race. 
- marital_status
- Marital status. 
- personal_income
- Personal income. 
Examples
library(ggplot2)
ggplot(cle_sac, aes(x = personal_income)) +
  geom_histogram(binwidth = 20000) +
  facet_wrap(~city)
[Package openintro version 2.5.0 Index]