R setwd()

1 개요[ | ]

R setwd()
  • "Set Working Directory"
  • 작업디렉토리를 설정하는 R 함수
getwd()
## [1] "/home"
setwd("/")
getwd()
## [1] "/"
setwd("/tmp")
getwd()
## [1] "/tmp"

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}