Reputation: 23898
I know how to use two functions with the same name in two different packages, like packageName:::functionName
. But help(packageName:::functionName)
does not work even though ?packageName:::functionName
. This is strange to me. Any thoughts.
library(plyr)
library(reshape)
plyr:::rename
reshape:::rename
help(plyr:::rename)
?plyr:::rename
Upvotes: 1
Views: 232
Reputation: 132706
Read help(help)
. You can use help(rename, plyr)
to get the documentation for plyr::rename
.
Upvotes: 2