我很惊讶地看到 R 在连接向量时会将因子强制转换为一个数字。即使级别相同,也会发生这种情况。例如:
> facs <- as.factor(c("i", "want", "to", "be", "a", "factor", "not", "an", "integer"))
> facs
[1] i want to be a factor not an integer
Levels: a an be factor i integer not to want
> c(facs[1 : 3], facs[4 : 5])
[1] 5 9 8 3 1
在 R 中执行此操作的惯用方法是什么(在我的情况下,这些向量可能非常大)?谢谢你。