Given a list x:
$a
[1] 1 2 3 4 5 6
$b
[1] 10 20 30 40 50
$c
[1] 100 200 300 400 500
I want to construct a data frame that contains one column containing the following values:
1 10 100
Namely the elements of the column come from the first element in x$a, x$b and x$c.
I wonder what is the most efficient way to construct this column?