Entering edit mode
3.7 years ago
rishav513
▴
30
condition_pairs <- t(combn(levels(HB$Condition), 2))
Error in combn(levels(HB$Condition), 2) : n < m
condition_pairs <- t(combn(levels(HB$Condition), 2))
Error in combn(levels(HB$Condition), 2) : n < m
There is only one element in the levels (or none).
combn(c("A"), 2)
Error in combn(c("A"), 2) : n < m
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.