I have a file like this:
mylist.txt
234984 10354 41175 932711 426928
1693237 13462
Each line of this file has different number of elements, minimum of 1 element per line. I would like to read it into a list like this:
> print(head(mylist,2))
[[1]]
[1] 234984 10354 41175 932711 426928
[[2]]
[1] 1693237 13462