p********a 发帖数: 5352 | 1 ☆─────────────────────────────────────☆
StatsGuy (StatsGuy) 于 (Thu Mar 25 19:41:40 2010, 美东) 提到:
what is the difference between "&" vs "&&" in R?
Thanks.
☆─────────────────────────────────────☆
Dannemora (Dannemora) 于 (Thu Mar 25 19:53:28 2010, 美东) 提到:
&是piece wise, 向量化的; && 只给是一个结果。下面的code一跑就知道了。
a=c(TRUE,FALSE)
b=c(TRUE,TRUE)
a & b
a && b
☆─────────────────────────────────────☆
alexmitbbs (alexmitbbs) 于 (Thu Mar 25 23:30:10 2010, 美东) 提到:
"& and && indicate logical AND and | and |
|