Skip to content

Instantly share code, notes, and snippets.

View duttashi's full-sized avatar
🎯
Focusing

Ashish Dutt duttashi

🎯
Focusing
View GitHub Profile
@duttashi
duttashi / spark_install.R
Created July 3, 2017 05:39
How to install different versions of SparkR
install.packages("devtools")
devtools::install_github("rstudio/sparklyr")
library(sparklyr)
# check spark installed versions
spark_installed_versions()
# install spark versions
spark_install(version = "1.6.2")
spark_install(version = "2.0.0")