想象一下,我有以下数据集。
D1
M2_ID Year Make Gear Type Bodyshape Fuel Type Type Model Engine Size Doors_Average
784 2015 BMW M Cabriolet Petrol BMW 3-Series M320 3 2
D2
Year Make Segment Model Bodyshape Fuel Type Gear Type Doors_Average
2008 BMW 4 Medium BMW 320 Cabrio Diesel M 2
现在我要比较Cabriolet(在D1中)= Cabrio(在D2中) 同样,比较320(在d1.type中)= 320(在D2.Model中)
我尝试过使用
m <- merge(d1,d2 by = c("year", "Make")
我无法理解如何结合&#39; by.x()&#39;与&#39; by = c()&#39;。第二:如上所述,如何比较文本的部分内容 编辑: 添加了两组。解释得更好。感谢您指出如何更好地编辑问题。