Situation: I want to load a .cci file in R like this:
data <- read.table("data.cci", header = T, dec = ".")
I also tried read.csv/read.csv2 - but I always get this error:
No such file or directory
Error in file(file, "rt") : cannot open the connection
Thanks for considering this question.
P.S. the WD is fine
I guess the problem is your file and working directory is in different folder. You can get wd with
and than write the correct location like. (pay attention to " / " not " \ " )