Skip to content
Prev 75941 / 398502 Next

Advice about system for installing & updating all R package in a Linux Lab?

On 08/19/05 16:23, Paul Johnson wrote:
I used to do this:

    update.packages()
    cp <- CRAN.packages()[,1]
    ip <- installed.packages()[,1,]
    install.packages(setdiff(cp,ip))

But now it looks like you can do this:

    install.packages(new.packages())

Jon