PromptAsTime.Rd
This changes Rstudio's prompt at the bottom to reflect time. Particularly useful for timing functions when executing long scripts.
PromptAsTime(On)
On | set On to TRUE (Add time to prompter) or FALSE (use default prompter). |
---|
The Prompter in Rstudio will now include the time.
# NOT RUN { PromptAsTime(TRUE) x <- 100 Sys.sleep(3) #' x*x print(x) # }