I'm using the weather.csv dataset that comes with Rattle (NOTE: I'm NOT using Rattle for this) and trying to construct a box plot relating the wind direction and wind speed. I'm doing the following but no plot shows up and no errors or warnings either:
weatherPlot <- ggplot(weather, aes(factor(WindGustDir), WindGustSpeed))
weatherPlot + geom_boxplot()
Any ideas why my plot would be blank?
P.S. WindGustDir data is categorical values like N, E, W, S, NW, SE, etc and WindGustSpeed is numerical.

print()the result of the last line. – mbq Jan 16 at 19:28