I have a dataframe:
id | country |
---|---|
1 | usa |
1 | mex |
1 | de |
2 | br |
2 | mex |
3 | usa |
I want to remove all Ids that country == usa
Desired output:
id | country |
---|---|
2 | br |
2 | mex |
I have a dataframe:
id | country |
---|---|
1 | usa |
1 | mex |
1 | de |
2 | br |
2 | mex |
3 | usa |
I want to remove all Ids that country == usa
Desired output:
id | country |
---|---|
2 | br |
2 | mex |