Re: [R-SIG-Mac] mac-shell-r

2010-09-16 Thread Martin Renner
Hi Liv, I use rsync to upload my scripts + data to a linux server, then ssh to start the run and rsync again to fetch results. All of this can be wrapped into a shell script. HTH, Martin On 8 Sep 2010, at 1:08 , Yingjie Zhang wrote: Dear all, I 've gotten a serious question, I have a

[R-SIG-Mac] R on iPad

2010-09-16 Thread Jan de Leeuw
If you want your Mac to run Revolution R Enterprise, or some of the CUDA/GPU packages that run best under Linux, then this can of course be done by running the appropriate OS in an emulator such as Parallels Desktop. Parallels now also has Parallels Mobile for the iPad, which is basically a

[R-SIG-Mac] stupid question on abline

2010-09-16 Thread steven mosher
I must be missing something very obvious data -ts(rnorm(120,0,1),start=1900,frequency=12) plot(data) abline(a=0,b=1) # draws nothing abline(a=0,b=0) #works abline(a=1,b=0) #works abline(a=0,b=.5) # doesnt work abline will only draw if b=0 sessionInfo() R version 2.11.1 (2010-05-31)

Re: [R-SIG-Mac] stupid question on abline

2010-09-16 Thread steven mosher
ha. thanks for a smart answer to a stupid question On Thu, Sep 16, 2010 at 12:10 PM, Steven McKinney smckin...@bccrc.cawrote: Hi Steven, Try abline(a = -1905/2, b = 0.5) R is drawing abline(a = 0, b = 0.5) but it is entirely off the screen as the x limits are 1900 to 1910. It appears