platform: R 2.14.2 - Windows XP
When I use cat() or print() in a script, the output text is of course interlaced with the lines of the script.
I can sink() the output to a textfile and then play the file back at the end of the script, but that's not really what I'm after.
It would be nice if the lines of text output could appear in a separate window, in the same sort of way that you'd use windows() for graphical output.
Apologies if I'm missing something obvious.
Bob Kinley
socketConnectionwithsink, see?connections– James Mar 6 '12 at 16:01gWidgetspackage (which can use tcltk if desired):library(gWidgets); output <- gtext(cont=gwindow("log messages")); log_it <- function(msg) insert(output, msg)Now just uselog_it. – jverzani Mar 6 '12 at 18:06