警告:条件长度 > 1 并且仅使用第一个元素
看起来就像我的方差计算中 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用
na.rm=TRUE
,很可能您已经重新定义了T
并且它正在咬您。这就是为什么强烈建议不要使用T
/F
(使用这些的包将无法通过检查)。Try using
na.rm=TRUE
, chances are that you have redefinedT
and it is biting you. That's why use ofT
/F
is strongly discouraged (and a package using those will fail the check).