R Function to identify non-matching rows
问题 I am trying to compare 2 data.frames, "V1" represents my CRM, "V2" represents Leads that I would like to send out. 'V1 has roughly 8k elements' 'V2 has roughly 25k elements' I need to compare every row in V2 to every row in V1, discard every instance where a V2 element exists in V1. I would then like to return only the elements that do not appear either exactly or loosely in V1 into the Leads column. The goal is to send out a lead(V2) that does not exist in CRM(V1). I've made some good