Peer-graded Assignment: R Markdown and Leaflet

Create a web page using R Markdown that features a map created with Leaflet.

Host your webpage on either GitHub Pages, RPubs, or NeoCities.

Your webpage must contain the date that you created the document, and it must contain a map created with Leaflet. We would love to see you show off your creativity!

library(leaflet)
r_map <- leaflet() %>% addTiles() 
r_map <- r_map %>% addMarkers(lat=37.605925, lng=71.323608, popup="My Home")
r_map