Create my first map
library(leaflet)
These are the most important cities in Colombia
df <- read.csv("COLOMBIA_CITIES.csv") df %>% leaflet() %>% addTiles() %>% addMarkers( lat = df$LAT, lng = df$LONG, popup = df$CITY)