# Install stringi if not installed
if (!requireNamespace("stringi", quietly = TRUE)) {
install.packages("stringi")
}
# Load the stringi package
library(stringi)
# Assuming 'datos' is your dataset
datos$ciudad <- stri_replace_all_fixed(datos$ciudad, " ", "")
These are the maps of the cities with the data points
V_suelo is equal to the price per square meter in USD.
mapview(bogota, zcol = "v_suelo")