私は新しい 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 に私のファイルを読み取らせる方法を理解するための助けをいただければ幸いです。
ありがとう