aboutsummaryrefslogtreecommitdiff
path: root/docs/sparkr.md
diff options
context:
space:
mode:
authorfelixcheung <felixcheung_m@hotmail.com>2015-12-03 09:22:21 -0800
committerShivaram Venkataraman <shivaram@cs.berkeley.edu>2015-12-03 09:22:21 -0800
commit43c575cb1766b32c74db17216194a8a74119b759 (patch)
tree3db08760024e9f9801360cb4f49a356f5ebb7bb2 /docs/sparkr.md
parent95b3cf125b905b4ef8705c46f2ef255377b0a9dc (diff)
downloadspark-43c575cb1766b32c74db17216194a8a74119b759.tar.gz
spark-43c575cb1766b32c74db17216194a8a74119b759.tar.bz2
spark-43c575cb1766b32c74db17216194a8a74119b759.zip
[SPARK-12116][SPARKR][DOCS] document how to workaround function name conflicts with dplyr
shivaram Author: felixcheung <felixcheung_m@hotmail.com> Closes #10119 from felixcheung/rdocdplyrmasked.
Diffstat (limited to 'docs/sparkr.md')
-rw-r--r--docs/sparkr.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/sparkr.md b/docs/sparkr.md
index cfb9b41350..01148786b7 100644
--- a/docs/sparkr.md
+++ b/docs/sparkr.md
@@ -384,5 +384,6 @@ The following functions are masked by the SparkR package:
</tr>
</table>
+Since part of SparkR is modeled on the `dplyr` package, certain functions in SparkR share the same names with those in `dplyr`. Depending on the load order of the two packages, some functions from the package loaded first are masked by those in the package loaded after. In such case, prefix such calls with the package name, for instance, `SparkR::cume_dist(x)` or `dplyr::cume_dist(x)`.
+
You can inspect the search path in R with [`search()`](https://stat.ethz.ch/R-manual/R-devel/library/base/html/search.html)
-