Sorry if this question is idiotically simple but for some reason I can't figure it out.
I have a rather large dataset consisting of different epidemiological measures for all countries and a given year.
#Country #Date. # Measure
##UK. ##2013. ##X
##UK. ##2014. ##Y
##UK. ##2015. ##Z
....
I'd like to create subsets of this dataset for each country
I'd like to do it without having to specify the name of each country in my code.
e.g without doing this
head(filter(Dataset,country=="UK"d))