Display a time clock in the R command line
问题 I wonder if there is a way to display the current time in the R command line, like in MS DOS, we can use Prompt $T $P$G to include the time clock in every prompt line. Something like options(prompt=paste(format(Sys.time(), "%H:%M:%S"),"> ")) will do it, but then it is fixed at the time it was set. I'm not sure how to make it update automatically. 回答1: Chase points the right way as options("prompt"=...) can be used for this. But his solutions adds a constant time expression which is not what