Re: [R] Reducing dimension of a list object

2011-04-19 Thread Ivan Calandra
Hi, Would unlist() do what you want? unlist(lis3) [1] 4 1 8 HTH, Ivan Le 4/19/2011 17:32, Bogaso Christofer a écrit : Hi all, I generally use the Reduce() function to reduce the dimension of list object. However in my current session I have few objects which are actually list of list of list..

[R] Reducing dimension of a list object

2011-04-19 Thread Bogaso Christofer
Hi all, I generally use the Reduce() function to reduce the dimension of list object. However in my current session I have few objects which are actually list of list of list..(say n step). If I reduce their dimension then I have call Reduce() function many times. Therefore my question is, is there