我是一个新的 R 用户,我正在尝试将我的文件 P506A-data-time-v3.csv 读入 R,但是它响应:
Error in file(file, "rt") : cannot open the connection
In addition: Warning message:
In file(file, "rt") : cannot open file '
P506A
-
data
-
time
.csv': Invalid argument
我将目录更改为计算机上保存文件的文件夹。
所以我查找了其他类似的问题,人们说要使用 choose.file,但我认为我输入正确。R给我的结果是:
> file.choose
function (new = FALSE)
.Internal(file.choose(new))
<bytecode: 0x07c80118>
<environment: namespace:base>
> P506A
Error: object 'P506A' not found
> -
+ data
Error in -data : invalid argument to unary operator
> -
+ timeP506A-data-time-v3<-read.table(file.choose(),header=T,sep="\t")
Error in -timeP506A - data - time - v3 <- read.table(file.choose(), header = T, :
object 'timeP506A' not found
In addition: Warning message:
In read.table(file.choose(), header = T, sep = "\t") :`enter code here`
incomplete final line found by readTableHeader on 'D:\Uni\114\Probelm Solving
所以这对我来说似乎是一个复杂的问题,所以任何关于如何让 R 读取我的文件的帮助都将非常感激。
谢谢