[R] is a very big graphics-device

Markus Hummel (WEB.DE) markus_hummel at web.de
Sat Apr 2 13:40:56 CEST 2005


Hello,

i am searching now the R-Documentation many hours, but i cannot find a 
solution to my problem. I hope, i can solve my issue with R.

i have data-tables, 15*40 data-tables

i want to visualise this.

this example-code i copied makes a 3x3-grid:

x <- 0:12
y <- sin(pi/5 * x)
op <- par(mfrow = c(3,3), mar = .1+ c(2,2,3,1))
for (tp in c("p","l","b", "c","o","h", "s","S","n")) {
plot(y ~ x, type = tp,
main = paste("plot(*, type = \"",tp,"\")",sep=""))
if(tp == "S") {
lines(x,y, type = "s", col = "red", lty = 2)
mtext("lines(*, type = \"s\", ...)", col = "red", cex=.8)
}
}

i want it for 15x40 grid in a big window, so i can scroll and see how 
the data-tables change.

i tried to do so, but with many grids i become the error

" Error in plot.new() : Figure margins too large "

is something like that possible with r?

Thank you for helping me,

Greatings,

Markus Hummel




More information about the R-help mailing list