On Wednesday 14 July 2010 09:06:01 pm Addi Wei wrote: > I combined 2 data frames together using rbind... How do I unbind the data > at a specific row to create 2 separate data frames? >
if you have a column with an identifier: try split() Example: split(iris, iris$Species) -- ---- Friedrich Schuster Dompfaffenweg 6 69123 Heidelberg ______________________________________________ R-help@r-project.org 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.