3
I have two tables:
MATRICULA_A <-c(123,234,345,456)
dados_1 <- data.frame(MATRICULA_A)
MATRICULA_A <-c(345,456,111,222,333,444)
dados_2 <- data.frame(MATRICULA_A)
I need to extract only table information dados_1 that are different from dados_2. In this example, I want only license plates 123 and 234 to appear as a result (dados_1). I tried through the anti_join and did not give.