This is a test of Leaflet & R vs. Tableau for simple mapping
200 markers are plotted using map defaults with no other formatting applied.
library(leaflet)
locations <- read.csv("locations.csv")
leaflet() %>%
addTiles() %>%
addMarkers(data = locations, lng = ~ lon, lat = ~ lat)