在R中加载cci文件

时间:2018-03-06 21:54:00

标签: r cci

情况:我想在R中加载.cci文件,如下所示:

data <- read.table("data.cci", header = T, dec = ".")

我也试过read.csv / read.csv2 - 但我总是得到这个错误:

No such file or directory
Error in file(file, "rt") : cannot open the connection

感谢您考虑这个问题。

P.S。 WD很好

1 个答案:

答案 0 :(得分:1)

我猜问题是你的文件和工作目录在不同的文件夹中。 你可以用

获得wd
getwd()

然后写出正确的位置。 (注意“/”而不是“\”)

data <- read.table("C:/files/data.cci", header = T, dec = ".")