ifelse语句从同一df行返回值

时间:2019-01-15 15:36:55

标签: r if-statement

我不确定为什么这么难,但是我只想在rowX,colA> 70时返回rowX,colB中的数据。

reinterpret_cast

如果向量低于70,则结果为“低于70”;如果高于70,则为NA,但为什么?即使ifelse语句不理解df $ colB的行,它也绝不应该返回NA,因为df colA colB 80 6 75 7 60 5 66 4 vector <- ifelse(df$colA > 70, paste0('above 70', df$colB), 'below 70') 实际上是一个数据帧。 ifelse语句是否对第一个条件语句之外的行号不了解?

0 个答案:

没有答案