标签: r numpy
R的工作方式是什么(在Python numpy中)
np.where(b > 0, a, a+1)
对于等长数值向量a和b?
a
b
答案 0 :(得分:1)
我认为:
ifelse(b > 0, a, a+1)
?