通常情况你只需要在 R 平台下写出你需要查看的函数名,回车即可。比如:
dist
但有时候这个函数可能是一个类函数(Generic Function),上面的方法就需要稍稍改进一下:先使
用 methods() 函数来查看这个类函数的列表,找到具体需要的函数 ,写出来,回车 — 问题解决。
summary # I t i s a g e n e r i c f u n c i t o n
methods(summary) # l i s t o f the S3 methods
summary.lm # maybe you want to know the l i n e a r models ’ s summary
如果要究根问底,可以去下载源代码压缩包(*.tar.gz,比如 R-2.5.1.tar.gz)