i have a issue related to list()
i need to use 3 for loops to process data just like this
for(i in 1:10){ #it is number of data group
for(j in 1:5){ #it is number of sub-data group
for(k in 1:2){ #it is number of sub-data group
1.data process<br>
2.just want to make a list within information of i, j ,k
mylist[i][j][k]
#i tested some methods like this, but it does not work well<br>
}
}
}
Could you give me any ideas or solutions for this issue? Thank you