(This article was first published on Yu-Sung Su's Blog, and kindly contributed to R-bloggers)
In R, the way to delete a component in a list object is different from matrix and vector objects. For a vector, to delete an element:vec <- c(1, 2, 3)vec <- vec[-3]For a matrix, to delete a row or a column:mat <- matrix(c(1,2,3,4), 2, 2)mat2 <- mat[-1,] # delete a rowmat3 <- mat[,-1] # delete a columnFor a list, to delete a component:lis <- vector("list", 3)lis[[3]] <- NULLJust assign a NULL
To leave a comment for the author, please follow the link and comment on his blog: Yu-Sung Su's Blog.
R-bloggers.com offers daily e-mail updates about R news and tutorials on topics such as: visualization (ggplot2, Boxplots, maps, animation), programming (RStudio, Sweave, LaTeX, SQL, Eclipse, git, hadoop, Web Scraping) statistics (regression, PCA, time series, trading) and more...

Zero Inflated Models and Generalized Linear Mixed Models with R.
Zuur, Saveliev, Ieno (2012).