Skip to content
Back to formatted view

Raw Message

Message-ID: <2D1B720C-4EB2-4C92-91BB-6AC859A2FFB0@me.com>
Date: 2013-07-10T20:43:10Z
From: Marc Schwartz
Subject: alternative of package parallel for R 3.0
In-Reply-To: <CACXG3GhT899cd4JhAiuAPC6oa8PZ-6s+S9QgxBq+sWkvnLbUxg@mail.gmail.com>

On Jul 10, 2013, at 3:29 PM, Jie <jimmycloud at gmail.com> wrote:

> Dear All,
> 
> I would like to use parApply in "parallel" to do parallel computing.
> But after I updated to the new version of R, I got the message like
> "Warning message: package ?parallel? is not available (for R version 3.0.0) "
> Any people has the same issue? I know there are some other packages
> but which has a similar way to implement it? Thank you.
> 
> Best wishes,
> Jie
> 


parallel is part of the standard R distribution and has been since R version 2.14.0, almost two years ago. You just need:

> require(parallel)
Loading required package: parallel


Regards,

Marc Schwartz