Annual Personal Income by County - CAINC1

Data - BEA


Info

Last observation: 2017-01-01 (N = 9519)

First observation: 1969-01-01 (N = 9507)

Last data update: 25 jul 2026, 12:36. Last compile: 17 aoû 2026, 21:54

Geography

Code
CAINC1 |>
  group_by(GeoFIPS, GeoName) |>
  summarise(Nobs = n()) |>
  head(10) %>%
  {if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}

Income

Code
CAINC1 |>
  filter(GeoFIPS == "04013",
         LineCode == 1) |>
  select(date, income = value) |>
  ggplot() + geom_line(aes(x = date, y = income)) +
  theme_minimal() + xlab("") + ylab("") 

Income Per Capita

Code
CAINC1 |>
  filter(GeoFIPS == "04013",
         LineCode == 3) |>
  select(Description, Unit, date, value) |>
  ggplot() + geom_line(aes(x = date, y = value)) +
  theme_minimal() + xlab("") + ylab("")