Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
1  
Try to print() the result of the last line. – mbq Jan 16 at 19:28
@mbq that would only be relevant if the OP were running R non-interactively or if the code is inside a loop or similar where auto-printing is turned off. – Gavin Simpson Jan 16 at 20:18
@GavinSimpson Well, judging from acceptance this was likely the case. – mbq Jan 16 at 22:47
@mbq I guess that's why a full, reproducible example is desired. – Gavin Simpson Jan 17 at 8:41
Actually the issue was that my code was perfect but the results were appearing in another window I couldn't see. – Justin Bozonier Jan 17 at 21:07

migrated from stats.stackexchange.com Jan 16 at 21:30

1 Answer

up vote 2 down vote accepted

Your code works for me on my installation (R 2.15.2, 64 bit.) So this probably isn't a coding thing. Can you check that you don't have any other code around this segment that is causing a problem (e.g. just try the minimalist code below.)

library(rattle)
library(ggplot2)

weatherPlot <- ggplot(weather, aes(factor(WindGustDir), WindGustSpeed)) 
weatherPlot + geom_boxplot()

enter image description here

share|improve this answer
Thanks you're right. I appreciate the help! – Justin Bozonier Jan 16 at 21:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.