R中大数的所有可能组合

时间:2016-07-18 20:47:21

标签: r combinations

图片我有这样的序列:

seq <- rep(0:9, 10)

我想知道这个序列的所有可能组合。当然,命令combn无效:

> comb <- combn(seq, 10)
Error in matrix(r, nrow = len.r, ncol = count) : 
  invalid 'ncol' value (too large or NA)
In addition: Warning message:
In combn(seq, 10) : NAs introduced by coercion to integer range

你能给我一个提示,告诉我如何为所有可能的组合制作自己的功能吗?

1 个答案:

答案 0 :(得分:1)

根据您对评论的回复,您可以做以下一件事。您需要安装combinat软件包才能工作。

library(combinat)
seq <- c(1,2,3,4,5,6,7,8,9,0)
permn(seq)