警告:条件长度 > 1 并且仅使用第一个元素

发布于 2025-01-04 11:44:02 字数 387 浏览 1 评论 0原文

看起来就像我的方差计算中 apply 函数中的 na.rm=T

poolvarcheck=((7037*(应用(是, 2, var, na.rm=T)))+(5394*(应用(no,2,var,na.rm=T))))/12431

导致此问题警告消息:

“在 if (na.rm) "na.or.complete" else "everything" 中:条件长度 > 1 并且仅使用第一个元素”

我环顾四周,这似乎主要适用于循环或if 子句,但我想知道 1)这是否会影响我的结果以及如何影响,2)是否有办法避免警告。

It seems like the na.rm=T within the apply function in my variance calculation:

poolvarcheck=((7037*(apply(yes, 2, var, na.rm=T)))+(5394*(apply(no,2,var,na.rm=T))))/12431

is causing this warning message:

"In if (na.rm) "na.or.complete" else "everything" : the condition has length > 1 and only the first element will be used"

I've looked around and this seems to mostly apply to loops or if clauses, but I'd like to know 1) whether this is affecting my results and how, and 2) if there is a way to avoid the warning.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

卷耳 2025-01-11 11:44:02

尝试使用 na.rm=TRUE,很可能您已经重新定义了 T 并且它正在咬您。这就是为什么强烈建议不要使用 T/F (使用这些的包将无法通过检查)。

Try using na.rm=TRUE, chances are that you have redefined T and it is biting you. That's why use of T/F is strongly discouraged (and a package using those will fail the check).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文