Coursera - Developing Data Products

Web page using R Markdown that features a map created with Leaflet

Poland City & Town Population

library(leaflet)
dataPoland <- read.csv(file = "dataPoland.csv", header = TRUE, sep = ";")
leaflet() %>%
  addTiles() %>%
  addCircles(lng = dataPoland$Longitude, lat = dataPoland$Latitude, 
             label = paste(dataPoland$City, ", population: ", dataPoland$Population, sep = ""),
             weight = 1, radius = sqrt(dataPoland$Population)*30, color = "red") 

.