I have a a list called mylist, in it there are 108 rows apart from the headers. I tried converting it to a dataframe and it successfully worked using the following command
df <- data.frame(matrix(unlist(mylist), nrow=108, byrow=F))
However, the headers for each matrix in my list (mylist) have not been defined in my new dataframe df.
names(df)
is
"X1" "X2" "X3" "X4" "X5" "X6" "X7" "X8" "X9" "X10" "X11" "X12" "X13" "X14" "X15" "X16" "X17" "X18" "X19" "X20" "X21" "X22" "X23" "X24" "X25" "X26" "X27" "X28" "X29" "X30" "X31" "X32" "X33" "X34" "X35" "X36"
mylist looks something like so
head(mylist[[1]])
      RAmi         MDaf
1   11.806405   -3.588567
2   7.711101    -9.721415
3   2.315104    11.217575
4   20.372999   -2.267938
5   22.279704   -1.668082
6   13.57909    20.67355
head(mylist[[2]])
          Tomi         Rahaf
    1     325          -3
    2      71          -9
    3      2           11
    4     20.999      -22
    5      22         -16
    6     139         2065
this is only for head(mylist[[i]]) when i=1 but there exist similar things for i=1,2,3, ... , 18 
What I want is to put them all in one dataframe adjacently. It worked fine but I am having a problem with the heading
I hope one may help me with understanding how to do so. Thank you
