FMR Ruco Interactive Map

The map below represents rent prices for apartments in their respective ZIP codes in Rutherford County. Hover over the ZIP code to view said prices, does anything stick out to you?

Code

# Making the map

Rent_Category_Map <- mapview(
  FMR_RuCo_Map,
  zcol = "Rent_Category",
  layer.name = "Rent category",
  popup = popupTable(
    FMR_RuCo_Map,
    feature.id = FALSE,
    row.numbers = FALSE,
    zcol = c("ZIP", "Studio", "BR1", "BR2", "BR3", "BR4")))

# Showing the map

Rent_Category_Map