I have an issue with some data analysis I am doing. I have a dataset covering cricket matches, and therefore have a dataset with the variable "Overs". I wish to elimate the games which have been played with less than 35 overs by both teams. An example of mty data :
Match_ID Country Overs
1 England 50
1 Australia 50
2 Pakistan 50
2 India 32
3 England 30
3 Pakistan 30
In this scenario, I would only like to remove Match ID 3, as both teams have played less than 35 overs, but not Match ID 2 as only one of the teams have played less than 35 overs. This is how I would like my data to look: Any tips?
Match_ID Country Overs
1 England 50
1 Australia 50
2 Pakistan 50
2 India 32