I am trying to find the difference between 2 tables based off one column but I am interested in knowing what is written in the whole row.
Table 1
Table 2
Currently I have used Setdiff(Table1$name, Table2$name) and it is returning "Susan" and "Frank". I am wondering if there is a way to return the whole row e.g. to show the other columns? Hence even though I am basing off the name, can the whole row with the name Susan show up? Thanks