This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library(mapgl) | |
| library(tidycensus) | |
| options(tigris_use_cache = TRUE) | |
| tarrant_income <- get_acs( | |
| geography = "tract", | |
| variables = "B19013_001", | |
| state = "TX", | |
| county = "Tarrant", | |
| geometry = TRUE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library(mapgl) | |
| mapboxgl( | |
| style = mapbox_style("streets"), | |
| center = c(-87.61694, 41.86625), | |
| zoom = 15.99, | |
| pitch = 40, | |
| bearing = 20, | |
| antialias = TRUE | |
| ) |> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library(mapgl) | |
| maplibre( | |
| style = maptiler_style("bright"), | |
| center = c(-118.705, 34.027), | |
| zoom = 10 | |
| ) |> | |
| add_symbol_layer( | |
| id = "trailheads", | |
| source = list( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library(mapgl) | |
| mapboxgl( | |
| style = mapbox_style("satellite"), | |
| center = c(-122.514426, 37.562984), | |
| zoom = 17, | |
| bearing = -96, | |
| minZoom = 14 | |
| ) |> | |
| add_video_source( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library(tigris) | |
| library(mapgl) | |
| options(tigris_use_cache = TRUE) | |
| tarrant = tracts("TX", "Tarrant", cb = TRUE) | |
| mapboxgl(style = mapbox_style("light")) |> | |
| fit_bounds(tarrant, pitch = 75) |> | |
| add_fill_extrusion_layer( | |
| id = "tracts", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library(tidycensus) | |
| library(tigris) | |
| library(tidyverse) | |
| library(sf) | |
| library(ggiraph) | |
| library(patchwork) | |
| options(tigris_use_cache = TRUE) | |
| set.seed(123456) | |
| # Get a list of counties within the Austin CBSA using tigris |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library(tidycensus) | |
| library(tidyverse) | |
| library(showtext) | |
| font_add_google("Montserrat") | |
| showtext_auto() | |
| us_occ_pums <- get_pums( | |
| variables = c("OCCP", "WAGP"), | |
| state = "all", | |
| survey = "acs1", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library(tidyverse) | |
| library(tidycensus) | |
| library(showtext) | |
| font_add_google("Montserrat") | |
| showtext_auto() | |
| continental <- read_csv("https://www.ncei.noaa.gov/access/monitoring/climate-at-a-glance/county/mapping/110-tavg-202402-1.csv", skip = 4) |> | |
| mutate(avg_temp = as.numeric(Value), | |
| GEOID = map_chr(ID, ~{ | |
| last3 <- str_sub(.x, start = -3) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Requires tidycensus dev version | |
| # remotes::install_github("walkerke/tidycensus") | |
| library(tidyverse) | |
| library(tidycensus) | |
| library(showtext) | |
| font_add_google("Montserrat") | |
| showtext_auto() | |
| pres_results <- read_csv("https://raw.githubusercontent.com/tonmcg/US_County_Level_Election_Results_08-20/master/2020_US_County_Level_Presidential_Results.csv") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library(tidycensus) | |
| library(tidyverse) | |
| library(ggridges) | |
| library(showtext) | |
| font_add_google("Montserrat") | |
| showtext_auto() | |
| all_tract_incomes <- get_acs( | |
| geography = "tract", |