#RStats I share a lot of plots with collaborators. Sometimes they come to me months later asking if I can make this plot but just tweak a few things - but by then I've forgotten which script generates the plot and have to dig through repos. Any way around this?
3
1
2
You _could_ annotate each plot with the script name, date, git sha1, ...
From a script used by cron where the date is stored:
mtext(text=paste("Prepared on",
format(Sys.time(), "%d %B %Y at %H:%M")),
adj=0.99, cex=0.75, side=3, outer=TRUE,
las=1, line=0.5)
#rstats
May 3, 2021 · 3:48 PM UTC
2
2
8


