从r图中删除标签

时间:2014-07-23 21:36:59

标签: r ggplot2

此代码:

x = c(0,0,1,3)
y = c(0,1,1,0)
df = data.frame(x , y)

library(ggplot2)

ggplot(df, aes(x=x, y=y)) +
    geom_point(shape=1)+ #hollow circles
     geom_point(aes(size = 10))+
  scale_size_continuous(range = c(7, 7))

生成:

enter image description here

为什么生成10,10(带蓝色圆圈)的纯黑球?

如何删除?

1 个答案:

答案 0 :(得分:1)

你需要

 geom_point(size = 10)

而不是

 geom_point(aes(size = 10))

前者直接指定您的积分的size属性。后者在您定义的变量等于10的变量和size属性之间指定映射