美文网首页
longer object length is not a mu

longer object length is not a mu

作者: 重新开始_xy | 来源:发表于2020-12-07 15:32 被阅读0次

整理一个warning,一开始以为是普通的警告不以为然,后面发现是一个错误,直接导致运算结果不同
提取rt中4、5字符等于02,03,04的列
原代码:

rt_nor <- rt[,substr(colnames(rt),4,5)==c("02","03","04")]

使用原代码提示longer object length is not a multiple of shorter object length,提取数量较实际数量少

修改:

rt_nor <- rt[,substr(colnames(rt),4,5)%in%c("02","03","04")]

相关文章

网友评论

      本文标题:longer object length is not a mu

      本文链接:https://www.haomeiwen.com/subject/fghtgktx.html