Gottfried Gruber wrote:
Hi,i want to delete multiple rows from a matrix. I know how to delete one by x=x[,-3] # deleting 3. columnIs there a quick method how to delete e.g. the 3., 5., 7. and 8. column at once?TiA gg
x[, -c(3, 5, 7, 8)] --sundar ______________________________________________ [email protected] mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html
