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 information from the dados_1
table that is different from dados_2
. In this example, I want to show, as a result, only the 123 and 234 registrations (% with%). I tried through dados_1
and did not.