在两个不同的程序包中获得两个具有相同名称的功能的帮助

在两个不同的程序包中获得两个具有相同名称的功能的帮助

本文介绍了在两个不同的程序包中获得两个具有相同名称的功能的帮助的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我知道如何在两个不同的程序包中使用两个具有相同名称的函数,例如packageName:::functionName.但是,即使?packageName:::functionNamehelp(packageName:::functionName)也无法正常工作.这对我来说很奇怪.有什么想法.

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

推荐答案

阅读help(help).您可以使用help(rename, plyr)获取plyr::rename的文档.

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

这篇关于在两个不同的程序包中获得两个具有相同名称的功能的帮助的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-02 19:25