Displaying 1 result from an estimated 1 matches for "nextplot".
Did you mean:
textplot
2001 Mar 12
4
1.2.2 under M$ windows 2000 lots of plots out of memory?
...quot;file",memory.size())
cc<-rainbow(11)
plot(x,y,asp=1i,xlim=c(-500,2000),ylim=c(-500,2500),main=k,cex=1.0)
for(i in seq(-10,10,2)){
points(x[z > i],y[z > i],col=cc[(12+i)/2],cex=1.0)
}
rm(x,y,z)
cat(k,"fil2",memory.size(),"\n")
#readline(prompt="enter for nextplot")
dev.off()
}
~
the check print gets to 256MB and R fails; I think I am freeing everthing with the rm(...) and dev.off().
Am I failing to free something or force r to do garbage collection?
I start r with
P:\r\base\rw1022\bin\rgui.exe --vsize=300M --nsize=20000k
and turn of buffered outpu...