how to remove that white line from a ggplot2 colourbar?
ggplot(faithfuld, aes(waiting, eruptions)) +
geom_raster(aes(fill = density)) +
scale_fill_gradientn(colours = terrain.colors(10))+
theme(legend.key.height=unit(2,"line"))
generates this plot
But if you zoom in the legend, you will see tiny annoying white lines:
How can I remove them? Thanks



