Skip to content
Prev 279009 / 398502 Next

efficient ways to dynamically grow a dataframe

I'd also suggest you read circle 2 of the "R inferno" (just google it)
which has some helpful tips on how to deal with these sorts of
problems.

Also, did you know that matrices can have column names and that
rbind() preserves them? E.g.,

m <- matrix(1:6, 3); colnames(m) <- letters[1:2]

print(m)

print(rbind(m, c(10, 11)))

Michael
On Thu, Dec 1, 2011 at 9:02 AM, jim holtman <jholtman at gmail.com> wrote: