Maps

Lab 3F

Directions: Follow along with the slides and answer the questions in red font in your journal.

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(____))