I tried to use the following to reduce the point size. But I don't see it changed. How to reduce the point size when qplot is used?
R> qplot(1:10, 1:10)+geom_point(size=.01)
Increasing point size works. I am not sure why increasing works but decreasing does not work.
R> qplot(1:10, 1:10)+geom_point(size=10)