Displaying 1 result from an estimated 1 matches for "catter".
Did you mean:
scatter
2004 Sep 28
1
call R scripts from python
Hello,
I have just learnt some python, and would like to call R scripts from python, without using batch mode.
I learnt how to do it from perl, in fact reading in the mail archive I found the following good example:
***************************************
#!/usr/local/bin/perl
open (FILE, ">test.txt");
print FILE "a,b,c,d,e\n1,2,3,4,5";
close FILE;
####### Start R