One quick way is to use ggplot's native method to save graphs:
ggsave('iris.plot.png')
...which gives a much more readable output, at least on my system. If
that's not enough, look at ?theme().
Ben
On Thu, Feb 7, 2013 at 10:09 AM, Thomas Levine <
thomas...@gmail.com> wrote:
> I want to make all of the text bigger (so that I can make a
> higher-resolution raster image with legible text). Is there a concise way to
> do that?
>
> As an example of why I want to do this, here's a big plot whose text you can
> hardly read because it is so small.
>
> png('iris.plot.png', width = 1000, height = 1000)
> print(ggplot(iris) + aes(x = Sepal.Length, y = Sepal.Width) + geom_point())
> dev.off()
>
> Thanks
>
> --
> --
> You received this message because you are subscribed to the ggplot2 mailing
> list.
> Please provide a reproducible example:
>
https://github.com/hadley/devtools/wiki/Reproducibility
>
> To post: email
ggp...@googlegroups.com
> To unsubscribe: email
ggplot2+u...@googlegroups.com
> More options:
http://groups.google.com/group/ggplot2
>
> ---
> You received this message because you are subscribed to the Google Groups
> "ggplot2" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to
ggplot2+u...@googlegroups.com.
> For more options, visit
https://groups.google.com/groups/opt_out.
>
>