MP61
MP61

Reputation: 169

Running R in SPSS Modeller V17 - Version issues

I have SPSS V17 and want to run dplyr package in the r transform node. I am getting the following error

Error: This is R 3.1.0, package 'dplyr' needs >= 3.1.2"

Do I have to load the dplyr 3.1.0 only package or is there another solution ?

Upvotes: 0

Views: 123

Answers (1)

FelixNNelson
FelixNNelson

Reputation: 171

You can install a dplyr package version that is compatible with your current R version, which is 3.1.0 according to your error message. Example the dplyr 0.1 was the latest release of the package before R 3.1.0 was released so you can install that by downloading the tar.gz file from the dplyr cran archives, and installing that using the install.package function.

Upvotes: 1

Related Questions