统计分析:使用R入门/R/获取帮助
外观
< 统计分析:使用R入门 | R
在R中获得帮助有多种方法,而且也有大量在线信息。大多数R安装都附带一个相当详细的帮助文件,称为“R入门”,但对于第一次使用统计软件包的用户来说,这可能有点过于技术性。R中自动提供的几乎所有函数和其他对象都有一个帮助页面,其中详细说明了如何使用它们。这些帮助页面通常还包含示例,这对新手用户特别有用。但是,如果您不知道要查找的内容的名称,那么找到帮助可能并不容易,尽管可以搜索与对象相关的关键字和概念。某些版本的R可以方便地访问帮助文件,而无需输入命令(例如,提供菜单栏的版本通常有一个“帮助”菜单,Macintosh界面在右上角也有一個幫助框)。但是,始终可以通过输入相应的命令来访问此功能。您可能想在R会话中键入以下部分或全部内容(这里没有列出输出,因为结果将取决于您的R系统)。
help.start() #A web-based set of help pages (try the link to "An Introduction to R")
help(sqrt) #Show details of the "sqrt" and similar functions
?sqrt #A shortcut to do the same thing
example(sqrt) #run the examples on the bottom of the help page for "sqrt"
help.search("maximum") #gives a list of functions involving the word "maximum", but oddly, "max" is not in there!
### The next line is commented out to reduce internet load. To try it, remove the first # sign.
#RSiteSearch("maximum") #search the R web site for anything to do with "maximum". Probably overkill here!
倒数第二个命令说明了使用R帮助函数时可能会遇到的问题。帮助文件的搜索功能有时有点随机。如果您无法找到要查找的确切内容,查看任何听起来有点类似或相关的帮助文件的“另请参阅”部分通常很有用。在这种情况下,您可能最终会通过查看
which.max()
帮助文件的“另请参阅”部分找到max()
函数。不太理想!.