I would like to delete rows of data in a dataframe if the values in a column (in this case a participant identification number) fall within a certain range e.g. 61701 to 61721 & 61901 to 61929.
I know how to subset data based on a threshold e.g.:
datasetnew = dataset[dataset$X<=100, ]
But not sure how to subset and remove the rows using a range of numbers. Not sure subset is what I need.