Skip to content
R for the Rest of Us Logo

Mapping with R

Welcome to Mapping with R

Transcript

Click on the transcript to go to that point in the video. Please note that transcripts are auto generated and may contain minor inaccuracies.

View code shown in video
library(rnaturalearth)

ne_countries()

library(tidyverse)

ne_countries() |>
  ggplot() +
  geom_sf()

library(mapview)

ne_countries() |>
  mapview()

Have any questions? Put them below and we will help you out!

You need to be signed-in to comment on this post. Login.