powered by
Data on a sample of 500 people from the Cleveland, OH and Sacramento, CA metro areas.
cle_sac
A data frame with 500 observations representing people on the following 8 variables.
Year the data was collected.
State where person resides.
City.
Age.
Sex.
Race.
Marital status.
Personal income.
library(ggplot2) ggplot(cle_sac, aes(x = personal_income)) + geom_histogram(binwidth = 20000) + facet_wrap(~city)
Run the code above in your browser using DataLab