I am trying to create a choropleth map of the US that has the default color changed from gray to white.
I have records for 18 of 48 states and the code works to colo
You can change color of NA values (states without data) by changing argument na.value in scale_fill_continuos().
na.value
scale_fill_continuos()
+scale_fill_continuous(low="thistle2", high="darkred", guide="colorbar",na.value="white")