如何比较R中的两个csv文件



我有两个csv文件,A和B。

我想找出A和B之间不同列的编号。

例如,假设A包含7、9、0、0、2,B包含7、8、6、0.2(因此A和B各有五列)。然后,不同列的数目是2,第二列和第三列。

如何在R上实现此功能?

您可以尝试

indx <- colSums(A!=B) 
which(!!indx) #gets the index of different columns
# Col2 Col3 
# 2    3 
which(!indx) #gets the index of similar columns
#Col1 Col4 Col5 
# 1    4    5 
length(which(!indx) )
#[1] 3

数据

A <- data.frame(Col1= c(7,2), Col2= c(9,4), Col3= c(0,5), 
      Col4= c(0,3), Col5=c(2,3))
B <- data.frame(Col1= c(7,2), Col2= c(8,4), Col3= c(6,5), 
     Col4= c(0,3), Col5=c(2,3))

相关内容

  • 没有找到相关文章

最新更新