Displaying 2 results from an estimated 2 matches for "geompoint".
Did you mean:
geom_point
2007 Oct 10
1
Setting qplot default options
Hello,
is there a possibility to set default options to qplot?
I need to draw a lot of graphs and would like to have all of them as point
plot but with a greater size and a fixed color for all dots.
Thanks for help.
Christoph
2008 Jun 16
1
sizing non-vector point shapes in ggplot2
Dear all,
With normal plotting, one can size a set of points in a plot using a vector
argument to cex in the points() function. This works whether you are using
one of the standard R symbols (i.e. 19+) or some ascii symbol, such as '/'
eg:
plot(1:10, 1:10, type='n');
points(1:10, 1:10, cex = 1:10, pch = '/')
Trying to make the transition to ggplot2, I find that the