Here is my R code to plot the RR:
# Display posterior means of RR(relative risks)
va$RRmean <- end4$summary.fitted.values[, 1]
library(classInt)
breaks.qt2 <-classIntervals(va$RRmean, n=7, style="quantile", intervalClosure="right")
va.palette<-brewer.pal(9, name="OrRd")
spplot(va, "RRmean", col="transparent", col.regions=va.palette, at=breaks.qt2$brks)
However, there is one county that is showing as just blank white (although it has the highest value among other counties). Is there something wrong with the code? I have checked the actual value, and it is a valid numeric value.