我希望 R 打开在我的程序中创建的文件。我的代码使用以下代码将日志文件保存到名为 logFile 的变量中。
logFile <- sprintf("../output/%s_%s_output%sof%s.log", str1, str2, str3, str4);
我试图通过调用来访问shell函数
shell('%s',logFile);
但我得到一个错误说
In shell("%s", toFile) : '%s' execution failed with error code 127
如何让我的程序在完成写入后打开该文件?