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 プログラミング言語を使用しており、一部のクライアントに配信するプログラムがあります。
現在、関数sink()を使用してプログラムへの入力を保存し、時間のパフォーマンスを測定していますが、エラーが発生した場合に備えて、それをファイルに保存したいと考えています。誰かがこれを行うためのきちんとした方法を知っていますか?
sink()
御時間ありがとうございます。
sink()マニュアルを見てください、messageオプションがあります:
message
## capture all the output to a file. zz <- file("all.Rout", open = "wt") sink(zz) sink(zz, type = "message") try(log("a")) ## back to the console sink(type = "message") sink() try(log("a"))