标签: r combinations
可能重复: How to calculate combination and permutation in R?
当我尝试使用Combinat包和combn命令计算R中的组合时,它为我提供了所有可能的组合。但我只想返回组合的数量,即我希望在10C2的情况下得到45。我该怎么办?
Combinat
combn
答案 0 :(得分:30)
使用基本功能choose:
choose
choose(10,2) #[1] 45