Maps

Lab 3F

Directions: Follow along with the slides, completing the questions in blue on your computer, and answering the questions in red in your journal.

Space, Click, Right Arrow or swipe left to move to the next slide.

Informative and Fun!

Getting ready to map

Load your data!

load("___.Rda")

Build a Basic Map

mtns_leaf <- leaflet(____)

Including our data

addMarkers(map = ____, lng = ~____, lat = ~____)

Colorize

mtns <- mutate(____, state_colors = colorize(____))

Showing off our colors

addLegend(____, colors = ~unique(____), labels = ~unique(____))