Fulvio Copex wrote:

I know this can be a bit OT, but is there a function in python accomplishing the same task?

os.popen - opens a pipe to a command:

[unixy example]

#!/usr/bin/python
import os
catter=os.popen("cat","w")
catter.write( "hello" )


http://docs.python.org/ is very useful.

 There are other R-Python integration methods, try this:

http://www.omegahat.org/RSPython/index.html

Barry

______________________________________________
[EMAIL PROTECTED] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html

Reply via email to