Hi
I am not able to show NA values if I use more than one variable in tm_fill(), am I missing something?
library(tmap)
data(World)
World[9, c("pop_est", "pop_est_dens")] <- NA
## works
tm_shape(World) +
tm_fill(c("pop_est"), colorNA = "red")
## not anymore?
tm_shape(World) +
tm_fill(c("pop_est", "pop_est_dens"), colorNA = "red")
I am using tmap 2.1.1. Thanks!!
Thanks, it's working now
is this fixed for tmap 2.1-1? Or have I missed something?
When I run
tm_shape(World) +
tm_fill(c("pop_est", "pop_est_dens"), colorNA = "red")
Get the same problem.
fixed in tmap 2.2 at least!
Most helpful comment
Thanks, it's working now