Hi @ply,
You may want to try using the {waldo} package and the compare() function. You can compared two data frames after reading the CSVs into R.
library(waldo)
x <- read.csv(...)
y <- read.csv(...)
compare(x, y)
If you only want to compare a subset of columns, you can subset those columns and then use compare() on the subsetted data frames.