Here is a Quick Way to Know Current Working Directory in R
If R is not finding the file you are trying to read then it may be looking in the wrong folder/directory. If you are using the graphical interface you can change the working directory from the file menu.
List of Files and Current Working Directory
Related: JOBS in R Language
If you are not sure what files are in the current working directory you can use the dir() command to list the files and the getwd() command to determine the current working directory:
If you are not sure what files are in the current working directory you can use the dir() command to list the files and the getwd() command to determine the current working directory:
> dir()
[1] "fixedWidth.dat" "simple.csv" "trees91.csv" "trees91.wk1"[5] "w1.dat"
> getwd()
[1] "/home/black/write/class/stat/stat383-13F/dat"
Comments
Post a Comment
Thanks for your message. We will get back you.