1

如何将帮助输出文件保存到 txt 文件中?

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

不起作用。

4

1 回答 1

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")
于 2012-12-26T02:18:18.787 回答