为什么 read.delim() 无法打开文本文件?

Why read.delim() cannot open text files?

我已将 Excel 文件保存为制表符分隔的文件,但当我尝试打开它时出现以下错误:

a=read.delim("GBM tab")
Error in file(file, "rt") : cannot open the connection
In addition: Warning message:
In file(file, "rt") : cannot open file 'GBM tab': No such file or directory

虽然我的工作目录中有一个名为 GBM tab 的文本文件。 即使我按 Tab 键,也找不到匹配项。有什么问题?

一个更简单的选择是使用 file.choose() 然后直接指向目录中的文件

a <- read.delim(file.choose())

在OP的代码中,文件末尾可能有.txt.csv需要指定

a <- read.delim("GBM tab.txt")