There are several questions & answers about this topic; however, none seem to directly answer the question or I cannot seem to locate it. I appreciate the help in advance!
I have two data frames
df1 <- write.csv("df1.csv")
df2 <- write.csv("df2.csv")
I want to make
df3 <- data.frame([df1$LikeColumn != df2$LikeColumn],)
My goal is to make a data frame (df3) that consists of all observations (rows) where the two "LikeColumn" values are not equal.
Notes: The headers are the same (df1$x header is the same as df2$x) There are the same number of columns There are not the same number of rows