[Rd] opening graphics device with a given number

2010-11-13 Thread Petr Savicky
I am preparing a script, which uses three graphical windows for different types of plots. Before each plot, the device can be chosen by dev.set(k) for k = 2, 3, 4. The function dev.set(k) does not create the required device, if it is not opened already. So, instead, i use dev.add(k) defined as

Re: [Rd] opening graphics device with a given number

2010-11-13 Thread Henrik Bengtsson
See devSet() in R.utils, e.g. library(R.utils); graphics.off(); devSet(6); devSet(myFigure); # Also possible print(devList()); myFigure Device 6 26 /Henrik On Sat, Nov 13, 2010 at 2:44 AM, Petr Savicky savi...@cs.cas.cz wrote: I am preparing a script, which uses three

Re: [Rd] installing dependencies: binary vs source

2010-11-13 Thread Uwe Ligges
On 12.11.2010 01:40, Hervé Pagès wrote: Hi, Installing from binaries on Windows: install.packages(multtest) Warning: dependency 'Biobase' is not available trying URL 'http://cran.fhcrc.org/bin/windows/contrib/2.12/multtest_2.6.0.zip' Content type 'application/zip' length 1645590 bytes (1.6

Re: [Rd] opening graphics device with a given number

2010-11-13 Thread Petr Savicky
On Sat, Nov 13, 2010 at 05:09:56AM -0800, Henrik Bengtsson wrote: See devSet() in R.utils, e.g. library(R.utils); graphics.off(); devSet(6); devSet(myFigure); # Also possible print(devList()); myFigure Device 6 26 The function devSet() works fine and i will use it.

Re: [Rd] trouble compiling RMySQL (and others) for 64 bit windows.

2010-11-13 Thread Uwe Ligges
I just found this obviously unanswered message: Yes, you need Rtools installed as described in the manual R Installation and Administration which explains what to do in more detail. It makes sense to upgrade to R-2.12.0 if you have not already done so. Best, Uwe Ligges On 21.09.2010

[Rd] problem building R from svn repo

2010-11-13 Thread Kjetil Halvorsen
Hola! I just changed my laptop to debian squeeze, downloaded R devel from svn repo, as described in the manual. Then I configured for building in a separate build dir with: kje...@kjetil:~/R/Rbuilddir$ sudo ../svn/configure --- which succeeded, with: R is now configured for

Re: [Rd] problem building R from svn repo

2010-11-13 Thread Kasper Daniel Hansen
Before make'ing you need to get the recommended packages. I do (with your paths) ../svn/tools/sync-recommended ../svn/tools/sync-recommended You should not run configure or make with sudo. If you need to install system-wide, you only need to run make install under sudo, like ./configure make