모든 콘솔 텍스트를 파일 로 리디렉션하고 싶습니다 . 내가 시도한 것은 다음과 같습니다.
> sink("test.log", type=c("output", "message"))
> a <- "a"
> a
> How come I do not see this in log
Error: unexpected symbol in "How come"
test.log에서 얻은 내용은 다음과 같습니다.
[1] "a"
test.log에서 원하는 것은 다음과 같습니다.
> a <- "a"
> a
[1] "a"
> How come I do not see this in log
Error: unexpected symbol in "How come"
내가 도대체 뭘 잘못하고있는 겁니까? 감사!