This map was meant for the Coursera project “Create a web page using R Markdown that features a map created with Leaflet.”
The data used come from Kaggle
The map shows hospital beds capacity in Italy in the wake of Covid 19 crisis.
Number of beds per 1000 inhabitants
Source: salute.gov.it
Year: 2018
data<-read.csv("hospital_beds_per_italy_v1.csv")
beds_map <- data %>%
leaflet() %>%
addTiles() %>%
addCircles(weight=1,radius=(data$beds)*500000)
beds_map