공부 기록/R
Error in file(file, "rt") : cannot open the connection. In file(file, "rt") : cannot open file '파일.csv': No such file or directory 해결
윤wander
2022. 2. 3. 14:35
728x90
728x90
0. 오류
Error in file(file, "rt") : cannot open the connection
In addition: Warning message:
In file(file, "rt") :
cannot open file '경로/파일.csv': No such file or directory
1. 해결
작업 폴더 경로 재설정
getwd() #현재 작업파일폴더
setwd("작업폴더경로") #작업 폴더 경로 변경
+ 경로
해당 파일이 위치한 폴더 경로는 복사해서 \(or 역 슬래쉬)를 /로 변경.
2. 해결
728x90
728x90