Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在用 R 编写一些脚本,我们的标准是使用 lintr 来标准化代码。请建议我如何将 lint 函数的输出导出到 txt 文件中。提前致谢!
另一种选择是将结果转换为数据帧,然后以 csv 格式保存。
result <- lintr::lint("my_script.R") df <- as.data.frame(result) write.csv(df, file="output_file_name.csv")
您可以使用以下capture.output()功能:
capture.output()
capture.output(lint("myscript.R"), file="lint_output.txt)