Re: [R] Output an RWeka model via sink

2009-03-28 Thread Francisco Javier Perez Caballero
Thanks. Just figured out what happened: out of quota. -Original Message- From: Coen van Hasselt Sent: Saturday, March 28, 2009 9:05 PM To: Francisco Javier Perez Caballero Cc: r-h...@stat.math.ethz.ch Subject: Re: [R] Output an RWeka model via sink I tried your code and it seems to

Re: [R] Output an RWeka model via sink

2009-03-28 Thread Coen van Hasselt
I tried your code and it seems to work fine; the file contains the expected output. I used R 2.8.1 on WinXP. On Sun, Mar 29, 2009 at 07:48, Francisco Javier Perez Caballero wrote: > When I sink the output of an RWeka model to a text file, the output file > appears empty: > > library(RWeka) > mod

[R] Output an RWeka model via sink

2009-03-28 Thread Francisco Javier Perez Caballero
When I sink the output of an RWeka model to a text file, the output file appears empty: library(RWeka) model = LogitBoost(Species~.,data=iris) print(model) sink("output.txt") print(model) #file output.txt is created, but it is blank sink() Am I doing anything wrong? [[alternative HTML v