Export a list into a CSV or TXT file in R

后端 未结 8 2010
遥遥无期
遥遥无期 2020-11-27 16:02

I\'m sorry to ask this question. I\'m very noob with R. I know there is a lot of threads which are related to the very same problem. I understood that we cannot export a tab

8条回答
  •  挽巷
    挽巷 (楼主)
    2020-11-27 16:32

    cat(capture.output(print(my.list), file="test.txt"))

    from R: Export and import a list to .txt file https://stackoverflow.com/users/1855677/42 is the only thing that worked for me. This outputs the list of lists as it is in the text file

提交回复
热议问题