是否可以使用 R 打印文件的内容(支持 r、tex、txt、rnw 等扩展名)?
可复制文件:
sink('myFile')
cat('\nThis is some text')
cat('\n')
cat('\nEnd of file')
sink()
现在我正在寻找 R 中的一个函数,它将 R 的内容打印为...
>PRINT_FILE_CONTENT('myFile')
This is some text
End of file
>
我希望我很清楚。我将不胜感激任何帮助?