I wanted to compare values in 2 columns from 2 data frame
data_id1 <- c(1, 2, 3, 4, 5, 6)
And
data_id2 <- c(2, 4)
So I wanted new column that EXCLUDE data id2
New data should include only 1,3,5,6
I wanted to compare values in 2 columns from 2 data frame
data_id1 <- c(1, 2, 3, 4, 5, 6)
And
data_id2 <- c(2, 4)
So I wanted new column that EXCLUDE data id2
New data should include only 1,3,5,6