2012-12-26 88 views
1

如何將幫助輸出文件保存到txt文件中?將幫助輸出保存到文本文件

write(help(reshape),file="/home/debian/test") 

不起作用。

+0

也許這樣的事情會有所幫助:'CP /usr/lib64/R/library/stats/html/reshape.html /家/於Debian /測試' –

回答

4

出土並從utils:::print.help_files_with_topic膽量適應:

file <- help("reshape") 
pkgname <- basename(dirname(dirname(file))) 
temp <- tools::Rd2txt(utils:::.getHelpFile(file), out = tempfile("Rtxt"), 
        package = pkgname) 
file.copy(temp,"~/test.txt")