You could use the [
operator and do
df1[!grepl("I60", Code),]
(Suggested clarification from @Hugh:) Another way would be
df1[!grepl("I60",df1$Code),]
Here is the reference manual on array indexing, which is done with [
:
http://cran.r-project.org/doc/manuals/R-intro.html#Array-indexing