[R-SIG-Mac] wish: faster resizing of R console window in R.app
Jochen Laubrock
laubrock at uni-potsdam.de
Tue Apr 6 12:04:20 CEST 2010
Dear Simon et al.,
in longer sessions with real data, the console window often fills up with output. If it is then resized, R becomes unresponsive and the OS X beach ball of death is often seen, with some delay, for an extended period. The following example illustrates this effect (if not, increase the numbers):
omp <- getOption("max.print")
options(max.print=2*1e6)
print(data.frame(matrix(nrow=1e5, ncol=20)))
options(max.print=omp)
This is probably nontrivial, but it would be nice if calculation of the resized window could be faster. Maybe, only refresh the visible portion of the console could be redrawn immediately, and the remainder be recomputed in the background?
Best, Jochen
R version 2.10.1 (2009-12-14)
i386-apple-darwin9.8.0
locale:
[1] en_US.UTF-8/en_US.UTF-8/C/C/en_US.UTF-8/en_US.UTF-8
attached base packages:
[1] stats graphics grDevices utils datasets
[6] methods base
More information about the R-SIG-Mac
mailing list