I am using following data and code:
>
> 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))
>
The smaller point size here is really very small and is hardly visible. It becomes even more obscure if it is colored. Can the smaller point size be increased so that it is clearly visible?