How do I check if two objects, e.g. dataframes, are value equal in R?
By value equal, I mean the value of each row of each column of one dataframe is equal to the va
In addition, identical is still useful and supports the practical goal:
identical(a[, "x"], b[, "y"]) # TRUE