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

爱⌒轻易说出口 提交于 2020-01-15 18:57:53

问题


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

回答1:


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



来源:https://stackoverflow.com/questions/26223338/getting-help-on-two-functions-with-the-same-name-in-two-different-packages

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!