Welcome to Mapping with R
This lesson is called Welcome to Mapping with R, part of the Mapping with R course. This lesson is called Welcome to Mapping with R, part of the Mapping with R course.
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.
Loading transcript...
View code shown in video
library(rnaturalearth)
ne_countries()
library(tidyverse)
ne_countries() |>
ggplot() +
geom_sf()
library(mapview)
ne_countries() |>
mapview()
Course Content
23 Lessons