Skip to content

Instantly share code, notes, and snippets.

View BB1464's full-sized avatar

Oluwafemi OYEDELE BB1464

View GitHub Profile
@BB1464
BB1464 / World_Map.R
Created July 9, 2022 07:39
My demo on GeoSpatial Analysis in R
library(tidyverse)
library(rnaturalearthdata)
library(sf)
library(ggthemes)
country_sf <- countries110 %>%
st_as_sf()
ggplot() +
geom_sf(data = country_sf,