> write.table(myResult, "Result.txt", append=T, row.names=TRUE) Error in file(file, ifelse(append, "a", "w")) : cannot open the connection In addition: Warning message: In file(file, ifelse(append, "a", "w")) : cannot open file 'Result.txt': Permission denied、
时间: 2023-12-05 21:06:36 浏览: 202
mysql错误can't open file
这个错误是因为你没有权限在当前工作目录下创建或修改“Result.txt”文件。你可以尝试更改文件路径或打开一个具有写入权限的文件。如果你使用的是Windows系统,可能需要以管理员身份运行R或将文件保存到具有写入权限的文件夹中。如果你使用的是Linux或Mac OS,可能需要使用sudo命令或更改文件夹权限。例如,你可以使用以下命令更改文件夹权限:
```
chmod 777 /path/to/folder
```
这将授予该文件夹的所有用户读、写和执行权限。请注意,这可能会降低文件夹的安全性,因此请谨慎操作。
阅读全文