gpt4 book ai didi

R:If 语句包含 is.null 作为通过 OR 连接的条件之一

转载 作者:行者123 更新时间:2023-12-03 09:05:45 27 4
gpt4 key购买 nike

我有一个变量mat其缩写为 NULL 。我有一个迭代过程,仅在某些条件下填充垫子。在此过程之后,我检查是否 mat行数超过一定数量,如果没有,则执行其他操作。

我正在寻找一种干净的方式来编写这个条件,理想情况下,类似于is.null(mat) | nrow(mat) < n 。虽然如果 is.null(mat)TRUE并且它们通过 OR 连接,整个语句应该是 TRUE ,但是nrow(mat) < n会报错。

我可以通过将其重写为两个条件并复制 # do something 来解决这个问题代码到这两个地方,但是有没有更干净的方法来做到这一点?

mat = NULL

for(i in 1:10){
if(runif(1) > 0.8){
mat = rbind(mat, c(1,2,3))
}
}

if(is.null(mat)){
# do something...
} else if(nrow(mat) < 3){
# do something...
}

最佳答案

您可以使用 | 的短路版本,即 ||

is.null(mat) || nrow(mat) < n

来自帮助:

& and && indicate logical AND and | and || indicate logical OR. The shorter form performs elementwise comparisons in much the same way as arithmetic operators. The longer form evaluates left to right examining only the first element of each vector. Evaluation proceeds only until the result is determined. The longer form is appropriate for programming control-flow and typically preferred in if clauses.

关于R:If 语句包含 is.null 作为通过 OR 连接的条件之一,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47585824/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com