Plotting UK Maps with ggplot2 (Part 2)

Wait 5 sec.

[This article was first published on pacha.dev/blog, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)Want to share your content on R-bloggers? click here if you have a blog, or here if you don't. Because of delays with my scholarship payment, if this post is useful to you I kindly ask a minimal donation on Buy Me a Coffee that shall be used to continue my Open Source efforts. If you need an R package or Shiny dashboard for your team, you can email me or inquiry on Fiverr. The full explanation is here: A Personal Message from an Open Source ContributorContinuing with the previous blog question ‘how can you plot a map of the UK with ggplot2?’I started working more on ukmaps for easy plotting of administrative and electoral areas.You can install the development version of ukmaps (v0.0.2) with:remotes::install_github("pachadotdev/ukmaps")ExamplesYes/No map of London administrative areaslibrary(ukmaps)library(dplyr)library(ggplot2)d % mutate(is_london = if_else(region == "London", "Yes", "No"))pal