On Mon, 10 Oct 2005, Jason Horn wrote:
> This is a question for any of you who use R.app (OS X). Is there any
> way to resize the quartz plot window from within R? I know that you
> can resize the window by dragging the corner of the window, and fro
> the preferences panel. But is there a way to specify the window size
> from the console? I want to specify the size of the plot window from
> inside an R function.
You had a problem with the width & height arguments?
Probably best to use device independent method for scripting.
grdev <- function(...) {
get(getOption("device"))(...)
}
grdev(width = 7.8, height = 5.8)
#quartz(width = 7.8, height = 5.8)
----------------------------------------------------------
SIGSIG -- signature too long (core dumped)
______________________________________________
[email protected] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html