Installing of SparkR

You can install directly from a GitHub repository: if (!require(‘devtools’)) install.packages(‘devtools’) devtools::install_github(‘apache/[email protected]’, subdir=”R/pkg”) You should choose tag (v2.x.x above) corresponding to the version of Spark you use. You can find a full list of tags on the project page or directly from R using GitHub API: jsonlite::fromJSON(“https://api.github.com/repos/apache/spark/tags”)$name If you’ve downloaded binary package from a downloads … Read more