R的ggplot2:抖动不尊重height = 0

时间:2016-01-11 15:22:41

标签: r ggplot2

为什么

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)

结果

enter image description here

即使我有height=0 - 我做错了什么?

1 个答案:

答案 0 :(得分:0)

将ggplot2更新为ggplot2.2.0.0或更高版本 - 这是一个错误。