Skip to content
Prev 171548 / 398503 Next

growing dataframes with rbind

I'm growing a large dataframe by composing new rows and then doing

row <- compute.new.row.somehow(...)
d <- rbind(d,row)

Is this a fast/preferred way?
Cheers,
Alexy