I have these object (I have thousands of [[i]], this is just an example):
v
[[1]] 1 2 3 4
[[2]] 5 6 7 8
I want to create a new vector (column) like this:
vector
1
2
3
4
5
6
7
8
,using a for loop. I tried this but it doesn't work:
vector=c()
for(i in 1:2){
vector[i]=v[[i]]
}