Skip to content
Prev 30629 / 398506 Next

making a dataframe out of lapply() result

You could try:

s <- lapply(tester.L, function(x) x <- x[1,] )
do.call("rbind", s)

-roger
_______________________________
UCLA Department of Statistics
http://www.stat.ucla.edu/~rpeng
On Tue, 15 Apr 2003, Remko Duursma wrote: