mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Merge remote-tracking branch 'origin/master' into livyInterperter
This commit is contained in:
commit
7cec9baba9
1 changed files with 0 additions and 41 deletions
|
|
@ -1,41 +0,0 @@
|
|||
---
|
||||
layout: page
|
||||
title: "R Interpreter"
|
||||
description: ""
|
||||
group: manual
|
||||
---
|
||||
{% include JB/setup %}
|
||||
|
||||
## R Interpreter for Apache Zeppelin
|
||||
|
||||
[R](https://www.r-project.org) is a free software environment for statistical computing and graphics.
|
||||
|
||||
To run R code and visualize plots in Apache Zeppelin, you will need R on your master node (or your dev laptop).
|
||||
|
||||
+ For Centos: `yum install R R-devel libcurl-devel openssl-devel`
|
||||
+ For Ubuntu: `apt-get install r-base`
|
||||
|
||||
Validate your installation with a simple R command:
|
||||
|
||||
```
|
||||
R -e "print(1+1)"
|
||||
```
|
||||
|
||||
To enjoy plots, install additional libraries with:
|
||||
|
||||
```
|
||||
+ devtools with `R -e "install.packages('devtools', repos = 'http://cran.us.r-project.org')"`
|
||||
+ knitr with `R -e "install.packages('knitr', repos = 'http://cran.us.r-project.org')"`
|
||||
+ ggplot2 with `R -e "install.packages('ggplot2', repos = 'http://cran.us.r-project.org')"`
|
||||
+ Other vizualisation librairies: `R -e "install.packages(c('devtools','mplot', 'googleVis'), repos = 'http://cran.us.r-project.org'); require(devtools); install_github('ramnathv/rCharts')"`
|
||||
```
|
||||
|
||||
We recommend you to also install the following optional R libraries for happy data analytics:
|
||||
|
||||
+ glmnet
|
||||
+ pROC
|
||||
+ data.table
|
||||
+ caret
|
||||
+ sqldf
|
||||
+ wordcloud
|
||||
|
||||
Loading…
Reference in a new issue