Good New Year!
Actually I want to show on a map CoVid19 cases. I have the adresses of each case. I plot for each case a piont on the map. This works fine!
Some adresses have more than one case (e.g. one familiy). Therefor I want to control the size of the points via the cex-option. This again workes fine for each single map.
But a cex = 1 in one map does not automatically mean that points with cex = 1 in the next map (eg. the next day) have the same size.
How can I control it, that cex=1 is the same size for each map (day)?
Simple examples:
breweries1 <- breweries %>% filter(number.of.types == 1)
mapview(breweries1, cex = "number.of.types")
breweries2 <- breweries %>% filter(number.of.types < 3)
mapview(breweries2, cex = "number.of.types")
Thank you for any help!
Stay healthy!