Description Usage Arguments Details Examples
prioritize
detaches packages from the search path, then
re-attaches them, placing them at the beginning of the search path to
prevent masking. This allows for the loading of packages with conflicting
function names in any order.
1 |
... |
Packages, given as unquoted names or character strings. Earlier arguments will be attached later (and therefore get a higher priority). |
If you find yourself calling this function a lot, you're probably doing something wrong.
1 2 3 4 5 6 7 8 9 10 | ## Not run:
# loading plyr after dplyr causes badness
needs(dplyr, plyr)
# prioritize the functions in dplyr
prioritize(dplyr)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.