On Dec 19, 2011, at 11:34 , Richard Cotton wrote:
> It seems that there are speed issues when printing to the R console from a
> tcl/tk GUI.
>
> Here are functions to write a lot of output, and to display how long it
> takes.
>
> printsalot <- function(n)
> {
> for(i in 1:n) cat(i, fill = TRUE
It seems that there are speed issues when printing to the R console from a
tcl/tk GUI.
Here are functions to write a lot of output, and to display how long it
takes.
printsalot <- function(n)
{
for(i in 1:n) cat(i, fill = TRUE)
}
timings <- function(n = 1e3)
{
print(system.time(printsalot(n)