3 回答

TA貢獻1868條經(jīng)驗 獲得超4個贊
如果三年后仍然有人在看這個問題,Hadley Wickham的閱讀器程序包read_file()將為您提供方便的功能。
install.packages("readr") # you only need to do this one time on your system
library(readr)
mystring <- read_file("path/to/myfile.txt")

TA貢獻2021條經(jīng)驗 獲得超8個贊
太糟糕了,無法再使用Sharon的解決方案。我已經(jīng)將Josh O'Brien的解決方案以及對asieira的修改添加到了.Rprofile文件中:
read.text = function(pathname)
{
return (paste(readLines(pathname), collapse="\n"))
}
并像這樣使用它:txt = read.text('path/to/my/file.txt')。我無法復(fù)制布金(10月28日)的發(fā)現(xiàn),并writeLines(txt)顯示的內(nèi)容file.txt。另外,write(txt, '/tmp/out')命令后diff /tmp/out path/to/my/file.txt報告無差異。
- 3 回答
- 0 關(guān)注
- 737 瀏覽
添加回答
舉報