reporteRs の pptx ドキュメントに日付 (理想的には、レポートが実行された時点に基づいた現在の日付) を追加することに関する情報しか見つかりません。現在の日付を docx ドキュメントに追加する方法はありますか?
ありがとうございました!
試す
library( ReporteRs )
mydoc = docx( )
mydoc = addParagraph( mydoc, value = as.character(Sys.time()), stylename = "Normal" )
mydoc = addParagraph( mydoc, value = as.character(Sys.Date()), stylename = "Normal" )
writeDoc( mydoc, file = tf <- tempfile(fileext = ".docx"))
shell.exec(tf)
pptx はそのように動作します ...