I'm having difficulty changing the color scale to anything but the default 'blues' for contour plots with geom = "polygon". I've tried scale_fill_gradient(), etc. with no success. I'm sure it's simple, but I'm stuck. Code and example plot below. Data attached.
v <- ggplot(interp.out, aes(x, y, z = z))
v + stat_contour(geom="polygon", aes(fill=..level..),binwidth=2) + stat_contour(binwidth=2) + facet_wrap(~freq) +
scale_x_continuous('\nAthwartship Beam Angle (deg)') + scale_y_continuous('Alongship Beam Angle (deg)\n') +
theme_bw()