The goal of stopwatch is to make executing long running code a better experience. Long running code can seriously hurt productivity, because your concentration is often brokne when you are waiting for an expression to finish evaluating. stopwatch will give you an idea of how long
stopwatch is not on CRAN. You can install stopwatch from GitHub with:
remotes::install_github('JamesM131/stopwatch')
Loading the stopwatch package will automatically override the default
variable assignment. The new assignment operator will start a timer in
the console that will count upwards while code is executing, and will
run beepr::beep()
when the execution has finished if it took longer
than 3 seconds.
library(stopwatch)
A stopwatch timer can also be created directly, which is useful if the long running code is not being assigned to a variable. This is done like so:
start_timer()
stop_timer()
rm('<-')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.