I am new to R but have a problem that I can't seem to find anywhere online.
I want to compare 3 data frames and find out if they have the same exact data. If they do not, I want the output the tell me which rows has mismatched data. The closest I found was using two data sets, merging the two together, and then look for duplicate rows using the dupsBetweenGroups function but I could not find an answer for doing three simultaneous data frames..
Here is an example of the data I want compared
DataFrameA:
    Date    Time    pH
1   10/8    600     3.85
2   10/9    800     4.05
3   10/10   1300    3.95
DataFrameB:
     Date    Time    pH
1    10/8    600     3.85
2    10/12   900     4.05
3    10/10   1300    3.95
DataFrameC:
     Date    Time    pH
1    10/8    600     8.85
2    10/9    800     4.05
3    10/10   1300    3.95
If the output could return True or False depending on if a row for A, B, and C are the same, that would be perfect.
Any pointers on where to start or any good readings on this subject would be much appreciated
 
     
     
     
    