我正在使用Rattle附带的weather.csv数据集(注意:我不是为此使用Rattle)并尝试构建一个与风向和风速相关的箱形图。我正在做以下事情,但没有情节显示,也没有错误或警告:
weatherPlot <- ggplot(weather, aes(factor(WindGustDir), WindGustSpeed))
weatherPlot + geom_boxplot()
为什么我的情节会空白?
P.S。 WindGustDir数据是分类值,如N,E,W,S,NW,SE等,WindGustSpeed是数值。
答案 0 :(得分:2)
你的代码在我的安装上适用于我(R 2.15.2,64位。)所以这可能不是编码的东西。您是否可以检查此段中是否存在导致问题的任何其他代码(例如,只需尝试下面的极简主义代码。)
library(rattle)
library(ggplot2)
weatherPlot <- ggplot(weather, aes(factor(WindGustDir), WindGustSpeed))
weatherPlot + geom_boxplot()