FL_house_values: Median house values Florida counties

Description Usage Format Examples

Description

Median house values in Florida counties, from the 2015 five-year American Community Survey.

Usage

1

Format

An object of class sf (inherits from data.frame) with 67 rows and 6 columns.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
library(ggplot2)
library(colorspace)

# B25077_001: Median house value in the past 12 months (in 2015 Inflation-adjusted dollars)

# univariate scale
ggplot(FL_house_values, aes(fill = estimate)) +
  geom_sf(color = "gray30", size = 0.2) +
  coord_sf(xlim = c(-88, -79.8), ylim = c(24.1, 31.2), datum = NA) +
  scale_fill_continuous_carto(
    palette = "Sunset", rev = TRUE,
    name = "median house values",
    guide = guide_colorbar(
      direction = "horizontal",
      label.position = "bottom",
      title.position = "top",
      barwidth = grid::unit(2.0, "in")
    )
  ) +
  theme_void() +
  theme(
    legend.title.align = 0.5,
    legend.text.align = 0.5,
    legend.justification = c(0, 0),
    legend.position = c(0.1, 0.3)
  )

# bivariate value-suppressing uncertainty scale
ggplot(FL_house_values, aes(fill = zip(estimate, moe/estimate))) +
  geom_sf(color = "gray30", size = 0.2) +
  coord_sf(xlim = c(-88, -79.8), ylim = c(24.1, 31.2), datum = NA) +
  bivariate_scale(
    "fill", "bivariate_scale",
    pal_carto_vsup(palette = "Sunset", rev = TRUE),
    guide = "colourbox",
    name = c("median house values", "uncertainty")
  ) +
  theme_void() +
  theme(
    legend.title.align = 0.5,
    legend.text.align = 0.5,
    legend.justification = c(0, 0),
    legend.position = c(0.15, 0.2)
  )

clauswilke/multiscales documentation built on Jan. 8, 2022, 10:49 p.m.