Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
也许我错过了一些明显的东西。
在 R 中,TRUE && NA计算为NA。这对我来说没有意义,因为&&应该从左到右评估,并在其条件之一为真时立即停止。
TRUE && NA
NA
&&
这对我来说没有意义,因为 && 应该从左到右评估,并在其条件之一为真时立即停止。
这是错误的。您正在&&混淆||:
||
TRUE && FALSE
FALSE
TRUE || FALSE
TRUE
还,
TRUE || NA
给