Skip to content
Prev 334463 / 398506 Next

Invalid connection error message when trying to write a file

On 15.12.2013 20:13, John Karon wrote:
Wrong, *either* use

write.table(LRtest.out, file="c:\\LRtest.txt", sep="\t")

or

zz <- file(description="c:\\LRtest.txt","w")
write.table(LRtest.out, file=zz, sep="\t")
close(zz)

Best,
Uwe Ligges