MYaseen208
MYaseen208

Reputation: 23898

Getting help on two functions with the same name in two different packages

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

Answers (1)

Roland
Roland

Reputation: 132706

Read help(help). You can use help(rename, plyr) to get the documentation for plyr::rename.

Upvotes: 2

Related Questions