# NOT RUN {
# Download the most current month unemployment statistics on a county level.
df <- get_bls_county()
# Map the unemployment rate by county.
bls_gg <- map_bls(map_data = df, fill_rate = "unemployed_rate",
labtitle = "Unemployment Rate")
bls_gg
# Map the unemployment rate for Florida and Alabama.
df <- get_bls_county(stateName = c("Florida", "Alabama"))
bls_gg <- map_bls(map_data=df, fill_rate = "unemployed_rate",
stateName = c("Florida", "Alabama"))
bls_gg
# Downlaod state employment statistics for April 2016.
df <- get_bls_state("April 2016", seasonality = TRUE)
# Map the unemployment rate from data set.
bls_gg <- map_bls(map_data = df, fill_rate = "unemployed_rate",
labtitle = "Unemployment Rate")
bls_gg
# }
# NOT RUN {
# }
Run the code above in your browser using DataLab