On Tue, Jun 24, 2008 at 1:15 PM, Prof Brian Ripley
<[EMAIL PROTECTED]> wrote:
> On Tue, 24 Jun 2008, Richard Pearson wrote:
>
>> Wacek, many thanks! I'm wondering however whether this will be problematic
>> on Windows (I have no windows box to hand to check this, but am creating a
>> package that I would like to be cross-platform)?
>
> It will fail.  But
>
> sink(tempfile())
> ...
> sink()
>
> is portable (and sink("nul:") works on Windows only).

Or:

tc <- textConnection(NULL, "w")
sink(tc)
...
sink()
close(tc)

Or

capture.output(...)

Hadley

-- 
http://had.co.nz/

______________________________________________
R-help@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.

Reply via email to