HyukjinKwon commented on a change in pull request #25993: [SPARK-29339][R] Support Arrow 0.14 in vectoried dapply and gapply (test it in AppVeyor build) URL: https://github.com/apache/spark/pull/25993#discussion_r330883514
########## File path: docs/sparkr.md ########## @@ -663,13 +663,20 @@ Apache Arrow is an in-memory columnar data format that is used in Spark to effic ## Ensure Arrow Installed -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. +Arrow R library is available on CRAN as of [ARROW-3204](https://issues.apache.org/jira/browse/ARROW-3204). It can be installed as below. + +```bash +Rscript -e 'install.packages("arrow", repos="https://cloud.r-project.org/")' +``` + +If you need to install old versions, it should be installed directly from Github. You can use `remotes::install_github` as below. Review comment: Yea, it will work with the release. For old versions, only the CRAN check from dev won't work. I checked that CRAN passed in my local and `dapply` and `gapply` work manually. Let me fix up tests if it still fails .. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
