Displaying 2 results from an estimated 2 matches for "grdev".
Did you mean:
rdev
2005 Oct 01
1
X-Axis Label Overwritten By TickMark Values
Can someone tell me how to fix the left margin of plot region
such that the tick values don't overwrite the x-axis label?
I haven't been able to set the correct par option to fix this...
TIA
------------
grdev <- function(...) {
get(getOption("device"))(...)
}
plotFixMe <- function(spectrum, ...) {
saved.par <- par(las = 1, tcl = 0.3)
on.exit(par(saved.par))
plot(spectrum,
type = "l",
col = "blue",
xlab = "",...
2005 Oct 10
2
R.app window size
Hi all,
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.
Also a