We can remove element from list using assignment of NULL value :
someList<-list(1,2,3)
someList[2]<-NULL
the same is possible for columns of data frame as it is list object:
someDf<-data.frame(a=1:4,b=2:5)
someDf$a<-NULL
is it possible to do the same for rows of data frame or matrix ? (I'm looking for some fast method for elimination of rows, I can't vectorize due too nature of my algorithm, which significiant part consist of rows deletation, I can't copy data due too there size)