-
I'd like to add a timestamp to the output from my Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
library(targets)
tar_script()
graph <- tar_visnetwork()
graph$x$nodes$label <- paste(graph$x$nodes$label, "\ncustom")
graph Created on 2021-08-12 by the reprex package (v2.0.0) |
Beta Was this translation helpful? Give feedback.
-
Issue solved with |
Beta Was this translation helpful? Give feedback.
Issue solved with
graph$x$main$text <- paste0("Last built: ", Sys.time())