combn
位于 utils
包(package)。 说明
一次生成x
中采用m
的元素的所有组合。如果x
是正整数,则返回一次采用m
的seq(x)
元素的所有组合。如果参数 FUN
不是 NULL
,则将参数给定的函数应用于每个点。如果 simple 为 FALSE,则返回一个列表;否则返回 array
,通常是 matrix
。如果指定,...
将原封不动地传递给 FUN
函数。
用法
combn(x, m, FUN = NULL, simplify = TRUE, ...)
参数
x |
组合的向量源,或 |
m |
可供选择的元素数量。 |
FUN |
应用于每个组合的函数;默认 |
simplify |
逻辑指示结果是否应简化为 |
... |
可选地, |
细节
接受因子x
。
值
list
或 array
,请参阅上面的 simplify
参数。在后一种情况下,身份 dim(combn(n, m)) == c(m, choose(n, m))
成立。
例子
combn(letters[1:4], 2)
(m <- combn(10, 5, min)) # minimum value in each combination
mm <- combn(15, 6, function(x) matrix(x, 2, 3))
stopifnot(round(choose(10, 5)) == length(m), is.array(m), # 1-dimensional
c(2,3, round(choose(15, 6))) == dim(mm))
## Different way of encoding points:
combn(c(1,1,1,1,2,2,2,3,3,4), 3, tabulate, nbins = 4)
## Compute support points and (scaled) probabilities for a
## Multivariate-Hypergeometric(n = 3, N = c(4,3,2,1)) p.f.:
# table.mat(t(combn(c(1,1,1,1,2,2,2,3,3,4), 3, tabulate, nbins = 4)))
## Assuring the identity
for(n in 1:7)
for(m in 0:n) stopifnot(is.array(cc <- combn(n, m)),
dim(cc) == c(m, choose(n, m)),
identical(cc, combn(n, m, identity)) || m == 1)
作者
Scott Chasalow wrote the original in 1994 for S;
R package combinat
and documentation by Vince Carey
stvjc@channing.harvard.edu;
small changes by the R core team, notably to return an array in all
cases of simplify = TRUE
, e.g., for combn(5,5)
.
参考
Nijenhuis, A. and Wilf, H.S. (1978) Combinatorial Algorithms for Computers and Calculators; Academic Press, NY.
也可以看看
choose
用于快速计算组合数量。 expand.grid
用于根据因子或向量的所有组合创建 DataFrame 。
相关用法
- R compareVersion 比较两个包版本号
- R count.fields 计算每行的字段数
- R contrib.url 在类似 CRAN 的存储库中查找适当的路径
- R create.post 准备电子邮件和帖子的辅助函数
- R cite 引用参考书目条目
- R citation 在出版物中引用 R 和 R 包
- R citEntry 参考书目条目(旧接口)
- R clipboard 在 MS Windows 中从剪贴板读取/写入
- R chooseBioCmirror 选择 Bioconductor 镜像
- R changedFiles 检测哪些文件已更改
- R chooseCRANmirror 选择 CRAN 镜像
- R choose.dir 在 MS Windows 上交互式选择文件夹
- R charClass 人物分类
- R close.socket 关闭套接字
- R choose.files 在 MS Windows 上交互式选择文件列表
- R capture.output 将输出发送到字符串或文件
- R select.list 从列表中选择项目
- R COMPILE 编译用于 R 的文件
- R readRegistry 读取 Windows 注册表配置单元
- R browseVignettes 在 HTML 浏览器中列出晕影
- R hasName 检查姓名
- R nsl 按主机名查找 IP 地址
- R edit 调用文本编辑器
- R hsearch-utils 帮助搜索实用程序
- R download.packages 从类似 CRAN 的存储库下载软件包
注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Generate All Combinations of n Elements, Taken m at a Time。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。