增加ggplot geom_point中的最小点大小

时间:2014-09-12 13:46:01

标签: r ggplot2

我正在使用以下数据和代码:

> 
> dput(ddf)
structure(list(xx = c("aa", "bb", "cc"), gp = c("one", "two", 
"one"), yy = c(5L, 10L, 15L)), .Names = c("xx", "gp", "yy"), class = "data.frame", row.names = c(NA, 
-3L))
> 
> 
> ddf
  xx  gp yy
1 aa one  5
2 bb two 10
3 cc one 15
> 
> ggplot(ddf)+geom_point(aes(x=xx, y=yy, size=gp))
> 

enter image description here

这里较小的点尺寸非常小,几乎看不见。如果它是彩色的,它变得更加模糊。是否可以增加较小的点大小以使其清晰可见?

1 个答案:

答案 0 :(得分:4)

您必须使用range内的scale_size_discrete参数,例如:

ggplot(ddf) +
  geom_point(aes(x=xx, y=yy, size=gp)) +
  scale_size_discrete(range=c(3,5))

给出以下结果: enter image description here