如何选择R中矩阵列中不唯一的行
我有一个大数据集,但我可以通过一个简单的例子进行解释。例如我有一个矩阵“x”
x<-matrix(c(3,3,3,4,3,3,5,5,5), nrow=3, byrow=T)
现在我需要第二行,其中“x”不是唯一的条目。第一行和第三行在列意义上是相等的。
提前致以问候和感谢,
Iftikhar Ahmad
I have a big data set but i can explain through a simple example. For example i have a matrix "x"
x<- matrix(c(3,3,3,4,3,3,5,5,5), nrow=3, byrow=T)
now i need second row in which "x" is not unique entries. First and third rows are equal in the sense of columns.
Regards and thanks in advance,
Iftikhar Ahmad
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您还可以利用这样一个事实:相等意味着标准差始终为 0。不幸的是,我们必须使用逻辑表达式(如下)或使用
as.logic
将这些 0 转换为逻辑值。更新
对 @joran 和我的解决方案进行了一些基准测试。我的丢失了:(
但是...
如果我们制作一个具有相似主题的完全矢量化版本,我们可以将两者都从水中吹出来
You could also take advantage of the fact that equality means the standard deviation will always be 0. unfortunately we have to convert these 0s to logical either with a logical expression (below) or with
as.logical
.Update
Did some benchmarking of @joran and my solutions. Mine lost :(
But...
If we do a fully vectorised version with a similar theme, we can blow both out of the water
这就是您正在寻找的内容吗:
它将选择其中包含多个唯一值的行。
Is this what you're looking for:
that will select rows with more than one unique value in them.