This function is used by summary.prodlim to deal with results.

List2Matrix(list, depth, names)

Arguments

list

A named list which contains nested lists

depth

The depth in the list hierarchy until an rbindable object

names

Names for the list variables

Value

Matrix or data.frame.

Details

Reduction is done with rbind.

Author

Thomas A. Gerds <tag@biostat.ku.dk>

Examples


x=list(a=data.frame(u=1,b=2,c=3),b=data.frame(u=3,b=4,c=6))
List2Matrix(x,depth=1,"X")
#>   X u b c
#> 1 a 1 2 3
#> 2 b 3 4 6