Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直在尝试将 excel 文件导入 R....使用选择文件功能
mydata=read.csv(file.choose())
或者
myFile <- file.choose() myData <- read.table(myFile,header=TRUE)
但我得到同样的错误
Error in file.choose() : file choice cancelled
我正在使用 R 版本 2.15.3
我该如何解决?还是有其他方法可以做到这一点?
我可以得到你指出的错误
只能通过点击Cancel文件对话框。如果我选择一个文件并点击Open,它会按预期工作(R-3.0.1)。
此外,“Excel 文件”的定义不明确。你的意思是.csv从Excel保存的文件?一个.xls文件?一个.xlsx文件?其中每一个都是不同的格式,需要不同的函数来读取/导入它们。
.csv
.xls
.xlsx