Skip to content

Commit f7ae62c

Browse files
felixcheungshivaram
authored andcommitted
[SPARK-12116][SPARKR][DOCS] document how to workaround function name conflicts with dplyr
shivaram Author: felixcheung <[email protected]> Closes #10119 from felixcheung/rdocdplyrmasked. (cherry picked from commit 43c575c) Signed-off-by: Shivaram Venkataraman <[email protected]>
1 parent 84cbed1 commit f7ae62c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/sparkr.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,5 +384,6 @@ The following functions are masked by the SparkR package:
384384
</tr>
385385
</table>
386386

387+
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)`.
388+
387389
You can inspect the search path in R with [`search()`](https://stat.ethz.ch/R-manual/R-devel/library/base/html/search.html)
388-

0 commit comments

Comments
 (0)