Maps in R with Leaflet
Leaflet = JavaScript open source library for interactive maps.You can find an example I made here, the entire code and the data to reproduce it are on my Github.
#library
library(leaflet)
#empty map
leaflet() %>% addTiles()
#position
my_map %>%
...
massyfigini.hashnode.dev2 min read