为什么
library(ggplot2)
plotdata <- data.frame(value=as.numeric(c(1,2,3,1,2,3,2,2,2,2,2,3,3,3,1,1,1,1)))
plotdata$feature <- "Colour1"
ggplot(plotdata, aes(feature,value)) +
geom_jitter(height=0) +
facet_wrap(~feature)
结果
即使我有height=0
- 我做错了什么?
答案 0 :(得分:0)
将ggplot2更新为ggplot2.2.0.0或更高版本 - 这是一个错误。