我试图计算R中因子向量的组合。 我使用了" gtools"但是,理想情况下,如果订单不重要,那么我会非常喜欢它。#34;年龄" "性别"不会重复#34;性别" "年龄&#34 ;.其中只有一个被采取。
variables <- c("Age","Gender","Segment1","Segment2","Segment3","TransactionDate","TransactionMonth","TransactionYear","Tenure")
require(gtools)
permutations(n=3,r=2,variables,repeats.allowed = FALSE)
如果可能的话,可以扩大n和r,以便变量的数量增加,变量的选择也会增加(例如下面),而无需手动调整?
感谢您的任何建议!