The data that I am trying to work with is in a data.frame
that has the following format:
Title Year
Something 2006
something2 2007
Something 2008
Something 2009
I'm specifically interested in being able to subset the data so that their chronological order is fewer then 2008. For example, this would give:
Title Year
Something 2009
Is it acceptable to use something like this:
df[!(df$Year <= 2008), ]