[R-sig-hpc] Parallel Linear Model

Simon Urbanek simon.urbanek at r-project.org
Wed Aug 22 17:20:21 CEST 2012


On Aug 22, 2012, at 10:47 AM, Patrik Waldmann <patrik.waldmann at boku.ac.at> wrote:

> I did not manage to implement this example in foreach, could anyone point me to a similar example?
> 

I would't even both with foreach for something as simple - you can write it trivially as

library(parallel)

pval <- unlist(mclapply(1:n, function(i) summary(lm(y ~ x[,i]))$coefficients[2,4]))

Cheers,
Simon


> Patrik
> 
>>>> Jay Emerson <jayemerson at gmail.com> 22/08/2012 14:05 >>>
> 
> Patrik,
> 
> Your question (at least from you example) is really about general parallel computing. Nothing you want to do with your linear model from your short example requires some special type of parallelism. I recommend package 'foreach' with the parallel backends, or else the package 'parallel' that comes with the newer versions of R. You could also have a look at Dirk's HPC page:
> 
> http://cran.r-project.org/web/views/HighPerformanceComputing.html
> 
> Jay
> 
> -- 
> John W. Emerson (Jay)
> Associate Professor of Statistics, Adjunct, and Acting Director of Graduate Studies
> Department of Statistics
> Yale University
> http://www.stat.yale.edu/~jay ( http://www.stat.yale.edu/%7Ejay )
> 
> 	[[alternative HTML version deleted]]
> 
> _______________________________________________
> R-sig-hpc mailing list
> R-sig-hpc at r-project.org
> https://stat.ethz.ch/mailman/listinfo/r-sig-hpc
> 
> 



More information about the R-sig-hpc mailing list