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
I think the most straightforward way to do this is using capture.output, thus;
capture.output
capture.output(summary(mylist), file = "My New File.txt")
Easy!