统计分析:使用 R 入门/R/函数帮助
外观
< 统计分析:使用 R 入门 | R
在 R 中,一个常见的问题是知道要使用哪个函数。例如,我们想要一个函数,它可以从 1 到 6 之间生成随机采样的数字。以下是一种查找方法
help.search("random") #list the R functions to do with the word "random"
#The "sample" function is described as “Random Samples and Permutations”: just the thing
help("sample") #get detailed information on the "sample" function
?sample #this is a quicker way of doing the same thing
从帮助页面中,您将看到 "sample" 从列表中随机挑选项目,"Usage" 部分显示 "sample" 函数最多接受 4 个逗号分隔的参数。 "Arguments" 部分描述了它们是什么
- x(一个向量,指定要从中选择的项目列表)
- size(挑选项目的次数)
- replace(一个 TRUE 或 FALSE 值,指示每次挑选后是否应将项目放回列表中)
- prob(一个概率向量,如果我们不希望等概率地挑选每个项目,则使用)