Here is how the list looks:
>>>print(pelist)
[[1]]
     Power Type I Error
[1,]     1     0.024339
[[2]]
     Power Type I Error
[1,]   0.8     0.038095
[[3]]
     Power Type I Error
[1,]     1     0.032804
I can do it this way, but it quickly becomes impractical as the size of the list grows:
>>>rbind(pelist[[1]], pelist[[2]], pelist[[3]])
     Power Type I Error
[1,]   1.0     0.024339
[2,]   0.8     0.038095
[3,]   1.0     0.032804
 
     
     
     
    