Skip to content
Prev 131503 / 398502 Next

R on a multi core unix box

You can use the socket implementation of snow, with

     library(snow)
     cl <- makeCluster(rep("localhost", 2), type="SOCK")

to start up a cluster of 2 R processes.

luke
On Thu, 6 Dec 2007, Saeed Abu Nimeh wrote: