サイズ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」の要素のいずれかが条件を満たすかどうかを確認することです。