在R脚本语言中,如何编写文本行,例如以下两行Hello World 到名为“output.txt”的文件? 最佳答案 fileConn<-file("output.txt") writeLines(c("Hello","World"), fileConn) close(fileConn)