在 R 中以交互方式获取库的内容
R 中是否有相当于 dir 函数(python)的函数?
当我在 R 中加载库时,例如 -
库(vrtest)
我想知道该库中的所有函数。
在Python中,dir(vrtest)将是vrtest的所有属性的列表。
我想总的来说,我正在寻找在 Linux 上的 ESS 中运行 R 时获得 R 帮助的最佳方法。我看到了我已安装的软件包的所有这些手册页,但我不确定如何访问它们。
谢谢
Is there an equivalent of dir function (python) in R?
When I load a library in R like -
library(vrtest)
I want to know all the functions that are in that library.
In Python, dir(vrtest) would be a list of all attributes of vrtest.
I guess in general, I am looking for the best way to get help on R while running it in ESS on linux. I see all these man pages for the packages I have installed, but I am not sure how I can access them.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
help(package = packagename)
将列出包中的所有非内部函数。help(package = packagename)
will list all non-internal functions in a package.是的,使用
ls()
。您可以使用 search() 查看搜索路径中的内容:
您可以使用全名搜索特定包:
我还建议 您在 stackoverflow 上查看此相关问题,其中包括一些更有创意的浏览环境的方法。如果您使用 ESS,则可以使用 Ess-rdired。
要获取特定主题的帮助页面,您可以使用
help(function.name)
或?function.name
。如果您不知道确切的函数名称或包,您还会发现help.search()
函数很有用。最后,看看 sos 包。Yes, use
ls()
.You can use search() to see what's in the search path:
You can search a particular package with the full name:
I also suggest that you look at this related question on stackoverflow which includes some more creative approaching to browsing the environment. If you're using ESS, then you can use Ess-rdired.
To get the help pages on a particular topic, you can either use
help(function.name)
or?function.name
. You will also find thehelp.search()
function useful if you don't know the exact function name or package. And lastly, have a look at the sos package.全部来自 R 参考卡
All from the R reference card