当我尝试在RStudio中运行我的csv文件时,它说
"cannot open file 'bit121GBP.csv': No such file or directory Error in file(file, "rt") : cannot open the connection"
mydata <- read.csv("bit121GBP.csv", header =TRUE)
我应该将它下载到其他地方,因为现在它在我的桌面上,或者我应该更改代码?
答案 0 :(得分:2)
您可以通过三种方式阅读文件。
例如,你必须在桌面下载(mac的例子),然后
首先:提供完整路径
mydata <- read.csv("/Users/test/Desktop/bit121GBP.csv", header =TRUE)
第二:提供相对路径
mydata <- read.csv("~/Desktop/bit121GBP.csv", header =TRUE)
第三:设置路径
setwd("~/Desktop")
mydata <- read.csv("bit121GBP.csv", header =TRUE)