[MINOR][DOCS][R] Use actual version in SparkR Arrow guide for copy-and-paste

## What changes were proposed in this pull request?

To address https://github.com/apache/spark/pull/24506#discussion_r280964509

## How was this patch tested?

N/A

Closes #24701 from HyukjinKwon/minor-arrow-r-doc.

Authored-by: HyukjinKwon <gurwls223@apache.org>
Signed-off-by: Dongjoon Hyun <dhyun@apple.com>
This commit is contained in:
HyukjinKwon 2019-05-24 10:38:26 -07:00 committed by Dongjoon Hyun
parent 24180c00e0
commit cc0b9d41cd

View file

@ -666,10 +666,10 @@ Apache Arrow is an in-memory columnar data format that is used in Spark to effic
Currently, Arrow R library is not on CRAN yet [ARROW-3204](https://issues.apache.org/jira/browse/ARROW-3204). Therefore, it should be installed directly from Github. You can use `remotes::install_github` as below.
```bash
Rscript -e 'remotes::install_github("apache/arrow@TAG", subdir = "r")'
Rscript -e 'remotes::install_github("apache/arrow@apache-arrow-0.12.1", subdir = "r")'
```
`TAG` is a version tag that can be checked in [Arrow at Github](https://github.com/apache/arrow/releases). You must ensure that Arrow R package is installed and available on all cluster nodes. The current supported version is 0.12.1.
`apache-arrow-0.12.1` is a version tag that can be checked in [Arrow at Github](https://github.com/apache/arrow/releases). You must ensure that Arrow R package is installed and available on all cluster nodes. The current supported version is 0.12.1.
## Enabling for Conversion to/from R DataFrame, `dapply` and `gapply`