#drop columns by index df <- mydata[ -c(1,3:4) ] #drop columns by name df = subset(mydata, select = -c(x,z))