--- Milton Cezar Ribeiro <[EMAIL PROTECTED]> wrote: > How can I delete rows from a data.frame where almost > one collumns is.na()? > > Kind regards, > > miltinho
Can you explain a bit more and provide as simple example of the problem? It is not clear what importance the column with NA's has. If you simply wish to delete a row in a data.frame To delete row 6 in a data.frame: data1 <- data1[-6,] Have a look at Part 6 of the Introduction to R for more information ______________________________________________ [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 and provide commented, minimal, self-contained, reproducible code.
