2
I created two data.frames
: the first data.frame
that comes from an original basis and the second data.frame
which originates from the first, but with the application of a filter.
Example:
print(DADOS)
CODE A B C D E COUNT
001 0 0 1 1 0 2
002 1 1 1 1 1 5
003 0 1 0 1 0 2
004 1 1 1 0 0 3
DADOS_FILTRADOS = DADOS %>%
filter(COUNT > 3)
print(DADOS_FILTRADOS)
CODE A B C D E COUNT
002 1 1 1 1 1 5
What I would like to do is find the difference between these two data.frames, ie make the table DADOS
except the table DADOS_FILTRADOS
. What could be done?
See if this reply can help.
– neves
@user108927 I will check.
– Izak Mandrak