Skip to content
Snippets Groups Projects
Commit 43c575cb authored by felixcheung's avatar felixcheung Committed by Shivaram Venkataraman
Browse files

[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.
parent 95b3cf12
No related branches found
No related tags found
No related merge requests found
......@@ -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)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment