[sage-support] Re: R interface issues

2008-05-15 Thread Harald Schilly
On May 15, 9:49 am, shahab <[EMAIL PROTECTED]> wrote: > Hi, > > Maybe I am doing something wrong. Using this interface, you are still in the "python" world. So, things like the a:b notation do not exist there. You have to use ' quotation marks (this is then translated 1:1 to a R function call) or

[sage-support] Re: R interface issues

2008-05-15 Thread Simon King
Hi Shahab, disclaimer: I have never used R. But hopefully my remarks make sense. On May 15, 9:49 am, shahab <[EMAIL PROTECTED]> wrote: > x = r.cbind(1, 1:7) > gives me a syntax error and It complains about the colon in "1:7". Do you mean "1/7" or "1.7"? Both work: sage: x = r.cbind(1,1/7) sage: