Peer-graded Assignment : R Markdown and Leaflet

Introduction

This document present the Peer-graded Assignment: R Markdown and Leaflet for the course “Developing Data Products” from Coursera.

The assignments requierments are the following:

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.

Code

if(!require(leaflet)) install.packages("leaflet", repos='http://cran.us.r-project.org')
## Загрузка требуемого пакета: leaflet
library(leaflet)

my_map <- leaflet() %>% addTiles()
my_map <- my_map %>% addMarkers(lng=37.620393, lat=55.753960, popup="Red Square")
my_map