我有一个大小为 5 的向量,例如:
a<-c(1,4,6,3,2)
我还有另一个大小为 1 的向量:
b<-9
我想写以下 if 条件:
if (a>b) { 1
}
else 0
}
我收到以下警告:
Warning message:
In if (fitness_neighbours > user_fitness) { :
the condition has length > 1 and only the first element will be used
我真正想做的是检查“a”中的任何元素是否满足条件。