[R] locator and print

Duncan Murdoch murdoch at stats.uwo.ca
Mon Jan 4 16:43:06 CET 2010


On 04/01/2010 10:18 AM, Thomas Roth wrote:
> Hi,
>
> Using the following R-Code the printing via print takes place after locator
> although print is placed before locator
>
> ###
> test = function()
> {
> plot(1:10)
> print("test")
> locator(1)
> }
>
> test
> ###
>
> Is there some way to force the printing before locator is being evaluated. I
> assume that there is some buffer that needs to be turned off? Where do I
> have to look. Locator and print help page don't cover this problem.
>   

flush.console() will flush output to the console in systems that support 
it.  In the Windows GUI, there's a menu item "Misc | Buffered output" 
that can control buffering.

Duncan Murdoch
> Thanks in advance,
>
> Thomas
>
> ______________________________________________
> R-help at r-project.org mailing list
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.
>



More information about the R-help mailing list