Plotting UK Maps with ggplot2 v0.0.4

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 ContributorYou can send me questions for the blog using this form.InstallationYou can install the development version of ukmaps like so:remotes::install_github("pachadotdev/ukmaps")ExamplesYes/No map of London administrative areas:library(ukmaps)library(dplyr)library(ggplot2)d % mutate( region_name = if_else(is.na(region_name), "Notr Available", region_name), is_london = if_else(region_name == "London", "Yes", "No") )pal % mutate(is_barnet = if_else(lad_name == "Barnet", "Yes", "No"))pal % mutate( is_golders_green = if_else(ward_name == "Golders Green", "Yes", "No") )pal