3
我想放一些表達式寫東西到一個文件直接插入到Rscript.exe
呼叫(沒有在Rscript [options] [-e expression] file [args]
指定file
,因此沒有被運行的明確[R腳本)。執行表達式Rscript.exe
除了沒有創建所需文件這一事實,一切似乎都奏效。我究竟做錯了什麼?
# Works:
shell("Rscript -e print(Sys.time())")
# Works:
write(Sys.time(), file='c:/temp/systime.txt')
# No error, but no file created:
shell("Rscript -e write(Sys.time(), file='c:/temp/systime.txt')")
太棒了!非常感謝那些信息! – Rappster